shipstation_sdk.client ====================== .. py:module:: shipstation_sdk.client .. autoapi-nested-parse:: Interacting with ShipStation. Classes ------- .. autoapisummary:: shipstation_sdk.client.ShipStationClient Module Contents --------------- .. py:class:: ShipStationClient(base_url: str, client_id: str, client_secret: str, timeout: float) A class wrapping ShipStation interaction. .. py:attribute:: client .. py:method:: make_request(method: str, path: str, params: dict[str, Any] | None = None, json: dict[str, Any] | None = None) -> httpx.Response Make a request to ShipStation. .. py:method:: get_shipments(ship_date_start: datetime.date | None = None, ship_date_end: datetime.date | None = None) -> shipstation_sdk.models.ShipmentsList Get a list of shipments. .. py:method:: get_orders(create_date_start: datetime.date | None = None, create_date_end: datetime.date | None = None, store_id: int | None = None) -> shipstation_sdk.models.OrdersList Get a list of orders.