fragment-python 0.1.1__tar.gz → 0.1.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {fragment_python-0.1.1 → fragment_python-0.1.2}/PKG-INFO +2 -2
- {fragment_python-0.1.1 → fragment_python-0.1.2}/README.md +1 -1
- {fragment_python-0.1.1 → fragment_python-0.1.2}/pyproject.toml +1 -1
- {fragment_python-0.1.1 → fragment_python-0.1.2}/LICENSE +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/__init__.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/client/__init__.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/client/async_client.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/__init__.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/helpers.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/main.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/__init__.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/generate_client_method.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/get_file_comment.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/exceptions.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/logger.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/__init__.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/add_ledger_entry.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/add_ledger_entry_runtime.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/async_client.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/base_model.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/client.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/create_custom_link.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/create_ledger.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/enums.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger_account_balance.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger_account_lines.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger_entry.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_schema.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_workspace.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/input_types.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_account_balances.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_accounts.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_entries.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_entry_group_balances.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_multi_currency_ledger_account_balances.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/reconcile_tx.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/reconcile_tx_runtime.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/store_schema.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/sync_custom_accounts.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/sync_custom_txs.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/update_ledger.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/update_ledger_entry.py +0 -0
- {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/std_queries/queries.graphql +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fragment-python
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.2
|
|
4
4
|
Summary: Python SDK for https://fragment.dev/
|
|
5
5
|
License: Apache 2.0
|
|
6
6
|
Author: Fragment Foundries Inc
|
|
@@ -132,7 +132,7 @@ graphql_client = Client(
|
|
|
132
132
|
|
|
133
133
|
async def print_schema_name():
|
|
134
134
|
# Note that getSchemaName is converted to snake_case automatically
|
|
135
|
-
response = await graphql_client.get_schema_name()
|
|
135
|
+
response = await graphql_client.get_schema_name("<Your Schema Key>")
|
|
136
136
|
print(response.schema_.key)
|
|
137
137
|
|
|
138
138
|
import asyncio
|
|
@@ -111,7 +111,7 @@ graphql_client = Client(
|
|
|
111
111
|
|
|
112
112
|
async def print_schema_name():
|
|
113
113
|
# Note that getSchemaName is converted to snake_case automatically
|
|
114
|
-
response = await graphql_client.get_schema_name()
|
|
114
|
+
response = await graphql_client.get_schema_name("<Your Schema Key>")
|
|
115
115
|
print(response.schema_.key)
|
|
116
116
|
|
|
117
117
|
import asyncio
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/generate_client_method.py
RENAMED
|
File without changes
|
{fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/get_file_comment.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_account_balances.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_entry_group_balances.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|