Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikukyugamer/amount-of-your-dmm-mobile-traffic
DMM モバイル の「データ通信量」を取得してCSVで出力する
https://github.com/nikukyugamer/amount-of-your-dmm-mobile-traffic
dmm mvno puppeteer rakuten scraping
Last synced: 14 days ago
JSON representation
DMM モバイル の「データ通信量」を取得してCSVで出力する
- Host: GitHub
- URL: https://github.com/nikukyugamer/amount-of-your-dmm-mobile-traffic
- Owner: nikukyugamer
- License: mit
- Created: 2020-01-05T09:49:22.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-01-13T19:15:27.000Z (15 days ago)
- Last Synced: 2025-01-13T21:38:39.521Z (15 days ago)
- Topics: dmm, mvno, puppeteer, rakuten, scraping
- Language: HTML
- Homepage: https://www.npmjs.com/package/amount-dmm-mobile
- Size: 4.78 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 14
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
README
[![NPM](https://nodei.co/npm/amount-dmm-mobile.png)](https://nodei.co/npm/amount-dmm-mobile/)
[![CircleCI](https://circleci.com/gh/nikukyugamer/amount-of-your-dmm-mobile-traffic.svg?style=svg)](https://circleci.com/gh/nikukyugamer/amount-of-your-dmm-mobile-traffic) ![GitHub Actions Status](https://github.com/nikukyugamer/amount-of-your-dmm-mobile-traffic/workflows/Amount%20of%20Your%20DMM%20mobile%20Traffic/badge.svg)
# DMMモバイルのマイページ内の「データ通信量照会」のデータを取得する
## 実行方法
#### インストール
```bash
$ npm install amount-dmm-mobile
```または
```bash
$ yarn add amount-dmm-mobile
```#### 準備
コマンドを実行するディレクトリに `.env` ファイルを作り、そのファイルの中に DMM の ID(メールアドレス)とパスワードを以下のように設定して下さい。```
[email protected]
DMM_PASSWORD=your_password
```あるいは、以下のようにコマンド実行時に直接環境変数を設定することもできます。アカウント情報が丸見えになってしまうことにはご注意ください。
```sh
$ [email protected] DMM_PASSWORD=hogehoge npx amount_dmm_mobile
```#### 使い方
以下のコマンドを実行すると、実行したディレクトリに `amount_of_dmm_mobile.csv` という料金データが記録された CSV ファイル が生成されます。```bash
$ npx amount_dmm_mobile
```##### 実行時オプション
~~実行時オプションとして、`--number 2` のようにすると、2つ目の契約の番号のデータが得られます。デフォルトでは `--number 1` です。~~セレクタの変更に伴い、以下の `--number` オプションはいったん無効となっています。
```bash
$ amount_dmm_mobile --number 2
```![複数電話番号選択](docs/dmm_mobile_telephone_numbers.png "複数電話番号選択")
#### ヘルプの内容
```bash
$ amount_dmm_mobile --help
Usage: amount_dmm_mobile [options]Options:
-n, --number A Nth number which indicates the Nth telephone number
in "My Page" (default: "1")
-h, --help output usage information
```## 概要
- 実行時間は、約90秒です
- あまりに短い間隔で実行すると、BAN的なことをされる可能性があるかもしれません![データ通信量照会_01](docs/dmm_mobile_data_traffic_info_table_01.png "データ通信量照会_01")
![データ通信量照会_02](docs/dmm_mobile_data_traffic_info_table_02.png "データ通信量照会_02")
## 出力されるCSV
- [__tests__/dmm_mobile_data_traffic_result.csv](__tests__/dmm_mobile_data_traffic_result.csv)![出力されるCSV](docs/dmm_mobile_data_traffic_csv.png "出力されるCSV")
# 開発方法
- コードを書く
- `$ npm link` を実行してインストールする
- `$ npx amount_dmm_mobile` を実行して動作を確かめる
- 不要になったら `$ npm unlink` で削除する# エラーメッセージとその対応策
- `UnhandledPromiseRejectionWarning: TypeError: text is not iterable at Keyboard.type`
- ユーザ名とパスワード(環境変数)は設定されていますか?# LICENSE
- [MIT LICENSE](/LICENSE)