Skip to content

Instantly share code, notes, and snippets.

View ismaild's full-sized avatar
🥊
Building Things...

Ismail Dhorat ismaild

🥊
Building Things...
View GitHub Profile
--- Event Type
|----Metric
|---- Graph Hourly
For example:
--- VO EVENT
|---- Value Graph
|----- Hourly trend + previous 3 days
|---- Events Graph
@ismaild
ismaild / virtualenv_bootstrap.py
Created October 26, 2010 23:45
Include this in your call to create a virtualenv bootstrap script.
import glob
def get_ordered_files(path):
f = []
for ifile in glob.glob( os.path.join(path,"requirements", '*.txt') ):
if ifile.find("local")>-1:
f.append((0,ifile))
elif ifile.find("required")>-1: