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
#!/bin/python3 | |
""" | |
Download and setup missing Python versions using eGenix PyRun | |
https://github.com/eGenix/egenix-pyrun | |
""" | |
import dataclasses | |
import json | |
import shutil |
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
#!/bin/bash | |
set -x | |
# Crate a virtual environment: | |
python3 -m venv .venv | |
# Update pip: | |
.venv/bin/pip install -U pip |
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
#!/bin/bash | |
set -x | |
# Crate a virtual environment: | |
python3 -m venv .venv | |
# Update pip: | |
.venv/bin/pip install -U pip |
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
# https://docs.vagrantup.com | |
# https://github.com/YunoHost/package_check | |
Vagrant.configure("2") do |config| | |
# https://app.vagrantup.com/ubuntu/boxes/focal64 | |
config.vm.box = "ubuntu/focal64" | |
config.vm.provider "virtualbox" do |vb| |
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 asyncio | |
import random | |
import ssl | |
from asyncio import StreamReader, StreamWriter | |
from pathlib import Path | |
from OpenSSL import crypto | |
BASE_PATH = Path(__file__).parent |
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
... | |
Collecting xlwt==1.3.0 | |
Downloading https://www.piwheels.org/simple/xlwt/xlwt-1.3.0-py2.py3-none-any.whl (99 kB) | |
|████████████████████████████████| 99 kB 1.8 MB/s | |
Requirement already satisfied: setuptools in ./local_test/venv/lib/python3.7/site-packages (from django-axes==5.27.0->-r ./conf/requirements.txt (line 37)) (40.8.0) | |
Collecting tablib[html,ods,xls,xlsx,yaml]>=3.0.0 | |
ERROR: In --require-hashes mode, all requirements must have their versions pinned with ==. These do not: | |
tablib[html,ods,xls,xlsx,yaml]>=3.0.0 from https://www.piwheels.org/simple/tablib/tablib-3.1.0-py3-none-any.whl#sha256=41f3950bb717a7beb857ffe1ed8c18a2ea7dbb8549400446c48ff3533327d407 (from django-import-export==2.6.1->-r ./conf/requirements.txt (line 48)) | |
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
#!/bin/bash | |
set -ex | |
cd /tmp | |
wget --timestamp https://www.zoom.us/client/latest/zoom_amd64.deb | |
sudo dpkg -i zoom_amd64.deb |
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 cProfile | |
import pstats | |
import time | |
from collections import OrderedDict, namedtuple | |
import django | |
import rest_framework | |
from django.conf import settings | |
from django.test import RequestFactory | |
from rest_framework.response import Response |
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 asyncio | |
import cProfile | |
import pstats | |
import time | |
from collections import OrderedDict, namedtuple | |
from tartiflette import Resolver, create_engine | |
Entry = namedtuple('Entry', 'id name') |
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 cProfile | |
import pstats | |
import statistics | |
import time | |
import timeit | |
from collections import OrderedDict, namedtuple | |
import graphql | |
from graphql.graphql import execute_graphql | |
from graphql.type import ( |
NewerOlder