-
Notifications
You must be signed in to change notification settings - Fork 25
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pymongo #17
base: master
Are you sure you want to change the base?
pymongo #17
Conversation
content/pymongo-George_Kihara.md
Outdated
I discovered pymongo when i was developing a small website for a project in school, and after discovering how simple it is, i've been using it for my small projects. | ||
After going through this tutorial, I'm hoping you will feel the same. | ||
|
||
<h2><b>Prerequisites</b></h2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This should be ##Prerequisites
(the markdown renders to a <H2>
). Also the <b>
is unnecessary
content/pymongo-George_Kihara.md
Outdated
``` python | ||
$ mongod | ||
``` | ||
<h2>Set up connection with Mongoclient</h2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
##Set up connection with Mongoclient
content/pymongo-George_Kihara.md
Outdated
``` | ||
|
||
Now that we are done with the necessary connections, lets get into the more interesting part: | ||
<h2> Creating a database</h2> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see above on using markdown headings. (should be ##Creating a database)
content/pymongo-George_Kihara.md
Outdated
about_author: <p>A software developer at Cysect Solution and loves Python. Check out <a href="https://georgekihara.github.io/">George Kihara</a> | ||
--- | ||
|
||
<img src="img/pymongo.jpeg" margin-left="30%" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
markdown => ![alt text](img/pymongo.jpeg)
content/pymongo-George_Kihara.md
Outdated
|
||
|
||
Thanks for going through my tutorial, I hope it will help you create better databases. | ||
<p>For more information, you can visit <a href="http://api.mongodb.com/python/current/tutorial.html">MONGODB</a></p> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need for <p>
. A newline before a block of text renders paragraph
The image you nuked ( |
--- | ||
Title: Pymongo in mongoDB | ||
Tags: pymongo, python, mongodb | ||
Date: 2017-09-22 15:10:00 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Timestamp this to the date of this PR
I have corrected the mistakes, please let me know if there are more changes i need to make. |
A blog on PyMongo