easypost


Nameeasypost JSON
Version 9.4.1 PyPI version JSON
download
home_pagehttps://easypost.com/
SummaryEasyPost Shipping API Client Library for Python
upload_time2024-08-09 19:31:09
maintainerNone
docs_urlNone
authorEasyPost
requires_python<4,>=3.7
licenseNone
keywords
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # EasyPost Python Client Library

[![CI](https://github.com/EasyPost/easypost-python/workflows/CI/badge.svg)](https://github.com/EasyPost/easypost-python/actions?query=workflow%3ACI)
[![Coverage Status](https://coveralls.io/repos/github/EasyPost/easypost-python/badge.svg)](https://coveralls.io/github/EasyPost/easypost-python)
[![PyPI version](https://badge.fury.io/py/easypost.svg)](https://badge.fury.io/py/easypost)

EasyPost, the simple shipping solution. You can sign up for an account at <https://easypost.com>.

## Install

The library is tested against Python3 and should be compatible with PyPy3.

```bash
pip install easypost
```

```python
# Import the EasyPost library:
import easypost
```

## Usage

A simple create & buy shipment example:

```python
import os
import easypost

client = easypost.EasyPostClient(os.getenv('EASYPOST_API_KEY'))

shipment = client.shipment.create(
    from_address = {
        "name": "EasyPost",
        "street1": "118 2nd Street",
        "street2": "4th Floor",
        "city": "San Francisco",
        "state": "CA",
        "zip": "94105",
        "country": "US",
        "phone": "415-456-7890",
    },
    to_address = {
        "name": "Dr. Steve Brule",
        "street1": "179 N Harbor Dr",
        "city": "Redondo Beach",
        "state": "CA",
        "zip": "90277",
        "country": "US",
        "phone": "310-808-5243",
    },
    parcel = {
        "length": 10.2,
        "width": 7.8,
        "height": 4.3,
        "weight": 21.2,
    },
)

bought_shipment = client.shipment.buy(shipment.id, rate=shipment.lowest_rate())

print(bought_shipment)
```

### HTTP Hooks

Users can subscribe to HTTP requests and responses via the `RequestHook` and `ResponseHook` objects. To do so, pass a function to the `subscribe_to_request_hook` or `subscribe_to_response_hook` methods of an `EasyPostClient` object:

```python
def custom_function(**kwargs):
    """Pass your code here, data about the request/response is contained within `kwargs`."""
    print(f"Received a request with the status code of: {kwargs.get('http_status')}")

client = easypost.EasyPostClient(os.getenv('EASYPOST_API_KEY'))

client.subscribe_to_response_hook(custom_function)

# Make your API calls here, your custom_function will trigger once a response is received
```

You can also unsubscribe your functions in a similar manner by using the `unsubscribe_from_request_hook` and `unsubscribe_from_response_hook` methods of a client object.

## Documentation

API documentation can be found at: <https://docs.easypost.com>.

Library documentation can be found on the web at: <https://easypost.github.io/easypost-python/> or by building them locally via the `make docs` command.

Upgrading major versions of this project? Refer to the [Upgrade Guide](UPGRADE_GUIDE.md).

## Support

New features and bug fixes are released on the latest major release of this library. If you are on an older major release of this library, we recommend upgrading to the most recent release to take advantage of new features, bug fixes, and security patches. Older versions of this library will continue to work and be available as long as the API version they are tied to remains active; however, they will not receive updates and are considered EOL.

For additional support, see our [org-wide support policy](https://github.com/EasyPost/.github/blob/main/SUPPORT.md).

## Development

```bash
# Install dependencies
make install

# Lint project
make lint
make lint-fix

# Run tests
EASYPOST_TEST_API_KEY=123... EASYPOST_PROD_API_KEY=123... make test
EASYPOST_TEST_API_KEY=123... EASYPOST_PROD_API_KEY=123... make coverage

# Run security analysis
make scan

# Generate library documentation
make docs

# Update submodules
make update-examples-submodule
```

### Testing

The test suite in this project was specifically built to produce consistent results on every run, regardless of when they run or who is running them. This project uses [VCR](https://github.com/kevin1024/vcrpy) to record and replay HTTP requests and responses via "cassettes". When the suite is run, the HTTP requests and responses for each test function will be saved to a cassette if they do not exist already and replayed from this saved file if they do, which saves the need to make live API calls on every test run. If you receive errors about a cassette expiring, delete and re-record the cassette to ensure the data is up-to-date.

**Sensitive Data:** We've made every attempt to include scrubbers for sensitive data when recording cassettes so that PII or sensitive info does not persist in version control; however, please ensure when recording or re-recording cassettes that prior to committing your changes, no PII or sensitive information gets persisted by inspecting the cassette.

**Making Changes:** If you make an addition to this project, the request/response will get recorded automatically for you if the `@pytest.mark.vcr()` decorator is included on the test function. When making changes to this project, you'll need to re-record the associated cassette to force a new live API call for that test which will then record the request/response used on the next run.

**Test Data:** The test suite has been populated with various helpful fixtures that are available for use, each completely independent from a particular user **with the exception of the USPS carrier account ID** (see [Unit Test API Keys](#unit-test-api-keys) for more information) which has a fallback value of our internal testing user's ID. Some fixtures use hard-coded dates that may need to be incremented if cassettes get re-recorded (such as reports or pickups).

#### Unit Test API Keys

The following are required on every test run:

- `EASYPOST_TEST_API_KEY`
- `EASYPOST_PROD_API_KEY`

Some tests may require an EasyPost user with a particular set of enabled features such as a `Partner` user when creating referrals. We have attempted to call out these functions in their respective docstrings. The following are required when you need to re-record cassettes for applicable tests:

- `USPS_CARRIER_ACCOUNT_ID` (eg: one-call buying a shipment for non-EasyPost employees)
- `PARTNER_USER_PROD_API_KEY` (eg: creating a referral user)
- `REFERRAL_CUSTOMER_PROD_API_KEY` (eg: adding a credit card to a referral user)

#### Google Cloud SDK

To run the test suite with the Google Cloud SDK (`urlfetch` instead of the `requests` library), you'll need the following:

1. Install the appengine Python package to this virtual environment: `venv/bin/pip install appengine-python-standard`
1. Install the Google Cloud SDK
   - [Direct Download](https://cloud.google.com/sdk/docs/install)
   - [Homebrew](https://formulae.brew.sh/cask/google-cloud-sdk)
1. Point the `PYTHONPATH` environment variable to the path of the newly installed `google-cloud-sdk` directory. For Homebrew, this is `"$(brew --prefix)/share/google-cloud-sdk"`
1. Run the test suite with the commands listed in this README

            

Raw data

            {
    "_id": null,
    "home_page": "https://easypost.com/",
    "name": "easypost",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4,>=3.7",
    "maintainer_email": null,
    "keywords": null,
    "author": "EasyPost",
    "author_email": "support@easypost.com",
    "download_url": "https://files.pythonhosted.org/packages/a9/81/7b57fe5a2ebef74a7f6907a56d0f14b19a9503a3e09478ba21a56c41e453/easypost-9.4.1.tar.gz",
    "platform": null,
    "description": "# EasyPost Python Client Library\n\n[![CI](https://github.com/EasyPost/easypost-python/workflows/CI/badge.svg)](https://github.com/EasyPost/easypost-python/actions?query=workflow%3ACI)\n[![Coverage Status](https://coveralls.io/repos/github/EasyPost/easypost-python/badge.svg)](https://coveralls.io/github/EasyPost/easypost-python)\n[![PyPI version](https://badge.fury.io/py/easypost.svg)](https://badge.fury.io/py/easypost)\n\nEasyPost, the simple shipping solution. You can sign up for an account at <https://easypost.com>.\n\n## Install\n\nThe library is tested against Python3 and should be compatible with PyPy3.\n\n```bash\npip install easypost\n```\n\n```python\n# Import the EasyPost library:\nimport easypost\n```\n\n## Usage\n\nA simple create & buy shipment example:\n\n```python\nimport os\nimport easypost\n\nclient = easypost.EasyPostClient(os.getenv('EASYPOST_API_KEY'))\n\nshipment = client.shipment.create(\n    from_address = {\n        \"name\": \"EasyPost\",\n        \"street1\": \"118 2nd Street\",\n        \"street2\": \"4th Floor\",\n        \"city\": \"San Francisco\",\n        \"state\": \"CA\",\n        \"zip\": \"94105\",\n        \"country\": \"US\",\n        \"phone\": \"415-456-7890\",\n    },\n    to_address = {\n        \"name\": \"Dr. Steve Brule\",\n        \"street1\": \"179 N Harbor Dr\",\n        \"city\": \"Redondo Beach\",\n        \"state\": \"CA\",\n        \"zip\": \"90277\",\n        \"country\": \"US\",\n        \"phone\": \"310-808-5243\",\n    },\n    parcel = {\n        \"length\": 10.2,\n        \"width\": 7.8,\n        \"height\": 4.3,\n        \"weight\": 21.2,\n    },\n)\n\nbought_shipment = client.shipment.buy(shipment.id, rate=shipment.lowest_rate())\n\nprint(bought_shipment)\n```\n\n### HTTP Hooks\n\nUsers can subscribe to HTTP requests and responses via the `RequestHook` and `ResponseHook` objects. To do so, pass a function to the `subscribe_to_request_hook` or `subscribe_to_response_hook` methods of an `EasyPostClient` object:\n\n```python\ndef custom_function(**kwargs):\n    \"\"\"Pass your code here, data about the request/response is contained within `kwargs`.\"\"\"\n    print(f\"Received a request with the status code of: {kwargs.get('http_status')}\")\n\nclient = easypost.EasyPostClient(os.getenv('EASYPOST_API_KEY'))\n\nclient.subscribe_to_response_hook(custom_function)\n\n# Make your API calls here, your custom_function will trigger once a response is received\n```\n\nYou can also unsubscribe your functions in a similar manner by using the `unsubscribe_from_request_hook` and `unsubscribe_from_response_hook` methods of a client object.\n\n## Documentation\n\nAPI documentation can be found at: <https://docs.easypost.com>.\n\nLibrary documentation can be found on the web at: <https://easypost.github.io/easypost-python/> or by building them locally via the `make docs` command.\n\nUpgrading major versions of this project? Refer to the [Upgrade Guide](UPGRADE_GUIDE.md).\n\n## Support\n\nNew features and bug fixes are released on the latest major release of this library. If you are on an older major release of this library, we recommend upgrading to the most recent release to take advantage of new features, bug fixes, and security patches. Older versions of this library will continue to work and be available as long as the API version they are tied to remains active; however, they will not receive updates and are considered EOL.\n\nFor additional support, see our [org-wide support policy](https://github.com/EasyPost/.github/blob/main/SUPPORT.md).\n\n## Development\n\n```bash\n# Install dependencies\nmake install\n\n# Lint project\nmake lint\nmake lint-fix\n\n# Run tests\nEASYPOST_TEST_API_KEY=123... EASYPOST_PROD_API_KEY=123... make test\nEASYPOST_TEST_API_KEY=123... EASYPOST_PROD_API_KEY=123... make coverage\n\n# Run security analysis\nmake scan\n\n# Generate library documentation\nmake docs\n\n# Update submodules\nmake update-examples-submodule\n```\n\n### Testing\n\nThe test suite in this project was specifically built to produce consistent results on every run, regardless of when they run or who is running them. This project uses [VCR](https://github.com/kevin1024/vcrpy) to record and replay HTTP requests and responses via \"cassettes\". When the suite is run, the HTTP requests and responses for each test function will be saved to a cassette if they do not exist already and replayed from this saved file if they do, which saves the need to make live API calls on every test run. If you receive errors about a cassette expiring, delete and re-record the cassette to ensure the data is up-to-date.\n\n**Sensitive Data:** We've made every attempt to include scrubbers for sensitive data when recording cassettes so that PII or sensitive info does not persist in version control; however, please ensure when recording or re-recording cassettes that prior to committing your changes, no PII or sensitive information gets persisted by inspecting the cassette.\n\n**Making Changes:** If you make an addition to this project, the request/response will get recorded automatically for you if the `@pytest.mark.vcr()` decorator is included on the test function. When making changes to this project, you'll need to re-record the associated cassette to force a new live API call for that test which will then record the request/response used on the next run.\n\n**Test Data:** The test suite has been populated with various helpful fixtures that are available for use, each completely independent from a particular user **with the exception of the USPS carrier account ID** (see [Unit Test API Keys](#unit-test-api-keys) for more information) which has a fallback value of our internal testing user's ID. Some fixtures use hard-coded dates that may need to be incremented if cassettes get re-recorded (such as reports or pickups).\n\n#### Unit Test API Keys\n\nThe following are required on every test run:\n\n- `EASYPOST_TEST_API_KEY`\n- `EASYPOST_PROD_API_KEY`\n\nSome tests may require an EasyPost user with a particular set of enabled features such as a `Partner` user when creating referrals. We have attempted to call out these functions in their respective docstrings. The following are required when you need to re-record cassettes for applicable tests:\n\n- `USPS_CARRIER_ACCOUNT_ID` (eg: one-call buying a shipment for non-EasyPost employees)\n- `PARTNER_USER_PROD_API_KEY` (eg: creating a referral user)\n- `REFERRAL_CUSTOMER_PROD_API_KEY` (eg: adding a credit card to a referral user)\n\n#### Google Cloud SDK\n\nTo run the test suite with the Google Cloud SDK (`urlfetch` instead of the `requests` library), you'll need the following:\n\n1. Install the appengine Python package to this virtual environment: `venv/bin/pip install appengine-python-standard`\n1. Install the Google Cloud SDK\n   - [Direct Download](https://cloud.google.com/sdk/docs/install)\n   - [Homebrew](https://formulae.brew.sh/cask/google-cloud-sdk)\n1. Point the `PYTHONPATH` environment variable to the path of the newly installed `google-cloud-sdk` directory. For Homebrew, this is `\"$(brew --prefix)/share/google-cloud-sdk\"`\n1. Run the test suite with the commands listed in this README\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "EasyPost Shipping API Client Library for Python",
    "version": "9.4.1",
    "project_urls": {
        "Docs": "https://docs.easypost.com",
        "Homepage": "https://easypost.com/",
        "Source": "https://github.com/EasyPost/easypost-python",
        "Tracker": "https://github.com/EasyPost/easypost-python/issues"
    },
    "split_keywords": [],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "86cd8122f8182d37ecf7c1d40cc186e70bede1ed266bfa7ab20a9142fb68c016",
                "md5": "26cf93cb37351791343f9affaf49ec5a",
                "sha256": "4e520460f2dec2aafa773996b29ea7d7b4ddad9e376d5ba62c8287eb1bb7a12e"
            },
            "downloads": -1,
            "filename": "easypost-9.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "26cf93cb37351791343f9affaf49ec5a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4,>=3.7",
            "size": 57309,
            "upload_time": "2024-08-09T19:31:07",
            "upload_time_iso_8601": "2024-08-09T19:31:07.111346Z",
            "url": "https://files.pythonhosted.org/packages/86/cd/8122f8182d37ecf7c1d40cc186e70bede1ed266bfa7ab20a9142fb68c016/easypost-9.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a9817b57fe5a2ebef74a7f6907a56d0f14b19a9503a3e09478ba21a56c41e453",
                "md5": "59ef2e26a8a4ca230d8500df5f2eb0a0",
                "sha256": "1995235abf50a777a102f7598bd8ff9ab574ca686bf4483d0cc50b135b614cd3"
            },
            "downloads": -1,
            "filename": "easypost-9.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "59ef2e26a8a4ca230d8500df5f2eb0a0",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4,>=3.7",
            "size": 55334,
            "upload_time": "2024-08-09T19:31:09",
            "upload_time_iso_8601": "2024-08-09T19:31:09.162257Z",
            "url": "https://files.pythonhosted.org/packages/a9/81/7b57fe5a2ebef74a7f6907a56d0f14b19a9503a3e09478ba21a56c41e453/easypost-9.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-08-09 19:31:09",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "EasyPost",
    "github_project": "easypost-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "easypost"
}
        
Elapsed time: 1.12888s