File: __init__.py

package info (click to toggle)
python-etelemetry 0.3.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 224 kB
  • sloc: python: 1,731; makefile: 8; sh: 8
file content (13 lines) | stat: -rw-r--r-- 233 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
hostname = "rig.mit.edu"
https = True

if https is True:
    prefix = "https"
else:
    prefix = "http"

ET_ROOT = "{prefix}://{hostname}/et/".format(
    prefix=prefix, hostname=hostname
)

ET_PROJECTS = ET_ROOT + "projects/{repo}"