Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yasserqureshi1/price-checking-tools
Multiple scripts that return statistical data on different marketplaces
https://github.com/yasserqureshi1/price-checking-tools
bot bump depop ebay goat stockx
Last synced: 17 days ago
JSON representation
Multiple scripts that return statistical data on different marketplaces
- Host: GitHub
- URL: https://github.com/yasserqureshi1/price-checking-tools
- Owner: yasserqureshi1
- Created: 2020-07-26T00:20:58.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T11:51:44.000Z (about 2 years ago)
- Last Synced: 2024-07-30T17:29:53.425Z (5 months ago)
- Topics: bot, bump, depop, ebay, goat, stockx
- Language: Python
- Homepage:
- Size: 25.4 KB
- Stars: 18
- Watchers: 0
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Price-Checking-Tools
Multiple scripts that return statistical data on different marketplaces for mainly sneakers.## Installation
Install the required dependencies using the following command in Command Prompt (Windows) or Terminal (Mac or Linux):
```
pip install -r requirements.txt
```The following packages will be installed:
```
requests
json
bs4
numpy
```## Introduction
The purpose of this repo is to return statistical data on the prices for a particular item on different marketplaces.
This can be used to determine the best site(s) to sell or purchase items.This repo contains scripts for the following sites:
- StockX
- GOAT
- eBay
- Depop
- BUMP## How to use
These scripts can be run via the command line.
The general structure is as follows```
python [script name] [argument 1] [argument 2]
```With most of the tools, you will only need to pass 1 argument, with the exception of `eBayBot.py` which takes 2.
An example of how to pass arguments is shown below:
```
python StockXBot.py 'yeezy 350 creams'
```For `ebayBot.py`, the first argument is whether you want sold prices or current prices with the second argument being the item.
As such the first argument should be passed either as `current` or `sold`.
An example is shown below:
```
python eBayBot.py current 'yeezy 350 creams'
```