Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/agusmakmun/ebayscraper
https://github.com/agusmakmun/ebayscraper
django ebay ebay-scraper ebayscraper scraper
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/agusmakmun/ebayscraper
- Owner: agusmakmun
- License: mit
- Created: 2018-08-30T10:41:47.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-08T02:51:13.000Z (about 2 years ago)
- Last Synced: 2024-05-21T02:39:51.202Z (8 months ago)
- Topics: django, ebay, ebay-scraper, ebayscraper, scraper
- Language: Python
- Size: 184 KB
- Stars: 4
- Watchers: 3
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
ebayscraper :raised_hands:
===========================Simply ebay scraper app on Django.
![homepage](__screenshot/1.png)
![cart](__screenshot/2.png)
![payment](__screenshot/3.png)
### Instalation
I assume you already setup your django development with virtual enviroment (virtualenv).
**1. Create virtual enviroment and activate it.**
```
$ virtualenv --python=/usr/bin/python3 yourenv
$ source bin/activate
```**2. Cloning this project**
```
$ git clone [email protected]:agusmakmun/ebayscraper.git
```**3. Install all requirements**
```
$ pip install -r requirements.txt
```**4. Database migrations**
```
$ ./manage.py makemigrations
$ ./manage.py migrate
```**5. Run the server**
```
$ ./manage.py runserver
```