Dialectical CES
Project description
neondroplets
Auto-generated OpenAPI spec for CES SDK generation. Build: 202605241552
This Python package is automatically generated by the OpenAPI Generator project:
- API version: 1.0.6+build.202605241552
- Package version: 1.0.6
- Generator version: 7.23.0-SNAPSHOT
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
Requirements.
Python 3.10+
Installation & Usage
pip install
If the python package is hosted on a repository, you can install directly using:
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
(you may need to run pip with root permission: sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git)
Then import the package:
import neondroplets
Setuptools
Install via Setuptools.
python setup.py install --user
(or sudo python setup.py install to install the package for all users)
Then import the package:
import neondroplets
Tests
Execute pytest to run the tests.
Getting Started
Please follow the installation procedure and then run the following:
import neondroplets
from neondroplets.rest import ApiException
from pprint import pprint
# Defining the host is optional and defaults to http://localhost
# See configuration.py for a list of all supported configuration parameters.
configuration = neondroplets.Configuration(
host = "http://localhost"
)
# Enter a context with an instance of the API client
with neondroplets.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = neondroplets.AGUIApi(api_client)
event_batch = neondroplets.EventBatch() # EventBatch |
try:
# Handle Events
api_response = api_instance.handle_events(event_batch)
print("The response of AGUIApi->handle_events:\n")
pprint(api_response)
except ApiException as e:
print("Exception when calling AGUIApi->handle_events: %s\n" % e)
Authentication & Security
The NeonDroplets API Gateway strictly enforces Multi-Tenant identity spoofing protections.
You MUST use the Authenticator class to obtain a Keycloak JWT and inject it into your requests.
Attempting to manually set X-Organization-ID or X-User-ID without an Authenticator will result in a 403 Forbidden error because the API Gateway will strip unauthorized headers.
import neondroplets
from neondroplets.authenticator import Authenticator
auth = Authenticator(
client_id="YOUR_CLIENT_ID",
client_secret="YOUR_CLIENT_SECRET",
org_id="YOUR_ORG_ID",
user_id="YOUR_USER_ID",
project_id="YOUR_PROJECT_ID",
iam_url="https://deviam.neondroplets.com",
realm="CESRealm"
)
configuration = neondroplets.Configuration(host="https://devapi.neondroplets.com/api/v1/ces")
with neondroplets.ApiClient(configuration, authenticator=auth) as api_client:
# Now you can securely call project-scoped APIs
apps_api = neondroplets.ApplicationsApi(api_client)
apps = apps_api.list_applications(project_id="YOUR_PROJECT_ID")
Documentation for API Endpoints
All URIs are relative to http://localhost
| Class | Method | HTTP request | Description |
|---|---|---|---|
| AGUIApi | handle_events | POST /api/v1/ag-ui/events | Handle Events |
| AgentsApi | agent_execute | POST /api/v1/agents/{agent_id}/execute | Agent Execute |
| AgentsApi | agents_get_agent_card | GET /api/v1/.well-known/agents/{agent_id}/card.json | Get Agent Card |
| AgentsApi | clone_template | POST /api/v1/agents/{agent_id}/prompts/clone | Clone Template |
| AgentsApi | create_agent | POST /api/v1/agents | Create Agent |
| AgentsApi | create_agent_prompt | POST /api/v1/agents/{agent_id}/prompts | Create Agent Prompt |
| AgentsApi | create_eval_case | POST /api/v1/agents/eval/datasets/{dataset_id}/cases | Create Eval Case |
| AgentsApi | create_eval_dataset | POST /api/v1/agents/eval/datasets | Create Eval Dataset |
| AgentsApi | create_knowledge_base | POST /api/v1/knowledge-bases | Create Knowledge Base |
| AgentsApi | create_semantic_model | POST /api/v1/semantic-models | Create Semantic Model |
| AgentsApi | delete_agent | DELETE /api/v1/agents/{agent_id} | Delete Agent |
| AgentsApi | delete_eval_case | DELETE /api/v1/agents/eval/datasets/{dataset_id}/cases/{case_id} | Delete Eval Case |
| AgentsApi | delete_eval_dataset | DELETE /api/v1/agents/eval/datasets/{dataset_id} | Delete Eval Dataset |
| AgentsApi | delete_eval_run | DELETE /api/v1/agents/eval/run/{run_id} | Delete Eval Run |
| AgentsApi | delete_knowledge_base | DELETE /api/v1/knowledge-bases/{kb_id} | Delete Knowledge Base |
| AgentsApi | delete_prompt | DELETE /api/v1/agents/{agent_id}/prompts/{agent_prompt_id} | Delete Prompt |
| AgentsApi | discovery_agents | GET /api/v1/discovery/agents | Discovery Agents |
| AgentsApi | discovery_search | POST /api/v1/discovery/search | Discovery Search |
| AgentsApi | discovery_servers | GET /api/v1/discovery/mcp-servers | Discovery Servers |
| AgentsApi | discovery_tools | GET /api/v1/discovery/tools | Discovery Tools |
| AgentsApi | execute_consensus | POST /api/v1/consensus | Execute Consensus |
| AgentsApi | execute_switchboard | POST /api/v1/switchboard | Execute Switchboard |
| AgentsApi | get_agent | GET /api/v1/agents/{agent_id} | Get Agent |
| AgentsApi | get_agent_card | GET /api/v1/agents/{agent_id}/card.json | Get Agent Card |
| AgentsApi | get_eval_run_results | GET /api/v1/agents/eval/run/{run_id}/results | Get Eval Run Results |
| AgentsApi | get_eval_run_status | GET /api/v1/agents/eval/run/{run_id} | Get Eval Run Status |
| AgentsApi | get_prompt_history | GET /api/v1/agents/{agent_id}/prompts/history | Get Prompt History |
| AgentsApi | get_semantic_model | GET /api/v1/semantic-models/{model_id} | Get Semantic Model |
| AgentsApi | inference_step | POST /api/v1/agents/{agent_id}/inference/step | Inference Step |
| AgentsApi | list_agent_prompts | GET /api/v1/agents/{agent_id}/prompts | List Agent Prompts |
| AgentsApi | list_agent_versions | GET /api/v1/agents/{agent_id}/versions | List Agent Versions |
| AgentsApi | list_agents | GET /api/v1/agents | List Agents |
| AgentsApi | list_all_prompts | GET /api/v1/prompts | List All Prompts |
| AgentsApi | list_eval_cases | GET /api/v1/agents/eval/datasets/{dataset_id}/cases | List Eval Cases |
| AgentsApi | list_eval_datasets | GET /api/v1/agents/eval/datasets | List Eval Datasets |
| AgentsApi | list_eval_runs | GET /api/v1/agents/eval/runs | List Eval Runs |
| AgentsApi | list_knowledge_bases | GET /api/v1/knowledge-bases | List Knowledge Bases |
| AgentsApi | list_paas_apps | GET /api/v1/paas/apps | List Paas Apps |
| AgentsApi | list_semantic_models | GET /api/v1/semantic-models | List Semantic Models |
| AgentsApi | list_semantic_shapes | GET /api/v1/semantic-models/shapes | List Semantic Shapes |
| AgentsApi | list_tools_alias | GET /api/v1/tools | List Tools Alias |
| AgentsApi | patch_agent | PATCH /api/v1/agents/{agent_id} | Patch Agent |
| AgentsApi | patch_prompt | PATCH /api/v1/agents/{agent_id}/prompts/{agent_prompt_id} | Patch Prompt |
| AgentsApi | restore_agent_version | POST /api/v1/agents/{agent_id}/versions/restore | Restore Agent Version |
| AgentsApi | seed_knowledge_base | POST /api/v1/knowledge-bases/{kb_id}/seed | Seed Knowledge Base |
| AgentsApi | stream_paas_app_logs | GET /api/v1/paas/apps/{app_id}/logs | Stream Paas App Logs |
| AgentsApi | trigger_eval_run | POST /api/v1/agents/eval/run | Trigger Eval Run |
| AgentsApi | trigger_pairwise_eval_run | POST /api/v1/agents/eval/run/pairwise | Trigger Pairwise Eval Run |
| AgentsApi | update_eval_case | PATCH /api/v1/agents/eval/datasets/{dataset_id}/cases/{case_id} | Update Eval Case |
| AgentsApi | update_eval_dataset | PATCH /api/v1/agents/eval/datasets/{dataset_id} | Update Eval Dataset |
| MCPApi | call_tool | POST /api/v1/mcp/tools/call | Call Tool |
| MCPApi | delete_server | DELETE /api/v1/mcp/servers/{server_id} | Delete Server |
| MCPApi | discover_models | POST /api/v1/mcp/discover | Discover Models |
| MCPApi | list_servers | GET /api/v1/mcp/servers | List Servers |
| MCPApi | list_tools | GET /api/v1/mcp/tools | List Tools |
| MCPApi | register_server | POST /api/v1/mcp/servers | Register Server |
| MCPApi | stream_server_logs | GET /api/v1/mcp/servers/{server_id}/logs | Stream Server Logs |
| MCPApi | sync_server | POST /api/v1/mcp/servers/{server_id}/sync | Sync Server |
| MCPApi | update_server | PATCH /api/v1/mcp/servers/{server_id} | Update Server |
| MCPApi | validate_mcp_connection | POST /api/v1/mcp/validate | Validate Mcp Connection |
| MCPHubApi | get_hub_blueprint | GET /api/v1/mcp-hub/{registry_id} | Get Hub Blueprint |
| MCPHubApi | get_registry_count | GET /api/v1/mcp-hub/count | Get Registry Count |
| MCPHubApi | get_sync_audit_logs | GET /api/v1/mcp-hub/sync/audit | Get Sync Audit Logs |
| MCPHubApi | get_sync_config | GET /api/v1/mcp-hub/sync/config | Get Sync Config |
| MCPHubApi | get_sync_status | GET /api/v1/mcp-hub/sync/status | Get Sync Status |
| MCPHubApi | install_blueprint_nested | POST /api/v1/projects/{project_id}/mcp-servers/install | Install Blueprint Nested |
| MCPHubApi | list_hub_blueprints | GET /api/v1/mcp-hub | List Hub Blueprints |
| MCPHubApi | list_hub_publishers | GET /api/v1/mcp-hub/publishers | List Hub Publishers |
| MCPHubApi | publish_blueprint | POST /api/v1/mcp-hub | Publish Blueprint |
| MCPHubApi | set_sync_config | POST /api/v1/mcp-hub/sync/config | Set Sync Config |
| MCPHubApi | sync_hub_blueprints | POST /api/v1/mcp-hub/sync | Sync Hub Blueprints |
| MCPHubApi | sync_single_blueprint | POST /api/v1/mcp-hub/{registry_id}/sync | Sync Single Blueprint |
| MCPHubApi | toggle_hub_favorite | POST /api/v1/mcp-hub/{registry_id}/favorite | Toggle Hub Favorite |
| MCPHubApi | trigger_github_crawl | POST /api/v1/mcp-hub/crawl | Trigger Github Crawl |
| MCPHubApi | unlock_hub_sync | POST /api/v1/mcp-hub/sync/unlock | Unlock Hub Sync |
| MCPHubApi | update_github_pat | POST /api/v1/mcp-hub/api-keys/github | Update Github Pat |
| ObservabilityApi | get_trace_detail | GET /api/v1/observability/traces/{trace_id} | Get Trace Detail |
| ObservabilityApi | get_traces | GET /api/v1/observability/traces | Get Traces |
| PromptsApi | create_prompt | POST /api/v1/prompt-templates | Create Prompt |
| PromptsApi | get_prompt | GET /api/v1/prompt-templates/{template_id} | Get Prompt |
| PromptsApi | list_prompts | GET /api/v1/prompt-templates | List Prompts |
| PromptsApi | prompts_delete_prompt | DELETE /api/v1/prompt-templates/{template_id} | Delete Prompt |
| PromptsApi | update_prompt | PATCH /api/v1/prompt-templates/{template_id} | Update Prompt |
| ApplicationsApi | bind_agents | POST /api/v1/mas-apps/{app_id}/agents | Bind Agents |
| ApplicationsApi | bind_semantic_domain | POST /api/v1/mas-apps/{app_id}/semantic-domains | Bind Semantic Domain |
| ApplicationsApi | create_application | POST /api/v1/mas-apps | Create Application |
| ApplicationsApi | debug_route | GET /api/v1/mas-apps/debug | Debug Route |
| ApplicationsApi | delete_application | DELETE /api/v1/mas-apps/{app_id} | Delete Application |
| ApplicationsApi | get_blackboard | GET /api/v1/mas-apps/{app_id}/blackboard/{session_id} | Get Blackboard |
| ApplicationsApi | list_app_agents | GET /api/v1/mas-apps/{app_id}/agents | List App Agents |
| ApplicationsApi | list_applications | GET /api/v1/projects/{project_id}/mas-apps | List Applications |
| ApplicationsApi | list_semantic_bindings | GET /api/v1/mas-apps/{app_id}/semantic-domains | List Semantic Bindings |
| ApplicationsApi | patch_application | PATCH /api/v1/mas-apps/{app_id} | Patch Application |
| ApplicationsApi | unbind_agent | DELETE /api/v1/mas-apps/{app_id}/agents/{agent_id} | Unbind Agent |
| ApplicationsApi | unbind_semantic_domain | DELETE /api/v1/mas-apps/{app_id}/semantic-domains/{domain_id} | Unbind Semantic Domain |
| ApplicationsApi | update_blackboard | POST /api/v1/mas-apps/{app_id}/blackboard/{session_id} | Update Blackboard |
| ChatApi | chat_completions | POST /api/v1/chat/completions | Chat Completions |
| ConfigApi | add_model_to_provider | POST /api/v1/config/providers/{provider_name}/models | Add Model To Provider |
| ConfigApi | config_events | GET /api/v1/config/events | Config Events |
| ConfigApi | create_folder | POST /api/v1/config/folders | Create Folder |
| ConfigApi | create_model_provider | POST /api/v1/config/providers | Create Model Provider |
| ConfigApi | delete_asset | DELETE /api/v1/config/assets/{modality}/{asset_id} | Delete Asset |
| ConfigApi | delete_folder | DELETE /api/v1/config/folders/{folder_id} | Delete Folder |
| ConfigApi | delete_model | DELETE /api/v1/config/models/{model_id} | Delete Model |
| ConfigApi | delete_model_provider | DELETE /api/v1/config/providers/{provider_name} | Delete Model Provider |
| ConfigApi | get_active_model | GET /api/v1/config/active-model | Get Active Model |
| ConfigApi | get_assets | GET /api/v1/config/assets | Get Assets |
| ConfigApi | get_configuration_targets | GET /api/v1/config/targets | Get Configuration Targets |
| ConfigApi | get_model_configuration | GET /api/v1/config/models | Get Model Configuration |
| ConfigApi | get_semantic_config | GET /api/v1/config/admin/semantic-config | Get Semantic Config |
| ConfigApi | get_spiral_config | GET /api/v1/config/admin/spiral-config | Get Spiral Config |
| ConfigApi | get_system_config | GET /api/v1/config/system/{key} | Get System Config |
| ConfigApi | list_folders | GET /api/v1/config/folders | List Folders |
| ConfigApi | move_asset | POST /api/v1/config/assets/{asset_id}/move | Move Asset |
| ConfigApi | proxy_asset | GET /api/v1/config/assets/{org_id}/{user_id}/{modality}/{asset_id} | Proxy Asset |
| ConfigApi | register_configuration_target | POST /api/v1/config/targets/register | Register Configuration Target |
| ConfigApi | set_active_model | POST /api/v1/config/active-model | Set Active Model |
| ConfigApi | set_semantic_config | PUT /api/v1/config/admin/semantic-config | Set Semantic Config |
| ConfigApi | set_semantic_config_bulk | POST /api/v1/config/admin/semantic-config/bulk | Set Semantic Config Bulk |
| ConfigApi | set_semantic_config_post | POST /api/v1/config/admin/semantic-config | Set Semantic Config |
| ConfigApi | set_spiral_config_bulk | POST /api/v1/config/admin/spiral-config/bulk | Set Spiral Config Bulk |
| ConfigApi | set_system_config | POST /api/v1/config/system | Set System Config |
| ConfigApi | test_provider_connection | POST /api/v1/config/test-connection | Test Provider Connection |
| ConfigApi | update_model | PUT /api/v1/config/models/{model_id} | Update Model |
| ConfigApi | update_model_provider | PUT /api/v1/config/providers/{provider_name} | Update Model Provider |
| ConfigApi | upload_asset | POST /api/v1/config/upload | Upload Asset |
| ConfigApi | verify_semantic_credentials | POST /api/v1/config/admin/semantic-config/verify | Verify Semantic Credentials |
| ContextApi | generate_context | POST /api/v1/context | Generate Context |
| ContextApi | generate_context_stream | POST /api/v1/context/stream | Generate Context Stream |
| ContextApi | generate_response | POST /api/v1/generate | Generate Response |
| ContextApi | generate_response_stream | POST /api/v1/generate/stream | Generate Response Stream |
| ContextApi | get_model_catalog | GET /api/v1/context/models/catalog | Get Model Catalog |
| ContextApi | get_model_tasks | GET /api/v1/context/models/tasks | Get Model Tasks |
| ContextApi | persist_model | POST /api/v1/context/models/persist | Persist Model |
| DomainsApi | create_domain | POST /api/v1/domains | Create Domain |
| DomainsApi | delete_domain | DELETE /api/v1/domains/{normalized} | Delete Domain |
| DomainsApi | get_domain | GET /api/v1/domains/{normalized} | Get Domain |
| DomainsApi | get_domains | GET /api/v1/domains | Get Domains |
| DomainsApi | update_domain | PUT /api/v1/domains/{normalized} | Update Domain |
| PresetsApi | get_all_multimodal_presets | GET /api/v1/config/presets/multimodal | Get All Multimodal Presets |
| PresetsApi | get_all_provider_templates | GET /api/v1/config/presets/providers | Get All Provider Templates |
| PresetsApi | get_specific_multimodal_preset | GET /api/v1/config/presets/multimodal/{provider_type} | Get Specific Multimodal Preset |
| ProjectsApi | create_project | POST /api/v1/projects | Create Project |
| ProjectsApi | get_project | GET /api/v1/projects/{project_id} | Get Project |
| ProjectsApi | get_project_quota | GET /api/v1/projects/quota | Get Project Quota |
| ProjectsApi | list_projects | GET /api/v1/projects | List Projects |
| SemanticApi | branch_semantic_model | POST /api/v1/semantic/models/branch | Branch Semantic Model |
| SemanticApi | compile_graph | POST /api/v1/semantic/compile | Compile Graph |
| SemanticApi | compose_shapes | POST /api/v1/semantic/shapes/compose | Compose Shapes |
| SemanticApi | copilot_stream | POST /api/v1/semantic/copilot/stream | Copilot Stream |
| SemanticApi | create_semantic_model_post | POST /api/v1/semantic/create | Create Semantic Model |
| SemanticApi | delete_obda_mapping | DELETE /api/v1/semantic/mappings/{mapping_id} | Delete Obda Mapping |
| SemanticApi | discovery_stream | POST /api/v1/semantic/discovery/stream | Discovery Stream |
| SemanticApi | generate_obda_mapping | POST /api/v1/semantic/generate-mapping | Generate Obda Mapping |
| SemanticApi | get_semantic_model | GET /api/v1/semantic/models/{model_id} | Get Semantic Model |
| SemanticApi | get_semantic_registry | GET /api/v1/semantic/registry | Get Semantic Registry |
| SemanticApi | get_shape_details | GET /api/v1/semantic/shapes/{shape_id} | Get Shape Details |
| SemanticApi | list_domains | GET /api/v1/semantic/domains | List Domains |
| SemanticApi | list_model_versions | GET /api/v1/semantic/models/versions/{domain_id} | List Model Versions |
| SemanticApi | list_obda_mappings | GET /api/v1/semantic/mappings | List Obda Mappings |
| SemanticApi | list_semantic_models_get | GET /api/v1/semantic/models | List Semantic Models |
| SemanticApi | list_semantic_shapes_get | GET /api/v1/semantic/shapes | List Semantic Shapes |
| SemanticApi | parse_ttl | POST /api/v1/semantic/parse-ttl | Parse Ttl |
| SemanticApi | propose_migration | POST /api/v1/semantic/models/propose-migration | Propose Migration |
| SemanticApi | publish_semantic_model | POST /api/v1/semantic/models/publish | Publish Semantic Model |
| SemanticApi | rename_domain | PATCH /api/v1/semantic/domains/{domain_id} | Rename Domain |
| SemanticApi | save_obda_mapping | POST /api/v1/semantic/save-mapping | Save Obda Mapping |
| SemanticApi | semantic_create_domain | POST /api/v1/semantic/domains | Create Domain |
| SemanticApi | semantic_delete_domain | DELETE /api/v1/semantic/domains/{domain_id} | Delete Domain |
| SemanticApi | validate_ontology | POST /api/v1/semantic/validate | Validate Ontology |
| SessionsApi | add_history | POST /api/v1/history | Add History |
| SessionsApi | clear_all_sessions | DELETE /api/v1/sessions | Clear All Sessions |
| SessionsApi | delete_session | DELETE /api/v1/sessions/{session_id} | Delete Session |
| SessionsApi | get_all_sessions | GET /api/v1/sessions | Get All Sessions |
| SessionsApi | get_session_details | GET /api/v1/sessions/{session_id} | Get Session Details |
| SessionsApi | get_sessions_by_topic | GET /api/v1/sessions/by-topic/{topic_name} | Get Sessions By Topic |
| SessionsApi | update_session_snippet | PUT /api/v1/sessions/{session_id}/snippet | Update Session Snippet |
| TopicsApi | clear_all_topics | DELETE /api/v1/topics | Clear All Topics |
| TopicsApi | create_topic | POST /api/v1/topics | Create Topic |
| TopicsApi | delete_topic | DELETE /api/v1/topics/{topic_name} | Delete Topic |
| TopicsApi | get_topic_tree | GET /api/v1/topics/tree | Get Topic Tree |
Documentation For Models
- AGUIEvent
- ActiveModelRequest
- AgentCard
- AgentCardCapability
- AgentCardIdentity
- AgentCardInterface
- AgentCardOpsMetadata
- AgentCreate
- AgentInferenceRequest
- AgentPatch
- BlueprintPublishRequest
- BranchModelRequest
- BulkSystemConfigRequest
- CapabilitiesInner
- CompileRequest
- ComposeShapeRequest
- ConfigTargetCreate
- ConsensusRequest
- Content
- ContextResponse
- CopilotStreamRequest
- CreateDomainRequest
- CreateSemanticModelRequest
- CreateTopicRequest
- DiscoveryStreamRequest
- DomainCreate
- DomainResponse
- EvaluationRunConfig
- EvaluationRunRequest
- EventBatch
- ExternalChatRequest
- ExternalChatResponse
- FinalContext
- FolderCreate
- GenerationRequest
- GitHubPATUpdate
- HTTPValidationError
- HistoryRequest
- InstallBlueprintRequest
- KnowledgeBaseCreate
- KnowledgeBaseResponse
- LocationInner
- MCPServerRegister
- MCPServerUpdate
- MCPValidateRequest
- MappingPreviewRequest
- ModelCreate
- ModelPersistRequest
- OriginalPrompt
- PairwiseEvaluationRunRequest
- ParseTtlRequest
- ProjectCreate
- ProjectResponse
- Prompt
- ProposeMigrationRequest
- ProviderCreate
- PublishModelRequest
- RenameDomainRequest
- SaveMappingRequest
- SemanticConfigRequest
- SemanticModelCreate
- SwitchboardRequest
- SyncConfigUpdate
- SystemConfigRequest
- TaskCategoryResponse
- ToolCallRequest
- UpdateSnippetRequest
- ValidateOntologyRequest
- ValidationError
- VariableMapping
- VerifyCredentialsRequest
Documentation For Authorization
Endpoints do not require authorization.
Author
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file neondroplets-1.0.6.tar.gz.
File metadata
- Download URL: neondroplets-1.0.6.tar.gz
- Upload date:
- Size: 138.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ace594a2b286b61c50937537e74b2f6b61dae037e4f6667480b69b9330e3ab7
|
|
| MD5 |
428a9a9e17ff39101bf5251ade486eda
|
|
| BLAKE2b-256 |
f954778e2a61cba2bb402a0e00567791d81efa9fb3e021b915df70709d8afade
|
File details
Details for the file neondroplets-1.0.6-py3-none-any.whl.
File metadata
- Download URL: neondroplets-1.0.6-py3-none-any.whl
- Upload date:
- Size: 218.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1fac029a3bed72eeb67a56203e3415569d7b7479aaf95a62d844a9d51d93981
|
|
| MD5 |
6eb91f3be1ded500de373f1558abdf70
|
|
| BLAKE2b-256 |
fea93ac657ae4a398532d6e103c729ecaaf150866a16fd2b11432c14e12f92ee
|