Metadata-Version: 2.1
Name: econ-watcher-reader
Version: 0.0.1
Summary: Web scraper to get economy watcher data from Cabinet Office of Japan.
Home-page: https://github.com/si4141/scraper_for_economy_watcher
Author: Yuta Sugiura
Author-email: ced4141@me.com
License: MIT License
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: xlrd
Requires-Dist: requests
Requires-Dist: bs4

Copyright (c) 2018 YutaSugiura

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

Description: # DataReader for Economy Watcher Survey
        
        Data reader for Economy Watcher Survey provided by Cabinet Office of Japan.
        Data returned as pandas.DataFrame.
        It can get only data provided [here](http://www5.cao.go.jp/keizai3/watcher-e/index-e.html) now, but is under developing to expand available data range.
        
        # Dependency
        
        Developed in python 3.7.
        
        # Install
        
        
        # Usage
        
        ```python
        from econ_watcher_reader import EconomyWatcherReader
        reader = EconomyWatcherReader()
        data = reader.get_data(kind_='current', start=datetime.datetime(2018, 1, 1), end=datetime.datetime(2018, 5, 1))
        ```
        
        If you want data about future,
        
        ```python
        reader = EconomyWatcherReader()
        data = reader.get_data(kind_='future', start=datetime.datetime(2018, 1, 1), end=datetime.datetime(2018, 5, 1))
        ```
        
        # Licence
        
        MIT License
        
        # Authors
        
        Yuta Sugiura
        
        # References
        
        Data Sorce
        
        - [Cabinet Office](http://www.cao.go.jp)
        - [Economy Watcher Survey](http://www5.cao.go.jp/keizai3/watcher/watcher_menu.html)
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Description-Content-Type: text/markdown
