🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

tmobile-call-log

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tmobile-call-log

Creates plots from T-Mobile personal call logs.

0.1.0
PyPI
Maintainers
1

tmobile_call_log

Creates bar charts and pie charts from call logs. Processes CSV files downloaded directly from T-Mobile's website (customer interface). Works as of 2017.

Installation

To install tmobile_call_log, use pip (or similar):

pip install tmobile-call-log

Documentation

Create log object to compile all data

  • data_dir is the directory where all the call logs (downloaded csv files) are located.
  • ignore_number is any other number that is also yours and appears in the log (e.g., Google voice number).
log = CallActivity(data_dir='./data/', ignore_number='(123) 555-1234')

Plot bar charts

Plots bar charts for call time and call quantity using the top n most frequent phone numbers.

log.plot_bar(n=15)

Plot pie charts

Plots pie charts for call time and call quantity using the top n most frequent phone numbers.

log.plot_pie(n=9)

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts