Code Monkey home page Code Monkey logo

django-youtuber's Introduction

Django Youtuber

A tiny app that goes through the list of channels/playlists from youtube. This app enables you to add as many entries as you need through the admin panel and it will scrape the video data you need from youtube.

How to use

Simply add the following configuration values to your settings.py file:

YOUTUBE_DEVELOPER_KEY = '<YOUR_APP_ID>'
YOUTUBE_MAX_RESULTS = 10 # default is 10
YOUTUBE_FOLLOW_PAGINATION = True # Default is false
YOUTUBE_MAX_PAGINATION = 10 # default is 10
YOUTUBE_ENTRY_PIPELINES = [
    'example_project.pipelines.YoutubePipeline'
]

As you've noticed, This app does not provide a model/table that saves the video info for you. Instead, you have to write your own pipeline (Inspired by scrapy) to save the data manually.

Pipeline looks as follows:

from youtuber.pipelines import BasePipeline


class YoutubePipeline(BasePipeline):
    def process(self, youtube_source, video):
        print video.title

You can pretty much do whatever you like in the pipeline with the video instance.

The youtube_source instance is a YoutubeSource instance provided by django_youtuber to identify where the video came from. The video instance is a YoutubeFeedItem that contains the list of attributes extracted for a single youtube video.

Celery

Don't also forget to configure celery as the application distributes source among different workers to fetch the list of videos from all sources in parallel.

BROKER_URL = 'amqp://guest:guest@localhost:5672/'

You can also register task youtuber_start as a scheduled task and run celery beat to make that every given time duration.

License

The MIT License (MIT)

Copyright (c) 2015 Rakan Alhneiti

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

django-youtuber's People

Contributors

rakanalh avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

brahimmade

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.