ISS position computing service
Project description
Requirements
aiohttp >= 2.1.0
aioredis >= 0.3.1
dateutils >= 0.6.6
pyaml >= 16.12.2
pyephem >= 3.7.6.0
tqdm >= 4.14.0
ujson >= 1.35
Extra
redis
Installing
pip install iss-positioner
Getting started
Start aiohttp application:
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import logging
import os
from aiohttp.web import run_app
from iss_positioner import ISSPositionerService, util, LOG_FORMAT
DIR = os.path.join(os.path.dirname(__file__))
CFG = util.load_cfg(path=os.path.join(DIR, 'iss-positioner.yml'))
if __name__ == '__main__':
logging.basicConfig(level=logging.DEBUG, format=LOG_FORMAT)
app = ISSPositionerService(config=CFG)
run_app(app, port=80)
More code examples into examples directory
Source code
The latest developer version is available in a github repository: https://github.com/nkoshell/iss-positioner
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
iss-positioner-0.0.1a0.tar.gz
(18.1 kB
view hashes)
Built Distribution
Close
Hashes for iss_positioner-0.0.1a0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 64faa66740e87d00f23d8a662ca5fedf99821746aa89f38aca3fcc4844336f37 |
|
MD5 | 942ff258c47d483dc0bb4e07df7fa492 |
|
BLAKE2b-256 | 92a0caaac6525b47136dc790963e9a3f35e6067317c0bafd6dbec285398a7f97 |