Metadata-Version: 2.1
Name: ssmc
Version: 1.3.0
Summary: Sakura Secure Mobile Connect API tool
Home-page: https://github.com/hitsumabushi/python-sakura-secure-mobile-connect
Author: hitsumabushi
Author-email: hitsumabushi.org@gmail.com
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/hitsumabushi/python-sakura-secure-mobile-connect/issues
Project-URL: Source, https://github.com/hitsumabushi/python-sakura-secure-mobile-connect
Description: # Python tool for SAKURA Secure Mobile Connect
        
        ## What is this
        
        このツールは、 [さくらのクラウド](https://cloud.sakura.ad.jp/) のAPIを利用して、
        [セキュアモバイルコネクト](https://www.sakura.ad.jp/services/sim/) のSIMを管理するためのPythonツールです。
        
        SIMの登録、有効化、無効化、登録解除などができます。
        
        ## How To use
        
        * [ドキュメント](https://hitsumabushi.github.io/python-sakura-secure-mobile-connect/index.html)
        * [PyPI](https://pypi.org/project/ssmc/)
        
        ### Install
        
        ```
        $ pip install ssmc
        ```
        
        ### Usage
        
        ```python
        import ssmc
        
        api = ssmc.APIClient(token=_token_, secret=_secret_, zone="is1b")
        # List MGWs
        mgws, _ = api.list_mgws()
        print(mgws)
        ```
        
        # 開発者向けメモ
        
        ## テストについて
        
        さくらのクラウドのテスト用のゾーン(tk1v) がセキュアモバイルコネクトに対応していないようなので、
        ひとまず、プライベートリポジトリで実際のICCIDなどを使ってテストしています。
        
        ## ドキュメント
        
        ```
        $ pip install -r requirements-dev.txt
        $ cd docs
        $ make html
        ```
        
Keywords: SAKURA Cloud SIM SakuraSecureMobileConnect SSMC
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
Provides-Extra: dev
