A Python client for the ParcelPending website
Project description
ParcelPending
A Python client for the ParcelPending website that allows you to retrieve and manage your package delivery information programmatically.
Features
- Authenticate with ParcelPending website
- Retrieve parcel history for any date range
- Filter parcels by status (active/picked up)
- Filter parcels by courier (USPS, Amazon, FedEx, etc.)
- Export parcel data to CSV or JSON
- Command-line interface for easy access
Installation
Requirements
- Python 3.7+
requestsbeautifulsoup4
Install from GitHub
# Clone the repository
git clone https://github.com/poiley/parcelpending.git
cd parcelpending
# Create and activate a virtual environment (recommended)
python -m venv .env
source .env/bin/activate # On Windows: .env\Scripts\activate
# Install dependencies
pip install -r requirements.txt
# Install the package in development mode
pip install -e .
Usage
Basic Usage
from parcelpending import ParcelPendingClient
from datetime import datetime, timedelta
# Initialize client and login
client = ParcelPendingClient()
client.login(email="your.email@example.com", password="your-password")
# Get parcel history for the last 30 days
end_date = datetime.now()
start_date = end_date - timedelta(days=30)
parcels = client.get_parcel_history(start_date, end_date)
# Print parcels
for parcel in parcels:
print(f"Package code: {parcel.get('package_code', 'N/A')}")
print(f"Status: {parcel.get('status', 'N/A')}")
print(f"Locker: {parcel.get('locker_box', 'N/A')}")
print(f"Size: {parcel.get('size', 'N/A')}")
print(f"Courier: {parcel.get('courier', 'N/A')}")
print("---")
Advanced Usage
# Get only active parcels (not picked up)
active_parcels = client.get_active_parcels(days=90)
# Get parcels from a specific courier
amazon_parcels = client.get_parcels_by_courier("Amazon", days=60)
# Find a specific parcel by package code
specific_parcel = client.get_parcel_by_code("12345678")
# Export parcels to CSV
client.export_to_csv(parcels, "my_parcels.csv")
# Export parcels to JSON
client.export_to_json(active_parcels, "active_parcels.json")
Command Line Interface
The package includes a command-line interface for convenient access to your parcel data.
List Parcels
# List all parcels from the last 30 days
parcelpending your.email@example.com your-password list
# List only active parcels
parcelpending your.email@example.com your-password list --active
# List USPS parcels from the last 90 days
parcelpending your.email@example.com your-password list --courier USPS --days 90
# Enable debug mode for more detailed logs
parcelpending your.email@example.com your-password list --debug
Export Parcels
# Export all parcels to CSV
parcelpending your.email@example.com your-password export
# Export active parcels to JSON
parcelpending your.email@example.com your-password export --active --format json
# Specify output file
parcelpending your.email@example.com your-password export --output my_deliveries.csv
Development
Setting Up Development Environment
# Clone the repository
git clone https://github.com/poiley/parcelpending.git
cd parcelpending
# Create and activate virtual environment
python -m venv .env
source .env/bin/activate # On Windows: .env\Scripts\activate
# Install development dependencies
pip install -r requirements.txt
pip install -e .
Running Tests
# Run all tests
pytest
# Run tests with coverage report
pytest --cov=parcelpending
Code Style
This project uses flake8, black, and isort for code formatting:
# Check code style
flake8 parcelpending tests
# Format code
black parcelpending tests
isort parcelpending tests
Data Structure
The parcel data is returned as a list of dictionaries. Each dictionary may contain these fields (when available):
| Field | Description |
|---|---|
package_code |
Unique code for the package |
status |
Status of the package (e.g., "Picked up") |
locker_box |
Locker box number |
size |
Size of the package (Small, Medium, Large, etc.) |
courier |
Delivery service (USPS, Amazon, FedEx, etc.) |
delivered |
Date and time of delivery |
status_change |
Date and time of the last status change |
package_id |
Internal ID for the package |
tracking |
Tracking number (if available) |
License
This project is licensed under the MIT License - see the LICENSE file for details.
Disclaimer
This package is not affiliated with, maintained, authorized, endorsed, or sponsored by ParcelPending or any of its affiliates or subsidiaries. This is an unofficial wrapper that interacts with the publicly available ParcelPending website.
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
- Fork the repository
- Create your feature branch (
git checkout -b feature/amazing-feature) - Commit your changes (
git commit -m 'Add some amazing feature') - Push to the branch (
git push origin feature/amazing-feature) - Open a Pull Request
Author
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file parcelpending-1.0.0.tar.gz.
File metadata
- Download URL: parcelpending-1.0.0.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b81877796ad7ee950affdfb2b2cfd179b5797f6cd73ee673baf07702aa47cf5a
|
|
| MD5 |
809759b0a717b9257dd89058cdae2150
|
|
| BLAKE2b-256 |
bb2c0263f39b731cc4c7211d25fd7d60a86a6c885db22ba0764f313db827d7f4
|
Provenance
The following attestation bundles were made for parcelpending-1.0.0.tar.gz:
Publisher:
pypi-publish.yml on poiley/parcelpending
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
parcelpending-1.0.0.tar.gz -
Subject digest:
b81877796ad7ee950affdfb2b2cfd179b5797f6cd73ee673baf07702aa47cf5a - Sigstore transparency entry: 181133358
- Sigstore integration time:
-
Permalink:
poiley/parcelpending@9a298d560f0e97c455413206b88c6052b845411e -
Branch / Tag:
refs/heads/master - Owner: https://github.com/poiley
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@9a298d560f0e97c455413206b88c6052b845411e -
Trigger Event:
push
-
Statement type:
File details
Details for the file parcelpending-1.0.0-py3-none-any.whl.
File metadata
- Download URL: parcelpending-1.0.0-py3-none-any.whl
- Upload date:
- Size: 15.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49f5cdbb7e97cb6f5b7512e82232e26eb235312a9bb31361a515cdb35d0e024d
|
|
| MD5 |
0222176614479c9781da58c8d64299cd
|
|
| BLAKE2b-256 |
c640c220df1892a53482b557fdabfc33769a53423c9167e2b3affeb6e5e237e2
|
Provenance
The following attestation bundles were made for parcelpending-1.0.0-py3-none-any.whl:
Publisher:
pypi-publish.yml on poiley/parcelpending
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
parcelpending-1.0.0-py3-none-any.whl -
Subject digest:
49f5cdbb7e97cb6f5b7512e82232e26eb235312a9bb31361a515cdb35d0e024d - Sigstore transparency entry: 181133359
- Sigstore integration time:
-
Permalink:
poiley/parcelpending@9a298d560f0e97c455413206b88c6052b845411e -
Branch / Tag:
refs/heads/master - Owner: https://github.com/poiley
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
pypi-publish.yml@9a298d560f0e97c455413206b88c6052b845411e -
Trigger Event:
push
-
Statement type: