pyshipstation icon indicating copy to clipboard operation
pyshipstation copied to clipboard

API bindings for ShipStation in Python.

Results 5 pyshipstation issues
Sort by recently updated
recently updated
newest added

I didn't see an example that shows how to get the rate for a given carrier.

enhancement
help wanted

class ShipStationAddress(ShipStationBase): def __init__( self, name=None, company=None, street1=None, street2=None, street3=None, city=None, state=None, postal_code=None, country=None, phone=None, residential=None, ): self.name = name self.company = company self.street1 = street1 self.street2 = street2 self.street3...

bug
help wanted

I want to use this tool to count how many orders were shipped on a given date, but currently ship_date is not a parameter I can use. I have been...

enhancement
help wanted

After receiving a 504 GATEWAY_TIMEOUT from ShipStation's API, a retry with a backoff would improve stability. Here a function that would solve this issue from this [retries in requests guide](https://www.coglib.com/~icordasc/blog/2014/12/retries-in-requests.html):...