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
| from enaml.qt.application import QtApplication | |
| def test_something(): | |
| pass | |
| r""" | |
| [arc] C:\dev\code | |
| λ py.test test_enaml.py |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| import json | |
| import glob | |
| from os.path import join, basename | |
| # install this with "conda install -c conda-forge python-graphviz" | |
| import graphviz as gv | |
| # path to your conda environment | |
| path = '/tmp/foo' | |
| dg = gv.Digraph(filename='env-%s' % basename(path), format='svg') |
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
| # -*- coding: iso-8859-1 -*- | |
| """active_directory - a lightweight wrapper around COM support | |
| for Microsoft's Active Directory | |
| Active Directory is Microsoft's answer to LDAP, the industry-standard | |
| directory service holding information about users, computers and | |
| other resources in a tree structure, arranged by departments or | |
| geographical location, and optimized for searching. | |
| There are several ways of attaching to Active Directory. This |