I hereby claim:
- I am ytvwld on github.
- I am ytvwld (https://keybase.io/ytvwld) on keybase.
- I have a public key whose fingerprint is 73DA AC8A 8F66 5966 2031 187F 8385 2BB8 5516 C1C7
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
unix:!android { | |
isEmpty(target.path) { | |
qnx { | |
target.path = /tmp/$${TARGET}/bin | |
} else { | |
target.path = /opt/$${TARGET}/bin | |
} | |
export(target.path) | |
} | |
INSTALLS += target |
#!/usr/bin/python3 | |
import requests | |
from json import JSONDecoder | |
import plotly | |
from datetime import datetime | |
from sys import argv | |
jsondec = JSONDecoder() | |
BASE_URL = "http://mete/api/v1/audits.json" | |
parameters = dict() | |
if "--user" in argv: |
This file isn't important. |
# Byte-compiled / optimized / DLL files | |
__pycache__/ | |
*.py[cod] | |
# plot.ly | |
*.html |
# https://docs.docker.com/get-started/part2/#define-a-container-with-a-dockerfile | |
# Use an official Python runtime as a parent image | |
FROM python:3-alpine | |
# Set the working directory to /app | |
WORKDIR /app | |
# Copy the current directory contents into the container at /app | |
ADD . /app |
.PHONY: tests | |
CFLAGS=-Wall -std=c99 | |
TESTCFLAGS:=$(shell pkg-config --cflags --libs check) | |
#FILE=<datei> | |
main: | |
make -B CFLAGS="$(CFLAGS) main.c" $(FILE) | |
run: main | |
./$(FILE) |
[[source]] | |
url = "https://pypi.org/simple" | |
verify_ssl = true | |
name = "pypi" | |
[packages] | |
mpris2 = "*" | |
paho-mqtt = "*" | |
dbus-python = "*" | |
pygobject = "*" |