Skip to content

Instantly share code, notes, and snippets.

View vivekiyer114's full-sized avatar

Vivek Iyer vivekiyer114

  • Rebel Foods
  • Mumbai
View GitHub Profile
@vivekiyer114
vivekiyer114 / JsonView.jsx
Created March 11, 2018 03:23
React json viewer utility
import React, { Component } from "react";
import Row from 'react-bootstrap/lib/Row';
import Col from 'react-bootstrap/lib/Col';
import PropsTypes from 'prop-types';
class JsonView extends Component{
constructor(props){
@vivekiyer114
vivekiyer114 / Youtube.py
Created November 28, 2016 03:11
A simple youtube views extracter (My first python web scraper :) )
from bs4 import BeautifulSoup
import urllib2
s=raw_input('enter query:')
s=s.replace(" ","+")
print(s)