Skip to content

Instantly share code, notes, and snippets.

@gnzsnz
gnzsnz / coding_standard.py
Created September 17, 2024 20:00 — forked from nateGeorge/coding_standard.py
coding standards, originally from enthought
# taken from here: http://web.archive.org/web/20110527163743/https://svn.enthought.com/enthought/browser/sandbox/docs/coding_standard.py
""" This module is an example of the Enthought Python coding standards.
It was adapted from the Python Enhancement Proposal 8 (aka PEP 8) titled
'Style Guide for Python Code' (http://www.python.org/peps/pep-0008.html).
The first item in a module must be a documentation string (docstring). The
first line of the docstring should be a one line summary. If a more
detailed description is required, put an empty line before it.
@gnzsnz
gnzsnz / ib_async.py
Last active July 29, 2024 09:06 — forked from Macfly/Main.py
Async server with socketio and Ib_insync
import math
import asyncio
import logging, sys
import sqlite3
from asyncio import sleep
from logging.handlers import TimedRotatingFileHandler
import aiohttp_cors
import aiosqlite
import socketio
@gnzsnz
gnzsnz / list.md
Created November 28, 2023 23:23 — forked from ih2502mk/list.md
Quantopian Lectures Saved