Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to export data from mongodb python


import pymongo
 
client = pymongo.MongoClient("mongodb://localhost:27017/")
 
# Database Name
db = client["database"]
 
# Collection Name
col = db["YOUR_COLLECTION_NAME"]
 
#  Find All: It works like Select * query  of SQL. 
x = col.find()
 
for data in x:
    print(data)
Comment

PREVIOUS NEXT
Code Example
Python :: proper tree in data structure 
Python :: find python path cmd 
Python :: parse list from string 
Python :: how to address a column in a 2d array python 
Python :: Basic method of Converting List to Dataframe 
Python :: how to convert tuple to int in python 
Python :: creat and active python environment 
Python :: how to count number of unique values in a column python 
Python :: install matplotlib pip 
Python :: python execute command with variable 
Python :: how to draw in pygame 
Python :: pandas replace values with only whitespace to null 
Python :: reload function jupyter notebook 
Python :: norm complex numpy 
Python :: count items in list 
Python :: pandas get column names with nan 
Python :: python webdriver open with chrome extension 
Python :: get date and time formatted python 
Python :: scientific notation matplotlib python 
Python :: location of last row dataframe 
Python :: gnome-shell turn off 
Python :: change default python version 
Python :: get all h1 beautifulsoup 
Python :: combine dataframes 
Python :: how to write multi line lambda in python 
Python :: how to check if python is 32 or 64 bit 
Python :: word pattern python 
Python :: python limit float to 2 decimal places 
Python :: how to keep a webdriver tab open 
Python :: how to uninstall python idle on ubuntu 
ADD CONTENT
Topic
Content
Source link
Name
4+9 =