Giter VIP home page Giter VIP logo

severin_covid's Introduction

twitterDSlab2020

Getting started

cd /home/dslab2020/twitterNewsDSLab2020
source .tenv/bin/activate

Running Everything

cd stable
./alarmclock.sh

Use Jupyter lab

inside .tenv
jupyter lab --no-browser
on your local machine
ssh -N -L 8888:localhost:8888 {user}@{server_ip}

Use Tmux to checkout processes

Write to MongoDB

In order to push to MongoDB you can do:

mongo
> use tweet_data
> db.myNewCollection1.insertOne( { x: 1 } )

This creates a new collection for you myNewCollection1 and inserts a new element Then you can use that collection with the pymongo client

from pymongo import MongoClient
import os, configparser

file_path = 'mongodb.ini'
parser = configparser.ConfigParser()
parser.read(file_path)
c = parser._sections["MongoDB"]

mongoClient = MongoClient(c['ip'], int(c['port']),
                username=c['username'], password=c['password'],
                authSource=c['authsource'])
db_name = c["database"]
db = mongoClient[db_name]
db_collection = db['myNewCollection1']

db_collection.insert_many(tweets_batch)

severin_covid's People

Contributors

besuter avatar

Stargazers

Yann Vonlanthen avatar

Watchers

 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.