Skip to main content

A Python client for interacting with the SentiChain API

Project description

SentiChain Python Client

A lightweight Python client to interact with the SentiChain REST API.

This library provides convenience methods for:

  • API Management: Retrieve user information (e.g., remaining points).
  • Block Explorer: Get chain length, last block time, total transactions, etc.
  • Event Map: Retrieve event map data for specified block ranges.
  • Observation: Retrieve reasoning for specified ticker, summary type and block chunk end.

Table of Contents

Features

  • API Management
    • Fetch detailed user information, including points usage.
  • Block Explorer
    • Get chain length and last block time.
    • Retrieve total number of transactions.
    • Fetch the latest block or a specific block by number.
  • Event Map
    • Fetch maximum block number processed in the event map.
    • Retrieve “points” snapshots for a specific block or for a range of blocks.
  • Observation
    • Retrieve reasoning for specified ticker, summary type and block chunk end.

Requirements

  • Python 3.8+ (recommend)
  • requests library

Installation

Since this is a standalone Python file, you can simply:

  1. Clone or download this repository.
  2. Ensure you have requests installed:
    pip install requests
    
  3. Place client.py in your project, or install it as a local module.

Usage

Initializing the Client

from sentichain.client import Client

# If you have an API key:
api_key = "YOUR_SENTICHAIN_API_KEY"

# Initialize the client with the default SentiChain API URL
client = Client(api_key=api_key)

# Or override the base URL if needed:
# client = Client(base_url="https://some-other-domain.com", api_key=api_key)

Examples

This is an example of how you might use this client:

from sentichain.client import Client

def main():
    api_key = "YOUR_API_KEY"  # Replace with your real key
    client = Client(api_key=api_key)

    # Get user info
    user_info = client.get_user_info(user_id="12345", api_key=api_key)
    print("User info:", user_info)

    # Check chain length on testnet
    length = client.get_chain_length("testnet")
    print("Chain length:", length)

    # Fetch data for a specific block
    block_data = client.get_block_by_number(network="testnet", block_number=50)
    print("Block #50 data:", block_data)

    # Fetch reasoning for a specific ticker, summary type and block chunk end
    reasoning = client.get_reasoning_match_chunk_end(ticker="DOGE", summary_type="observation_public", user_chunk_end=200)
    print("Observation:", reasoning)

if __name__ == "__main__":
    main()

Supports

Contributions, bug reports, and feature requests are welcome! Feel free to email us at info@sentichain.com

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

sentichain-0.1.0.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sentichain-0.1.0-py3-none-any.whl (5.6 kB view details)

Uploaded Python 3

File details

Details for the file sentichain-0.1.0.tar.gz.

File metadata

  • Download URL: sentichain-0.1.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for sentichain-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3cfbde910612dd28c1ad54e16457835d052ab47c1a4ddfe905d0d0a6b95d121f
MD5 600c277cbcfc6e58b530e523c38ebae1
BLAKE2b-256 82ec03480bb9fb5bf3ea12becccaf47e2caf1e7dec7fae1706fb5774eaafaaaa

See more details on using hashes here.

File details

Details for the file sentichain-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: sentichain-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 5.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.7

File hashes

Hashes for sentichain-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2a732e142d70a9b5527b78dd16940738cbcfd1d7a2a41fe2d98fd16049cdf332
MD5 0a3ef662c19f4035188891bd7f51ee84
BLAKE2b-256 1e934c59d9e013d9656063f75564f7926061f14146b140ee26fb060f515a3cbd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page