Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
| from datetime import datetime | |
| import urllib.request | |
| import base64 | |
| import json | |
| import time | |
| import os | |
| webui_server_url = 'http://127.0.0.1:7860' | |
| out_dir = 'api_out' |
Maintainer: Keil Miller Jr
How to create and manage an AUR package.
The following link should be read:
| # -*- coding: utf-8 -*- | |
| """ rwlock.py | |
| A class to implement read-write locks on top of the standard threading | |
| library. | |
| This is implemented with two mutexes (threading.Lock instances) as per this | |
| wikipedia pseudocode: | |
| https://en.wikipedia.org/wiki/Readers%E2%80%93writer_lock#Using_two_mutexes |