mirror of
https://github.com/aljazceru/nutshell.git
synced 2025-12-20 18:44:20 +01:00
remove psycopg2
This commit is contained in:
@@ -85,43 +85,44 @@ class Database(Compat):
|
|||||||
self.db_location_is_url = "://" in self.db_location
|
self.db_location_is_url = "://" in self.db_location
|
||||||
|
|
||||||
if self.db_location_is_url:
|
if self.db_location_is_url:
|
||||||
database_uri = self.db_location
|
raise Exception("Remote databases not supported. Use SQLite.")
|
||||||
|
# database_uri = self.db_location
|
||||||
|
|
||||||
if database_uri.startswith("cockroachdb://"):
|
# if database_uri.startswith("cockroachdb://"):
|
||||||
self.type = COCKROACH
|
# self.type = COCKROACH
|
||||||
else:
|
# else:
|
||||||
self.type = POSTGRES
|
# self.type = POSTGRES
|
||||||
|
|
||||||
import psycopg2 # type: ignore
|
# import psycopg2 # type: ignore
|
||||||
|
|
||||||
def _parse_timestamp(value, _):
|
# def _parse_timestamp(value, _):
|
||||||
f = "%Y-%m-%d %H:%M:%S.%f"
|
# f = "%Y-%m-%d %H:%M:%S.%f"
|
||||||
if not "." in value:
|
# if not "." in value:
|
||||||
f = "%Y-%m-%d %H:%M:%S"
|
# f = "%Y-%m-%d %H:%M:%S"
|
||||||
return time.mktime(datetime.datetime.strptime(value, f).timetuple())
|
# return time.mktime(datetime.datetime.strptime(value, f).timetuple())
|
||||||
|
|
||||||
psycopg2.extensions.register_type(
|
# psycopg2.extensions.register_type(
|
||||||
psycopg2.extensions.new_type(
|
# psycopg2.extensions.new_type(
|
||||||
psycopg2.extensions.DECIMAL.values,
|
# psycopg2.extensions.DECIMAL.values,
|
||||||
"DEC2FLOAT",
|
# "DEC2FLOAT",
|
||||||
lambda value, curs: float(value) if value is not None else None,
|
# lambda value, curs: float(value) if value is not None else None,
|
||||||
)
|
# )
|
||||||
)
|
# )
|
||||||
psycopg2.extensions.register_type(
|
# psycopg2.extensions.register_type(
|
||||||
psycopg2.extensions.new_type(
|
# psycopg2.extensions.new_type(
|
||||||
(1082, 1083, 1266),
|
# (1082, 1083, 1266),
|
||||||
"DATE2INT",
|
# "DATE2INT",
|
||||||
lambda value, curs: time.mktime(value.timetuple())
|
# lambda value, curs: time.mktime(value.timetuple())
|
||||||
if value is not None
|
# if value is not None
|
||||||
else None,
|
# else None,
|
||||||
)
|
# )
|
||||||
)
|
# )
|
||||||
|
|
||||||
psycopg2.extensions.register_type(
|
# psycopg2.extensions.register_type(
|
||||||
psycopg2.extensions.new_type(
|
# psycopg2.extensions.new_type(
|
||||||
(1184, 1114), "TIMESTAMP2INT", _parse_timestamp
|
# (1184, 1114), "TIMESTAMP2INT", _parse_timestamp
|
||||||
)
|
# )
|
||||||
)
|
# )
|
||||||
else:
|
else:
|
||||||
if not os.path.exists(self.db_location):
|
if not os.path.exists(self.db_location):
|
||||||
print(f"Creating database directory: {self.db_location}")
|
print(f"Creating database directory: {self.db_location}")
|
||||||
|
|||||||
@@ -101,7 +101,7 @@ async def balance(ctx):
|
|||||||
|
|
||||||
@cli.command("send", help="Send coins.")
|
@cli.command("send", help="Send coins.")
|
||||||
@click.argument("amount", type=int)
|
@click.argument("amount", type=int)
|
||||||
@click.option("--lock", "-l", default=None, help="Coin lock (P2SH address).", type=str)
|
@click.option("--lock", "-l", default=None, help="Lock coins (P2SH).", type=str)
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
@coro
|
@coro
|
||||||
async def send(ctx, amount: int, lock: str):
|
async def send(ctx, amount: int, lock: str):
|
||||||
@@ -125,7 +125,7 @@ async def send(ctx, amount: int, lock: str):
|
|||||||
|
|
||||||
@cli.command("receive", help="Receive coins.")
|
@cli.command("receive", help="Receive coins.")
|
||||||
@click.argument("coin", type=str)
|
@click.argument("coin", type=str)
|
||||||
@click.option("--unlock", "-u", default=None, help="Unlock script.", type=str)
|
@click.option("--unlock", "-u", default=None, help="Unlock coins.", type=str)
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
@coro
|
@coro
|
||||||
async def receive(ctx, coin: str, unlock: str):
|
async def receive(ctx, coin: str, unlock: str):
|
||||||
@@ -230,10 +230,10 @@ async def pay(ctx, invoice: str):
|
|||||||
wallet.status()
|
wallet.status()
|
||||||
|
|
||||||
|
|
||||||
@cli.command("address", help="Generate receiving address.")
|
@cli.command("lock", help="Generate receiving lock.")
|
||||||
@click.pass_context
|
@click.pass_context
|
||||||
@coro
|
@coro
|
||||||
async def address(ctx):
|
async def lock(ctx):
|
||||||
alice_privkey = step0_carol_privkey()
|
alice_privkey = step0_carol_privkey()
|
||||||
txin_redeemScript = step0_carol_checksig_redeemscrip(alice_privkey.pub)
|
txin_redeemScript = step0_carol_checksig_redeemscrip(alice_privkey.pub)
|
||||||
txin_p2sh_address = step1_carol_create_p2sh_address(txin_redeemScript)
|
txin_p2sh_address = step1_carol_create_p2sh_address(txin_redeemScript)
|
||||||
@@ -241,10 +241,10 @@ async def address(ctx):
|
|||||||
print("---- Pay to script hash (P2SH) ----\n")
|
print("---- Pay to script hash (P2SH) ----\n")
|
||||||
print("Use a lock to receive coins that only you can unlock.")
|
print("Use a lock to receive coins that only you can unlock.")
|
||||||
print("")
|
print("")
|
||||||
print(f"Public receiving address: P2SH:{txin_p2sh_address}")
|
print(f"Public receiving lock: P2SH:{txin_p2sh_address}")
|
||||||
print("")
|
print("")
|
||||||
print(
|
print(
|
||||||
f"To send to this address:\n\ncashu send <amount> --lock P2SH:{txin_p2sh_address}"
|
f"Send coins to this lock:\n\ncashu send <amount> --lock P2SH:{txin_p2sh_address}"
|
||||||
)
|
)
|
||||||
print("")
|
print("")
|
||||||
|
|
||||||
@@ -255,7 +255,7 @@ async def address(ctx):
|
|||||||
"!!! The command below is private. Do not share. You have to remember it. Do not lose. !!!\n"
|
"!!! The command below is private. Do not share. You have to remember it. Do not lose. !!!\n"
|
||||||
)
|
)
|
||||||
print(
|
print(
|
||||||
f"To receive:\n\ncashu receive <coin> --unlock {txin_redeemScript_b64}:{txin_signature_b64}\n"
|
f"Receive coins from this lock:\n\ncashu receive <coin> --unlock {txin_redeemScript_b64}:{txin_signature_b64}\n"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -79,3 +79,22 @@ async def m003_add_proofs_sendid_and_timestamps(db):
|
|||||||
await db.execute("ALTER TABLE proofs ADD COLUMN time_created TIMESTAMP")
|
await db.execute("ALTER TABLE proofs ADD COLUMN time_created TIMESTAMP")
|
||||||
await db.execute("ALTER TABLE proofs ADD COLUMN time_reserved TIMESTAMP")
|
await db.execute("ALTER TABLE proofs ADD COLUMN time_reserved TIMESTAMP")
|
||||||
await db.execute("ALTER TABLE proofs_used ADD COLUMN time_used TIMESTAMP")
|
await db.execute("ALTER TABLE proofs_used ADD COLUMN time_used TIMESTAMP")
|
||||||
|
|
||||||
|
|
||||||
|
async def m004_p2sh_locks(db: Database):
|
||||||
|
"""
|
||||||
|
Stores P2SH addresses and unlock scripts.
|
||||||
|
"""
|
||||||
|
await db.execute(
|
||||||
|
"""
|
||||||
|
CREATE TABLE IF NOT EXISTS p2sh (
|
||||||
|
address TEXT NOT NULL,
|
||||||
|
script TEXT NOT NULL,
|
||||||
|
signature TEXT NOT NULL,
|
||||||
|
used BOOL NOT NULL,
|
||||||
|
|
||||||
|
UNIQUE (address, script, signature)
|
||||||
|
|
||||||
|
);
|
||||||
|
"""
|
||||||
|
)
|
||||||
|
|||||||
@@ -194,6 +194,9 @@ class LedgerAPI:
|
|||||||
|
|
||||||
return fst_proofs, snd_proofs
|
return fst_proofs, snd_proofs
|
||||||
|
|
||||||
|
async def create_p2sh_lock(self, secrets: List[str]):
|
||||||
|
return None
|
||||||
|
|
||||||
async def check_spendable(self, proofs: List[Proof]):
|
async def check_spendable(self, proofs: List[Proof]):
|
||||||
payload = CheckPayload(proofs=proofs)
|
payload = CheckPayload(proofs=proofs)
|
||||||
return_dict = requests.post(
|
return_dict = requests.post(
|
||||||
|
|||||||
68
poetry.lock
generated
68
poetry.lock
generated
@@ -344,14 +344,6 @@ importlib-metadata = {version = ">=0.12", markers = "python_version < \"3.8\""}
|
|||||||
dev = ["pre-commit", "tox"]
|
dev = ["pre-commit", "tox"]
|
||||||
testing = ["pytest", "pytest-benchmark"]
|
testing = ["pytest", "pytest-benchmark"]
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "psycopg2-binary"
|
|
||||||
version = "2.9.3"
|
|
||||||
description = "psycopg2 - Python-PostgreSQL Database Adapter"
|
|
||||||
category = "main"
|
|
||||||
optional = false
|
|
||||||
python-versions = ">=3.6"
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "py"
|
name = "py"
|
||||||
version = "1.11.0"
|
version = "1.11.0"
|
||||||
@@ -640,7 +632,7 @@ testing = ["func-timeout", "jaraco.itertools", "pytest (>=6)", "pytest-black (>=
|
|||||||
[metadata]
|
[metadata]
|
||||||
lock-version = "1.1"
|
lock-version = "1.1"
|
||||||
python-versions = "^3.7"
|
python-versions = "^3.7"
|
||||||
content-hash = "be65b895cb013a28ac6a6b2aacc131d140d6eafcd071aa021dbf2d2fbe311802"
|
content-hash = "b4e980ee90226bab07750b1becc8c69df7752f6d168d200a79c782aa1efe61da"
|
||||||
|
|
||||||
[metadata.files]
|
[metadata.files]
|
||||||
anyio = [
|
anyio = [
|
||||||
@@ -856,64 +848,6 @@ pluggy = [
|
|||||||
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
|
{file = "pluggy-1.0.0-py2.py3-none-any.whl", hash = "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"},
|
||||||
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
|
{file = "pluggy-1.0.0.tar.gz", hash = "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159"},
|
||||||
]
|
]
|
||||||
psycopg2-binary = [
|
|
||||||
{file = "psycopg2-binary-2.9.3.tar.gz", hash = "sha256:761df5313dc15da1502b21453642d7599d26be88bff659382f8f9747c7ebea4e"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:539b28661b71da7c0e428692438efbcd048ca21ea81af618d845e06ebfd29478"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e82d38390a03da28c7985b394ec3f56873174e2c88130e6966cb1c946508e65"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:57804fc02ca3ce0dbfbef35c4b3a4a774da66d66ea20f4bda601294ad2ea6092"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-manylinux_2_24_aarch64.whl", hash = "sha256:083a55275f09a62b8ca4902dd11f4b33075b743cf0d360419e2051a8a5d5ff76"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-manylinux_2_24_ppc64le.whl", hash = "sha256:0a29729145aaaf1ad8bafe663131890e2111f13416b60e460dae0a96af5905c9"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:3a79d622f5206d695d7824cbf609a4f5b88ea6d6dab5f7c147fc6d333a8787e4"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:090f3348c0ab2cceb6dfbe6bf721ef61262ddf518cd6cc6ecc7d334996d64efa"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a9e1f75f96ea388fbcef36c70640c4efbe4650658f3d6a2967b4cc70e907352e"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c3ae8e75eb7160851e59adc77b3a19a976e50622e44fd4fd47b8b18208189d42"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-win32.whl", hash = "sha256:7b1e9b80afca7b7a386ef087db614faebbf8839b7f4db5eb107d0f1a53225029"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp310-cp310-win_amd64.whl", hash = "sha256:8b344adbb9a862de0c635f4f0425b7958bf5a4b927c8594e6e8d261775796d53"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:e847774f8ffd5b398a75bc1c18fbb56564cda3d629fe68fd81971fece2d3c67e"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:68641a34023d306be959101b345732360fc2ea4938982309b786f7be1b43a4a1"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3303f8807f342641851578ee7ed1f3efc9802d00a6f83c101d21c608cb864460"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-manylinux_2_24_aarch64.whl", hash = "sha256:e3699852e22aa68c10de06524a3721ade969abf382da95884e6a10ff798f9281"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-manylinux_2_24_ppc64le.whl", hash = "sha256:526ea0378246d9b080148f2d6681229f4b5964543c170dd10bf4faaab6e0d27f"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:b1c8068513f5b158cf7e29c43a77eb34b407db29aca749d3eb9293ee0d3103ca"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:15803fa813ea05bef089fa78835118b5434204f3a17cb9f1e5dbfd0b9deea5af"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:152f09f57417b831418304c7f30d727dc83a12761627bb826951692cc6491e57"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:404224e5fef3b193f892abdbf8961ce20e0b6642886cfe1fe1923f41aaa75c9d"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-win32.whl", hash = "sha256:1f6b813106a3abdf7b03640d36e24669234120c72e91d5cbaeb87c5f7c36c65b"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp36-cp36m-win_amd64.whl", hash = "sha256:2d872e3c9d5d075a2e104540965a1cf898b52274a5923936e5bfddb58c59c7c2"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:10bb90fb4d523a2aa67773d4ff2b833ec00857f5912bafcfd5f5414e45280fb1"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:874a52ecab70af13e899f7847b3e074eeb16ebac5615665db33bce8a1009cf33"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a29b3ca4ec9defec6d42bf5feb36bb5817ba3c0230dd83b4edf4bf02684cd0ae"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-manylinux_2_24_aarch64.whl", hash = "sha256:12b11322ea00ad8db8c46f18b7dfc47ae215e4df55b46c67a94b4effbaec7094"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-manylinux_2_24_ppc64le.whl", hash = "sha256:53293533fcbb94c202b7c800a12c873cfe24599656b341f56e71dd2b557be063"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:c381bda330ddf2fccbafab789d83ebc6c53db126e4383e73794c74eedce855ef"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:9d29409b625a143649d03d0fd7b57e4b92e0ecad9726ba682244b73be91d2fdb"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:183a517a3a63503f70f808b58bfbf962f23d73b6dccddae5aa56152ef2bcb232"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:15c4e4cfa45f5a60599d9cec5f46cd7b1b29d86a6390ec23e8eebaae84e64554"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-win32.whl", hash = "sha256:adf20d9a67e0b6393eac162eb81fb10bc9130a80540f4df7e7355c2dd4af9fba"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp37-cp37m-win_amd64.whl", hash = "sha256:2f9ffd643bc7349eeb664eba8864d9e01f057880f510e4681ba40a6532f93c71"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:def68d7c21984b0f8218e8a15d514f714d96904265164f75f8d3a70f9c295667"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dffc08ca91c9ac09008870c9eb77b00a46b3378719584059c034b8945e26b272"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:280b0bb5cbfe8039205c7981cceb006156a675362a00fe29b16fbc264e242834"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-manylinux_2_24_aarch64.whl", hash = "sha256:af9813db73395fb1fc211bac696faea4ca9ef53f32dc0cfa27e4e7cf766dcf24"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-manylinux_2_24_ppc64le.whl", hash = "sha256:63638d875be8c2784cfc952c9ac34e2b50e43f9f0a0660b65e2a87d656b3116c"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:ffb7a888a047696e7f8240d649b43fb3644f14f0ee229077e7f6b9f9081635bd"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0c9d5450c566c80c396b7402895c4369a410cab5a82707b11aee1e624da7d004"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:d1c1b569ecafe3a69380a94e6ae09a4789bbb23666f3d3a08d06bbd2451f5ef1"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8fc53f9af09426a61db9ba357865c77f26076d48669f2e1bb24d85a22fb52307"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-win32.whl", hash = "sha256:6472a178e291b59e7f16ab49ec8b4f3bdada0a879c68d3817ff0963e722a82ce"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp38-cp38-win_amd64.whl", hash = "sha256:35168209c9d51b145e459e05c31a9eaeffa9a6b0fd61689b48e07464ffd1a83e"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-macosx_10_14_x86_64.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl", hash = "sha256:47133f3f872faf28c1e87d4357220e809dfd3fa7c64295a4a148bcd1e6e34ec9"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:91920527dea30175cc02a1099f331aa8c1ba39bf8b7762b7b56cbf54bc5cce42"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:887dd9aac71765ac0d0bac1d0d4b4f2c99d5f5c1382d8b770404f0f3d0ce8a39"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-manylinux_2_24_aarch64.whl", hash = "sha256:1f14c8b0942714eb3c74e1e71700cbbcb415acbc311c730370e70c578a44a25c"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-manylinux_2_24_ppc64le.whl", hash = "sha256:7af0dd86ddb2f8af5da57a976d27cd2cd15510518d582b478fbb2292428710b4"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:93cd1967a18aa0edd4b95b1dfd554cf15af657cb606280996d393dadc88c3c35"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bda845b664bb6c91446ca9609fc69f7db6c334ec5e4adc87571c34e4f47b7ddb"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:01310cf4cf26db9aea5158c217caa92d291f0500051a6469ac52166e1a16f5b7"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:99485cab9ba0fa9b84f1f9e1fef106f44a46ef6afdeec8885e0b88d0772b49e8"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-win32.whl", hash = "sha256:46f0e0a6b5fa5851bbd9ab1bc805eef362d3a230fbdfbc209f4a236d0a7a990d"},
|
|
||||||
{file = "psycopg2_binary-2.9.3-cp39-cp39-win_amd64.whl", hash = "sha256:accfe7e982411da3178ec690baaceaad3c278652998b2c45828aaac66cd8285f"},
|
|
||||||
]
|
|
||||||
py = [
|
py = [
|
||||||
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
|
{file = "py-1.11.0-py2.py3-none-any.whl", hash = "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"},
|
||||||
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
|
{file = "py-1.11.0.tar.gz", hash = "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719"},
|
||||||
|
|||||||
@@ -13,7 +13,6 @@ SQLAlchemy = "1.3.24"
|
|||||||
click = "8.0.4"
|
click = "8.0.4"
|
||||||
pydantic = "^1.10.2"
|
pydantic = "^1.10.2"
|
||||||
bech32 = "^1.2.0"
|
bech32 = "^1.2.0"
|
||||||
psycopg2-binary = "^2.9.3"
|
|
||||||
fastapi = "^0.83.0"
|
fastapi = "^0.83.0"
|
||||||
environs = "^9.5.0"
|
environs = "^9.5.0"
|
||||||
uvicorn = "^0.18.3"
|
uvicorn = "^0.18.3"
|
||||||
|
|||||||
@@ -19,7 +19,6 @@ marshmallow==3.18.0 ; python_version >= "3.7" and python_version < "4.0"
|
|||||||
outcome==1.2.0 ; python_version >= "3.7" and python_version < "4.0"
|
outcome==1.2.0 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
packaging==21.3 ; python_version >= "3.7" and python_version < "4.0"
|
packaging==21.3 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
pluggy==1.0.0 ; python_version >= "3.7" and python_version < "4.0"
|
pluggy==1.0.0 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
psycopg2-binary==2.9.3 ; python_version >= "3.7" and python_version < "4.0"
|
|
||||||
py==1.11.0 ; python_version >= "3.7" and python_version < "4.0"
|
py==1.11.0 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
pycparser==2.21 ; python_version >= "3.7" and python_version < "4.0"
|
pycparser==2.21 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
pydantic==1.10.2 ; python_version >= "3.7" and python_version < "4.0"
|
pydantic==1.10.2 ; python_version >= "3.7" and python_version < "4.0"
|
||||||
|
|||||||
Reference in New Issue
Block a user