Git Product home page Git Product logo

xvideos's Introduction

XVideos

Access xvideos (WARNING: NSFW) programmatically with Node.JS.

Overview

This module scrapes the HTML of xvideos.com and gives you information you can use in your node programs!

Super Quickstart

var xv = require("xvideos");

xv.details("http://www.xvideos.com/video3823160/stranded_busty_sweetie_decides_to_have_sex_with_a_stranger_in_public_for_money", function(err, details) {
  console.log(err, details);
});

Installation

Available via npm:

$ npm install xvideos

Or via git:

$ git clone git://github.com/deoxxa/xvideos.git node_modules/xvideos

Usage

The xvideos package exports a single documented function right now, details.

XVideos API

details

Gets details about a specific video.

xv.details(uri, cb);
// get details about a video
xv.details("http://www.xvideos.com/video3823160/stranded_busty_sweetie_decides_to_have_sex_with_a_stranger_in_public_for_money", function(err, details) {
  console.log(err, details);
});

Arguments

  • uri - a full url to an xvideos video page
  • cb - a callback to be called in the normal node way with an error (or null) and the video details

search

Performs a search and returns the results. parameters is an object that is used to construct the query string for the search URL. Available parameters are: k (the actual search string), sort (relevance, uploaddate, rating), datef ("date filter"), (all, today, week, month), durf ("duration filter"), (allduration, 1-3min, 3-10min, 10min_more), and p, which is the page number.

xv.search(parameters, cb);
// get details about a video
xv.search({k: "porn"}, function(err, results) {
  console.log(err, results);
});

Arguments

  • parameters - an object containing parameters for the query string (see above for details about its properties)
  • cb - a callback to be called in the normal node way with an error (or null) and the search results

Example

Also see example.js.

#!/usr/bin/env node

var xv = require("xvideos");

// get details about a video
xv.details("http://www.xvideos.com/video3823160/stranded_busty_sweetie_decides_to_have_sex_with_a_stranger_in_public_for_money", function(err, details) {
  console.log(err, details);
});

Output (example):

null { title: 'Stranded busty sweetie decides to have sex with a stranger in public for money',
  duration: '5 min',
  tags:
   [ 'amateur',
     'bigtits',
     'brunette',
     'busty',
     'european',
     'flashing',
     'hardcore',
     'money',
     'outdoor',
     'POV',
     'public' ],
  flv: 'http://porn.im.cbce7ca3.3823160.x.xvideos.com/videos/flv/f/e/6/xvideos.com_fe6e41a62c4162b6b9ff750620acf599.flv?e=1366800046&ri=1024&rs=85&h=2cf1096659393b4c153b7cdfe93a8889',
  thumb: 'http://img-l3.xvideos.com/videos/thumbslll/fe/6e/41/fe6e41a62c4162b6b9ff750620acf599/fe6e41a62c4162b6b9ff750620acf599.23.jpg' }

License

3-clause BSD. A copy is included with the source.

Contact

xvideos's People

Contributors

deoxxa avatar

Watchers

James Cloos avatar Alice avatar

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.