Metadata-Version: 2.0
Name: ssmc
Version: 1.2.4
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-Content-Type: text/markdown
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
Requires-Dist: certifi (==2018.1.18)
Requires-Dist: chardet (==3.0.4)
Requires-Dist: idna (==2.6)
Requires-Dist: requests (==2.18.4)
Requires-Dist: urllib3 (==1.22)
Provides-Extra: dev
Requires-Dist: sphinx; extra == 'dev'
Requires-Dist: check-manifest; extra == 'dev'

# 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
```


