This file has been truncated, but you can view the full file.
This file contains 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
<neuroml xmlns="http://www.neuroml.org/schema/neuroml2" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.neuroml.org/schema/neuroml2 https://raw.github.com/NeuroML/NeuroML2/development/Schemas/NeuroML2/NeuroML_v2beta2.xsd" id="CElegansConnectome"> | |
<network id="CElegansConnectome"> | |
<population id="PVPL" component="PVPL" size="1"> | |
<instance id="0"> | |
<location y="0." x="0." z="0."/> | |
</instance> | |
</population> | |
<population id="AVFR" component="AVFR" size="1"> | |
<instance id="0"> | |
<location y="0." x="0." z="0."/> |
This file contains 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 sqlite3 | |
import time | |
import sys | |
from os import environ | |
try: | |
sys.setappdefaultencoding('utf-8') | |
except: | |
sys = reload(sys) | |
sys.setdefaultencoding('utf-8') |
NewerOlder