Metadata-Version: 2.4
Name: clippercard
Version: 202606.2.1
Summary: Unofficial Python API for Clipper Card (transportation pass used in the SF Bay Area)
Author: Your friendly neighborhood transit rider-hackers
Author-email: Your friendly neighborhood transit rider-hackers <noreply@github.com>
License-Expression: MIT
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Programming Language :: Python :: 3.15
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: beautifulsoup4>=4.9.0
Requires-Dist: rich>=13.0.0
Requires-Dist: requests>=2.25.0,<3.0
Requires-Dist: urllib3>=1.26.0
Requires-Python: >=3.11
Project-URL: Homepage, https://github.com/clippercard/clippercard-python
Project-URL: Repository, https://github.com/clippercard/clippercard-python
Description-Content-Type: text/markdown

![logo](logo.png)

`clippercard` is an unofficial python client for clippercard.com, written in Python.

-----

# Why

Not only is the [clippercard web site](https://www.clippercard.com) a inaccessible by API, its behind-the-scene's HTML structure and HTTP protocol is not semantically structured. This library aims to provide an unofficial but sensible interface to the official web service.

# Project Goal

I enjoy the actual user experience of ClipperCard on buses and trains. My complaints about the service are purely isolated to its web interface. I saw a problem, and I solved it for myself, that's all.

As an advocate for data accessibility, I believe our dollars, our votes, our voices and our actions can nudge institutions in the direction we'd like them to go. At Bay Area's [Metropolitan Transportation Commission](http://www.mtc.ca.gov/about_mtc/staff_contacts.htm), I am sure there are a lot of great people doing good work to the best of their ability, and within the context of prioritization, organizational structure and resources available to them.

I encourage the staff of MTA reading this project to see this effort as a nudge for a public and official API. The moment they put up an API that obsoletes this project, I will happily direct followers to the official solution. If you'd like them to increase attention to data accessibility, you can send them an email at info@mtc.ca.gov and tell them I sent you.

# Features

- Profile Data
- Multiple cards' data
- For each card, multiple products and balances

I don't have access to all products loadable on the ClipperCard, so transit product variant support is limited to what I personally use for now. If you'd like me to add support for your product, send me the page source from your account home page: https://www.clippercard.com/ClipperWeb/account.html

# Security and Privacy

It's important to point out that:

- This project does not collect your personal information or clippercard.com login credentials.
- This project is not a hosted service, your data is not stored or sent to any 3rd party service.

For now, this project is targeted at other software developers, who are capable of assessing my source code for security implications.


# Installation

Install as a user-wide CLI tool via [uv](https://docs.astral.sh/uv/):

```sh
$ uv tool install clippercard
```

`clippercard` requires Python 3.11 or newer.

This makes the `clippercard` command available globally without activating a virtual environment.

Usage
-----

```python
import clippercard
session = clippercard.Session('username', 'password')
print(session.profile_info)
for c in session.cards:
    print(c)
```

You also get a super convenient command line binary ``clippercard``::

```sh
$ clippercard -h # see usage information
$ clippercard summary
+------------------------------------------------------+
|            name | Golden Gate Rider                  |
|           email | goldengate-rider@example.com       |
| mailing_address | 1 Main St, San Francisco, CA 94105 |
|           phone | 415-555-5555                       |
|       alt_phone | 650-555-5555                       |
| primary_payment | Mastercard ending in 1234          |
|  backup_payment | Amex ending in 9876                |
+------------------------------------------------------+
+---------------------------------------------------------------------------------------+
| # | Name                      | Serial     | Type  | Status | Products                |
|---+---------------------------+------------+-------+--------+-------------------------|
| 1 | Primary, card #2021234134 | 2021234134 | ADULT | Active | Cash Value: $195.00     |
|   |                           |            |       |        | Current Passes: None    |
|   |                           |            |       |        | Pending Passes: None    |
|   |                           |            |       |        | Reload: $255 - Autoload |
| 2 | Backup, card #2021234156  | 2021234156 | ADULT | Active | Cash Value: $200.00     |
|   |                           |            |       |        | Current Passes: None    |
|   |                           |            |       |        | Pending Passes: None    |
|   |                           |            |       |        | Reload: $200 - Autoload |
+---------------------------------------------------------------------------------------+
```

If you wish to use clippercard without specifying username/password on the CLI, create a file ``~/.config/clippercard/credentials.ini`` with this format::


```ini
[default]
username = goldengate88@example.com
password = superseekrit
```

You may toggle accounts via the ``--account`` flag on the command line to access one of several configs in the file::

```ini
[default]
username = <replace_with_your_email>
password = <replace_with_your_password>

[other]
username = <replace_with_login_email>
password = <replace_with_login_password>
```    

The `other` credentials can then be accessed via::

```sh
$ clippercard summary --account=other
```

Non-default accounts keep separate saved login cookies in account-specific files such as
`~/.config/clippercard/auth.other.cookies`.

For scripts and agents, request structured JSON instead of the default table output:

```sh
$ clippercard summary --output json
{
  "profile": {
    "name": "Go*** Ga*** Ri***",
    "email": "g***@example.com"
  },
  "cards": [
    {
      "serial_number": "******4134",
      "nickname": "Primary, card ending in 4134",
      "type": "ADULT",
      "status": "Active",
      "products": [
        {
          "name": "Cash Value",
          "value": "$195.00"
        }
      ],
      "features": [
        {
          "name": "Reload",
          "value": "$255 - Autoload"
        }
      ]
    }
  ]
}
```

When stdout is piped, `summary` defaults to JSON for Unix tooling:

```sh
$ clippercard summary | jq .
```

Use `--show-private` with either output format to include unredacted profile and card details.

# More examples

If you have a transit pass that isn't recognized by this tool, you can privately share a copy of your account page `view-source:` with the maintainer.

# Contribute

1. fork the repo to your personal GitHub account
1. install dev dependencies: `just sync`
1. make your changes in your repo
1. for Python source, follow local style consistency and PEP8
1. format and lint your code: `just format` and `just lint`
1. run tests on the current Python version: `just test`
1. run tests across all supported Python versions: `just test-all`
1. add unit tests, make sure they pass
1. remember to bump the version number wherever applies
1. add a new line for your revision to `CHANGES.txt` describing your change
1. send a pull request to https://github.com/clippercard/clippercard-python w/problem or goal statement and implementation details
1. respond to all pull request code review requests in your branch and submit the requested changes in new commits
1. communicate with the maintainers to merge the finalized pull request and publish your changes
