手機號碼歸屬地SQLite資料庫
Github專案地址:github.com/lalala223/p…
安裝
pip install phone-db
複製程式碼
使用:
查詢資料庫中手機號段總條數
>>> from phone_db import Session, Phone, Region
>>> session = Session()
>>> session.query(Phone).count()
415284
複製程式碼
查詢北京市聯通手機號段總條數
>>> city = session.query(Region).filter_by(zip_code='100000').first()
>>> if city:
... city.phones.filter_by(type=2).count()
...
6355
複製程式碼
查詢指定手機號段歸屬地資訊
>>> num = session.query(Phone).filter_by(number=1761166).first()
>>> if num:
... num.detail()
...
(1761166, '聯通', {'province': '北京', 'city': '北京', 'zip_code': '100000', 'area_code': '010'})
複製程式碼
資料表結構
phones表
id INTEGER NOT NULL,
number INTEGER,
type INTEGER,
region_id INTEGER,
PRIMARY KEY (id),
FOREIGN KEY(region_id) REFERENCES regions (id)
複製程式碼
regions表
id INTEGER NOT NULL,
province VARCHAR,
city VARCHAR,
zip_code VARCHAR,
area_code VARCHAR,
PRIMARY KEY (id)
複製程式碼
phones表type欄位卡型別定義
* 1 移動
* 2 聯通
* 3 電信
* 4 電信虛擬運營商
* 5 聯通虛擬運營商
* 6 移動虛擬運營商
複製程式碼
資料視覺化
下載phone.db檔案,使用sqlitebrowser檢視
記錄條數
415284 (updated:2019年2月)