Developer/PythonFileTemplate
generated on 2017-12-19 09:15:31.763634 from the wiki page for Developer/PythonFileTemplate for SUMO 0.32.0
#!/usr/bin/env python # Leave this one out for non executable python files # -*- optional encoding line, use if non-ASCII characters are in the code -*- # Eclipse SUMO, Simulation of Urban MObility; see https://eclipse.org/sumo # Copyright (C) <YEAR OF CREATION>-<CURRENT YEAR> German Aerospace Center (DLR) and others. # This program and the accompanying materials # are made available under the terms of the Eclipse Public License v2.0 # which accompanies this distribution, and is available at # http://www.eclipse.org/legal/epl-v20.html # @file <FILENAME> # @author <AUTHOR'S NAME, ONE SEPARATE LINE FOR EACH AUTHOR> # @author <AUTHOR'S NAME 2> # @date <FILE CREATION DATE> # @version $Id: $ """ <A BRIEF DESCRIPTION OF THE FILE'S CONTENTS> <more documentation including examples> """ from __future__ import print_function from __future__ import absolute_import import os import sys import ... sys.path.append(os.path.join(os.environ["SUMO_HOME"], 'tools')) import sumolib # noqa
This page was last modified on 29 September 2017, at 10:07.