Skip to content

Instantly share code, notes, and snippets.

View vijayanandrp's full-sized avatar
👑

Vijay Anand Pandian vijayanandrp

👑
View GitHub Profile
@vijayanandrp
vijayanandrp / send_email.py
Created November 27, 2017 10:09
Sample function for sending emails using python - https://informationcorners.com/read-send-emails-python/
# -*- coding: utf-8 -*-
import re
import email
import smtplib
import mimetypes
from email.mime.multipart import MIMEMultipart
from email import encoders
from email.mime.audio import MIMEAudio
from email.mime.base import MIMEBase
@vijayanandrp
vijayanandrp / facebook-page-image-download.py
Last active November 27, 2017 04:55
simple script to download all the images from facebook page. - https://informationcorners.com/facebook-page-image-scraper/
#!/usr/bin/python
# coding: Utf-8
import os
import pickle
import random
import string
import time
import urllib.request
@vijayanandrp
vijayanandrp / google-image-download.py
Created November 27, 2017 04:33
Simple method to scrape google image from google search engine. - https://informationcorners.com/google-search-image-scraper/
# coding: utf-8
import time # Importing the time library to check the time of code execution
import sys # Importing the System Library
import os
import urllib.request
import rfc6266, requests
import random
import string
import pandas as pd

def posts_2_df(iterator, chunk_size=1000):
    """
        Turn an iterator into multiple small pandas.DataFrame
        This is a balance between memory and efficiency
    """
    records = []
 frames = []
@vijayanandrp
vijayanandrp / CRUD operations using Pymongo Demo.md
Last active February 26, 2018 19:16
CRUD operations using Pymongo Demo - follow this tutorial for setup https://informationcorners.com/pymongo-wrapper

PyMongo Tutorial : Insert, Read, Update, Delete in MongoDB

# !/usr/bin/env python3.5
# -*- coding: UTF-8 -*-

import pprint
import dateutil.parser
import datetime

PyMongo is a Python distribution containing tools for working with MongoDB, and is the recommended way to work with MongoDB from Python. Enter the following commands in command prompt to install it.

pip3.5 install pymongo

or

pip install pymongo

Download a sample dataset or json from Github restaurants-dataset.json

restaurants-dataset.json

type the follwing command in command prompt

  mongoimport --db test --collection restaurants --drop --file "C:\Users\vp\Downloads\restaurants-dataset.json"

output looks like this in below

@vijayanandrp
vijayanandrp / MongoDB-Windows_setup.md
Last active November 24, 2017 13:40
Windows mongodb setup and run as a service - https://informationcorners.com/pymongo-wrapper

Add the MongoDB path to system environment variables

(RightClick) This PC -> Properties -> Advanced System Settings (Leftside-down) -> Environment Variables -> path (system variables) -> add below values at the end

;C:\Program Files\MongoDB\Server\3.2\bin;

Open C: drive, create a folder named

C:\MongoDB

Inside MongoDB folder create

@vijayanandrp
vijayanandrp / tutorial_with_solutions.ipynb
Last active November 18, 2017 05:00
Tutorial: Machine Learning with Text in scikit-learn by Kevin Markham
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@vijayanandrp
vijayanandrp / db.py
Last active November 24, 2017 12:50
Pymongo - wrapper for using mongodb in python. - https://informationcorners.com/pymongo-wrapper
#!/usr/bin/env python3.5
# -*- coding: UTF-8 -*-
try:
from pymongo import MongoClient
except ImportError:
raise ImportError('PyMongo is not installed in your machine.')
class MongoDB(object):