A unofficial Python wrapper for the Restocks API
Project description
Restocks.net API Wrapper
Overview
The restocks_api_wrapper
is an unofficial wrapper for the api of the sneaker platform restocks.net. It allows you to get information about products, but also to manage your sales. There is no connection to restocks, this is a private project.
Functions
Function Name | Description | Login Required |
---|---|---|
search_product |
Searches for a product by SKU or name. | No |
get_product_info |
Retrieves detailed information about a product. | No |
get_size_id |
Fetches the size ID for a given product and size. | No |
get_sku_from_id |
Retrieves the SKU for a product based on its ID. | No |
get_payout |
Calculates the expected payout for a listing. | No |
login |
Authenticates the user with email and password. | No |
check_login |
Checks if the user is logged in. | Yes |
get_current_listings |
Retrieves current product listings. | Yes |
get_history_sales |
Fetches historical sales data. | Yes |
get_current_sales |
Fetches current sales data. | Yes |
edit_listing |
Edits the price of an existing listing. | Yes |
delete_listing |
Deletes an existing listing. | Yes |
list_product |
Lists a new product for sale. | Yes |
get_shipping_products |
Retrieves products that need shipping. | Yes |
download_label |
Downloads the shipping label for a product. | Yes |
check_consign_status |
Checks the consignment status of the user. | Yes |
Usage Example
from restocks_client.client import RestocksClient
from restocks_client.filters import SellMethod, ListingDuration
# Initialize the RestocksClient with login credentials and proxy list.
client = RestocksClient(
proxy_list=[
"proxy1:port:username:password",
"proxy2:port:username:password",
# ... (Add more proxies as needed)
]
)
# Fetch information about a product using its SKU.
product_info = client.get_product_info(slug=client.search_product(sku='DD1391-100').slug)
# set login data
client.email = 'your_email@example.com',
client.password = 'your_password',
# Authenticate and login.
client.login()
# Retrieve current listings with a specific sell method.
current_listings = client.get_current_listings(sell_method=SellMethod.Resell)
# List a product for sale on the platform.
client.list_product(
product=client.search_product(sku='DD1391-100'),
size='36',
sell_method=SellMethod.Resell,
duration=ListingDuration.Days90,
store_price=900
)
# Example of working with listings.
listing = current_listings[1]
client.edit_listing(listing_id=listing.listing_id, new_price=500)
for listing in current_listings:
client.delete_listing(listing.listing_id)
Note
I recommend the use of proxies, which can be specified as a list as shown in the example. The format hostname:port:username:password
is used for this. The use of proxies helps to avoid blocks of restocks. If no proxy list is given, the localhost is used by default.
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
File details
Details for the file restocks_api_wrapper-0.1.0.tar.gz
.
File metadata
- Download URL: restocks_api_wrapper-0.1.0.tar.gz
- Upload date:
- Size: 10.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 807a5962351ae345a232e8ba6ff5627a9c846c896193b4c8c6cbeaf90794df6b |
|
MD5 | b14812eb5d9299111c15b035abf5119b |
|
BLAKE2b-256 | 69353479b92bdb20ff7b9287b7492992246ae45b711de1ebdd68c315d87dc1d4 |
File details
Details for the file restocks_api_wrapper-0.1.0-py3-none-any.whl
.
File metadata
- Download URL: restocks_api_wrapper-0.1.0-py3-none-any.whl
- Upload date:
- Size: 13.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | be411012b602da38ba4251a7b4bd6e17053f52b9d260fcf7be5b2121acd63797 |
|
MD5 | 2d36363a1a5309ddc4c55036e9207eb5 |
|
BLAKE2b-256 | 52ae81fc6ebaea0f917d86a02301af92f5453c3c73da8a8e580ea95d072a6f4a |