https://github.com/chrismichaelps/scrapinganimeyt
Scraping AnimeYT website from scrach using cheerio
https://github.com/chrismichaelps/scrapinganimeyt
anime animeyt flask node python scraping-animeyt scraping-websites vuejs
Last synced: 3 months ago
JSON representation
Scraping AnimeYT website from scrach using cheerio
- Host: GitHub
- URL: https://github.com/chrismichaelps/scrapinganimeyt
- Owner: chrismichaelps
- Created: 2018-10-01T04:15:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-10-15T17:21:47.000Z (over 7 years ago)
- Last Synced: 2025-02-03T15:43:31.366Z (over 1 year ago)
- Topics: anime, animeyt, flask, node, python, scraping-animeyt, scraping-websites, vuejs
- Language: Vue
- Homepage:
- Size: 668 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Scraping AnimeYT WebSite :fire: 😸 (IN PROGRESS) + FeathersJS


**Front-End**
- Vuejs/Vuex
**Back-End**
- Nodejs
- Python (Flask)
**Middleware**
- FeathersJS
**Module**
[cheerio](https://cheerio.js.org/)
**Set up Cloud Storage**
In the server folder create a file with the configuration of Cloud Storage.
```javascript
const firebase = require('firebase');
require('firebase/firestore');
var config = {
apiKey: "",
authDomain: "",
databaseURL: "",
projectId: "",
storageBucket: "",
messagingSenderId: ""
};
firebase.initializeApp(config);
const db = firebase.firestore();
db.settings({
timestampsInSnapshots: true
});
module.exports = db;
```
**Connection between feathersjs and the client**
Create feathers-vuex.js file in client/src and add this scripts ...
```javascript
import feathers from '@feathersjs/feathers';
import socketio from '@feathersjs/socketio-client';
import auth from '@feathersjs/authentication-client';
import io from 'socket.io-client';
const socket = io('http://localhost:3030', {transports: ['websocket']});
const feathersClient = feathers()
.configure(socketio(socket))
.configure(auth({ storage: window.localStorage }))
export default feathersClient;
```
**Author**
-----------------
Development Lead
- Chris M. Perez Santiago chris.perez@upr.edu | chrisperezsantiago1@gmail.com