Skip to content
View econchick's full-sized avatar

Organizations

@pyladies @PyCon @newcoder-io
Block or Report

Block or report econchick

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. interrogate interrogate Public

    Explain yourself! Interrogate a codebase for docstring coverage.

    Python 543 45

  2. mayhem mayhem Public

    The Python asyncio tutorial I wish existed earlier

    Python 276 44

  3. new-coder new-coder Public

    New Coder tutorials

    CSS 597 395

  4. Python implementation of Dijkstra's ... Python implementation of Dijkstra's Algorithm
    1
    class Graph:
    2
      def __init__(self):
    3
        self.nodes = set()
    4
        self.edges = defaultdict(list)
    5
        self.distances = {}