Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vigzmv/social_scraper_django
Scrap Social Network Data (Quora, CodeChef) and use it to rank Users.
https://github.com/vigzmv/social_scraper_django
codechef django python quora scraper
Last synced: 1 day ago
JSON representation
Scrap Social Network Data (Quora, CodeChef) and use it to rank Users.
- Host: GitHub
- URL: https://github.com/vigzmv/social_scraper_django
- Owner: vigzmv
- Created: 2017-04-19T12:56:57.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-17T19:23:15.000Z (over 7 years ago)
- Last Synced: 2024-12-26T19:53:40.894Z (about 1 month ago)
- Topics: codechef, django, python, quora, scraper
- Language: Python
- Homepage:
- Size: 220 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Instatllation
```sh
# Go to the project root.
# Use a python virtual env or work on global env.# For virtual env:
$ pip install -r requirements.txt# For global env:
$ sudo pip install -r requirements.txt# Make makemigrations
$ python manage.py makemigrations# Migrate them to sqlite3
$ python manage.py migrate# Create a superuser/admin
$ python manage.py createsuperuser# run the server
$ python manage.py runserver
```Visit http://localhost:8000 with browser.
Signup for accounts, you can also login using the admin credentials.
Add codechef or Quora usernames to get the account data, data is retrived using web scrapping.
Admin can see the stats page which shows all the User details ranked.Visit http://localhost:8000/admin/ and login with the admin credentials, to see the admin panel from where all the models can be managed.