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.
Files changed (44) hide show
  1. {fragment_python-0.1.1 → fragment_python-0.1.2}/PKG-INFO +2 -2
  2. {fragment_python-0.1.1 → fragment_python-0.1.2}/README.md +1 -1
  3. {fragment_python-0.1.1 → fragment_python-0.1.2}/pyproject.toml +1 -1
  4. {fragment_python-0.1.1 → fragment_python-0.1.2}/LICENSE +0 -0
  5. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/__init__.py +0 -0
  6. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/client/__init__.py +0 -0
  7. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/client/async_client.py +0 -0
  8. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/__init__.py +0 -0
  9. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/helpers.py +0 -0
  10. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/main.py +0 -0
  11. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/__init__.py +0 -0
  12. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/generate_client_method.py +0 -0
  13. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/codegen/plugins/get_file_comment.py +0 -0
  14. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/exceptions.py +0 -0
  15. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/logger.py +0 -0
  16. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/__init__.py +0 -0
  17. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/add_ledger_entry.py +0 -0
  18. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/add_ledger_entry_runtime.py +0 -0
  19. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/async_client.py +0 -0
  20. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/base_model.py +0 -0
  21. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/client.py +0 -0
  22. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/create_custom_link.py +0 -0
  23. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/create_ledger.py +0 -0
  24. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/enums.py +0 -0
  25. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger.py +0 -0
  26. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger_account_balance.py +0 -0
  27. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger_account_lines.py +0 -0
  28. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_ledger_entry.py +0 -0
  29. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_schema.py +0 -0
  30. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/get_workspace.py +0 -0
  31. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/input_types.py +0 -0
  32. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_account_balances.py +0 -0
  33. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_accounts.py +0 -0
  34. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_entries.py +0 -0
  35. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_ledger_entry_group_balances.py +0 -0
  36. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/list_multi_currency_ledger_account_balances.py +0 -0
  37. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/reconcile_tx.py +0 -0
  38. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/reconcile_tx_runtime.py +0 -0
  39. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/store_schema.py +0 -0
  40. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/sync_custom_accounts.py +0 -0
  41. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/sync_custom_txs.py +0 -0
  42. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/update_ledger.py +0 -0
  43. {fragment_python-0.1.1 → fragment_python-0.1.2}/fragment/sdk/update_ledger_entry.py +0 -0
  44. {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.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
@@ -5,7 +5,7 @@ target_package_name = "fragment_graphql_client"
5
5
 
6
6
  [tool.poetry]
7
7
  name = "fragment-python"
8
- version = "0.1.1"
8
+ version = "0.1.2"
9
9
  description = "Python SDK for https://fragment.dev/"
10
10
  authors = ["Fragment Foundries Inc"]
11
11
  license = "Apache 2.0"
File without changes