This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"""OOcsv: object view of CSV | |
~5 times faster than OODict | |
2013 Dmitry V. Selitsky [email protected] / dvska-at-skype | |
""" | |
from collections import namedtuple | |
def OOcsv(csv_file_obj, use_unicodecsv=False, **kwargs): | |
if use_unicodecsv: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Simple demonstration of how to implement Server-sent events (SSE) in Python | |
using Bottle micro web-framework. | |
SSE require asynchronous request handling, but it's tricky with WSGI. One way | |
to achieve that is to use gevent library as shown here. | |
Usage: just start the script and open http://localhost:8080/ in your browser. | |
Based on: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
EXAM DETAILS | |
Main MySQL Website: http://www.mysql.com/ | |
Certification Webpage: http://education.oracle.com/ | |
Exam Name: MySQL 5 Certified Associate Exam | |
Exam Number: 1Z0-870 | |
e | |
========================================================================================================= | |
EXAM TOPICS | |
Section 1: Theory, Terminology and Concepts (10%) | |
Client/Server Concepts |