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
# -*- coding: utf-8 -*- | |
from itertools import chain | |
import networkx as nx | |
class ProjX(object): | |
"""Prototype implementation of a query/schema | |
manipulation language for NetworkX.""" | |
def __init__(self, graph, type_attr='type'): |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
// ReportTemplate JSON | |
[ | |
[ | |
{ | |
"rowspan":"1", | |
"colspan":"1", | |
"id":"cell1", | |
"chartType":"line", | |
"displayQuery":"Query1", |
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
# -*- coding: utf-8 -*- | |
from django.db import models | |
from jsonfield import JSONField | |
from base.fields import AutoSlugField | |
from graphs.models import Graph | |
from operators.models import Query | |
class ReportTemplate(models.Model): |
NewerOlder