https://github.com/lau1944/github-web-scraper
A Github Page Web Scraper Rest Api Using Flask (Github网页爬虫)
https://github.com/lau1944/github-web-scraper
flask python webscraper
Last synced: about 2 months ago
JSON representation
A Github Page Web Scraper Rest Api Using Flask (Github网页爬虫)
- Host: GitHub
- URL: https://github.com/lau1944/github-web-scraper
- Owner: lau1944
- Created: 2020-05-14T09:55:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-09-05T06:19:36.000Z (almost 6 years ago)
- Last Synced: 2024-12-31T14:43:24.810Z (over 1 year ago)
- Topics: flask, python, webscraper
- Language: Python
- Homepage:
- Size: 188 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
A Github Web Scraper Rest Api Using Flask
```diff
+ First Thing First, Star The Project if you want to see the following update !
```
## Installation
```
pip install flask
pip install beautifulsoup4
```
## Run
open console, type
```
python scraper.py
```
Open the default URL on browser
## Path
### Trending
get trending open source project
```http
@GET /github/trend
```
each result in projects:
``` python
"detail": [
"Animation of the SHA-256 hash function in your terminal."
],
"folk": "36",
"language": [
"Ruby"
],
"link": [
"https://github.com//in3rsha/sha256-animation"
],
"star": [
"1,469"
],
"title": [
"in3rsha/sha256-animation"
]
},
```
Obviously there are more github page to scrap, to be continue...