Find another database that Python can connect to. Make sure no other student picked that database -you may want to post the name of the database you chose before you explore it to "reserve it". Describe one or two major differences you see between SQL Lite and your chosen database.
You Have to choose database other than these:
Databases already posted are: postgresql, MySQL, mssql server, Apache Cassandra, ms access, Google cloud sql
Python can also connect to MongoDB as shown below.
CODE
from pymongo import MongoClient
from random import randint
#Step 1: Connect to MongoDB - Note: Change connection string as
needed
client = MongoClient(port=27017)
db=client.business
#Step 2: Create sample data
names = ['Kitchen','Animal','State', 'Tastey', 'Big','City','Fish',
'Pizza','Goat', 'Salty','Sandwich','Lazy', 'Fun']
company_type = ['LLC','Inc','Company','Corporation']
company_cuisine = ['Pizza', 'Bar Food', 'Fast Food', 'Italian',
'Mexican', 'American', 'Sushi Bar', 'Vegetarian']
for x in range(1, 501):
business = {
'name' : names[randint(0, (len(names)-1))] + ' ' + names[randint(0,
(len(names)-1))] + ' ' + company_type[randint(0,
(len(company_type)-1))],
'rating' : randint(1, 5),
'cuisine' : company_cuisine[randint(0,
(len(company_cuisine)-1))]
}
#Step 3: Insert business object directly into MongoDB via
isnert_one
result=db.reviews.insert_one(business)
#Step 4: Print to the console the ObjectID of the new
document
print('Created {0} of 500 as
{1}'.format(x,result.inserted_id))
#Step 5: Tell us that you are done
print('finished creating 500 business reviews')

MongoDB is a NoSQL database whereas SQLLite is a relational database.
Find another database that Python can connect to. Make sure no other student picked that database...
Read this article. Then write a 250 word response on two of the programs you like the most. Open source business intelligence software 1. BIRT BIRT is an open source BI program that CloudTweaks says is often viewed as the industry standard. BIRT boasts “over 12 million downloads and over 2.5 million developers across 157 countries.” Its users include heavyweights such as Cisco, S1, and IBM (which is also a BIRT sponsor). They also have maturity going for them, as...