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 = []
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# coding: Utf-8 | |
import os | |
import pickle | |
import random | |
import string | |
import time | |
import urllib.request |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
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
mongoimport --db test --collection restaurants --drop --file "C:\Users\vp\Downloads\restaurants-dataset.json"
(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;
C:\MongoDB
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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): |