Cookies help us deliver our services. By using our services, you agree to our use of cookies. More information

Difference between revisions of "Main Page"

From NoSQLZoo
Jump to: navigation, search
Line 1: Line 1:
 +
Learn NoSQL using: MongoDB, PyMongo, and Python3.4
  
==Run Node.js Programs from your browser==
+
==Tutorials: Learn NoSQL in stages==
<div class=q data-lang="js">
+
; [[FIND basics|0 FIND basics]]:Some examples of common queries.
Click the go button
+
; [[FIND names|1 FIND names]]:Some pattern matching queries.
<pre class=def>console.log("Hello");
+
; [[AGGREGATE basics|2 AGGREGATE basics]]:Examples of the aggregation framework.
</pre>
+
; [[AGGREGATE world|3 AGGREGATE world]]:In which we query the world collection and make use of aggregate functions.
<div class=ans>
+
==Reference: How to...==
console.log("Hello World");
+
Coming Soon.
</div>
+
==MongoDB resources==
</div>
+
;Manuals: [http://docs.mongodb.org/manual/ MongoDB Documentaion][http://api.mongodb.org/python/current/ PyMongo API Documentation] [https://github.com/mongodb/docs MongoDB Documentation GitHub]
==Run Python Programs from your browser==
+
Online copies of user manuals.
<div class=q data-lang="py">
 
Click the go button
 
<pre class=def>print "Hello"
 
</pre>
 
<div class=ans>
 
print ("Hello world")
 
</div>
 
</div>
 
 
 
[[TODO]]
 

Revision as of 16:42, 17 July 2015

Learn NoSQL using: MongoDB, PyMongo, and Python3.4

Tutorials: Learn NoSQL in stages

0 FIND basics
Some examples of common queries.
1 FIND names
Some pattern matching queries.
2 AGGREGATE basics
Examples of the aggregation framework.
3 AGGREGATE world
In which we query the world collection and make use of aggregate functions.

Reference: How to...

Coming Soon.

MongoDB resources

Manuals
MongoDB DocumentaionPyMongo API Documentation MongoDB Documentation GitHub

Online copies of user manuals.