lipu musi pona li musi tawa jan musi tu.
ona tu li wile jo e kiwen lili lon luka. nanpa pi kiwen lili li mute la musi ni li wile e tenpo mute.
sitelen li lon lipu selo wan:
| <html lang="en-US" prefix="og: http://ogp.me/ns#"> | |
| <head> | |
| <script type="text/javascript" | |
| src="https://bam.nr-data.net/1/122dc12de0?a=17724322,86577151&v=1071.385e752&to=YQFSN0RZDxZUUEBaClhLcQBCUQ4LGkNVVAA%3D&rst=1161&ref=https://www.westernjournal.com/consent/&ap=207&be=141&fe=1148&dc=402&af=err,xhr,stn,ins&perf=%7B%22timing%22:%7B%22of%22:1531994499391,%22n%22:0,%22u%22:82,%22r%22:7,%22ue%22:85,%22re%22:39,%22f%22:39,%22dn%22:39,%22dne%22:39,%22c%22:39,%22ce%22:39,%22rq%22:41,%22rp%22:72,%22rpe%22:86,%22dl%22:101,%22di%22:401,%22ds%22:402,%22de%22:402,%22dc%22:1148,%22l%22:1148,%22le%22:1158%7D,%22navigation%22:%7B%22rc%22:1%7D%7D&at=TUZRQQxDHBg%3D&jsonp=NREUM.setToken"></script> | |
| <script src="https://js-agent.newrelic.com/nr-1071.min.js"></script> | |
| <script type="text/javascript" id="www-widgetapi-script" | |
| src="https://s.ytimg.com/yts/jsbin/www-widgetapi-vflLq-1W7/www-widgetapi.js" async=""></script> | |
| <script src="https://sec |
| from sqlalchemy import Column, Integer, String, ForeignKey, create_engine | |
| from sqlalchemy.ext.declarative import declarative_base | |
| from sqlalchemy.orm import relationship, backref, sessionmaker, joinedload | |
| # For this example we will use an in-memory sqlite DB. | |
| # Let's also configure it to echo everything it does to the screen. | |
| engine = create_engine('sqlite:///:memory:', echo=True) | |
| # The base class which our objects will be defined on. | |
| Base = declarative_base() |
| { | |
| "graph": [], | |
| "links": [ | |
| {"source": 0, "target": 1}, | |
| {"source": 0, "target": 2}, | |
| {"source": 0, "target": 3}, | |
| {"source": 0, "target": 4}, | |
| {"source": 0, "target": 5}, | |
| {"source": 0, "target": 6}, | |
| {"source": 1, "target": 3}, |
| import cherrypy | |
| import sqlalchemy | |
| from sqlalchemy import Table, Column, ForeignKey, MetaData, Integer, String | |
| from sqlalchemy.orm import scoped_session, sessionmaker, mapper, relationship | |
| from sqlalchemy.orm.properties import ColumnProperty | |
| from sqlalchemy.orm.util import object_mapper | |
| # The base class from which all entities will extend | |
| class BaseEntity(object): | |
| def __repr__(self): |