Skip to main content

Endoc SDK: A note-taking app SDK powered by LLMs

Project description

Endoc SDK Logo

Powered by Endoc

Endoc SDK

Endoc SDK is a Python library that provides powerful tools for advanced paper search, summarization, and note management using a GraphQL API. It leverages Pydantic for robust data validation and modeling, so that all responses are returned as easy‐to‐use Python objects. In addition, Endoc SDK offers an extensibility mechanism to allow you to create custom composite services without modifying the core code.

Features

  • Document Search: Search and filter papers using ranking variables and keywords.
  • Summarize Paper: Generate summaries for individual papers.
  • Paginated Search: Retrieve paginated search results.
  • Single Paper Search: Get detailed information about a single paper.
  • Note Library: Retrieve papers associated with a note.
  • Title Search: Resolve papers from title lists.
  • PDF Import (API key flow): Upload local PDFs for indexing/import.
  • Custom Services: Easily extend the client with your own functions.

Installation

Install Endoc SDK via pip:

pip install endoc

Setup

  1. Obtain Your API Key:

    • Visit https://endoc.ethz.ch and sign up using your Switch Edu-ID credentials.
    • After logging in, click on the Account option in the side panel.
    • Under the Developer API section, click Generate to create a new API key.
    • Copy the generated API key for later use.
  2. Create a .env File (optional):

    • In your project's root directory, create a file named .env.
    • Add your API key to the file using one of these supported keys:
      ENDOC_API_KEY=your_api_key_here
      # or
      API_KEY=your_api_key_here
      
  3. Load Environment Variables (if using .env):

    • Install python-dotenv if you haven't already:
      pip install python-dotenv
      
    • In your Python script:
      from dotenv import load_dotenv
      load_dotenv()
      
  4. Instantiate the Endoc client

    • In your Python script, instantiate EndocClient:
    client = EndocClient(api_key=None)  # reads ENDOC_API_KEY/API_KEY from env
    # or
    client = EndocClient(api_key="your_api_key_here")
    
  5. (Optional) Override GraphQL endpoint

    • By default the SDK uses: https://endoc.ethz.ch/graphql
    • To target another deployment (e.g. local gateway), set:
      ENDOC_GRAPHQL_URL=http://localhost:9000/graphql
      

Basic Usage

1) Document Search

To search for papers, call the document_search method. This returns a DocumentSearchData object.

doc_search_result = client.document_search(
    ranking_variable="BERT",
    keywords=["AvailableField:Content.Fullbody_Parsed"]
)

# Accessing properties:
print(doc_search_result.status)
print(doc_search_result.response.search_stats.nMatchingDocuments)
print(doc_search_result.response.paper_list[0].id_value)

2) Summarize Paper

Call the summarize method with a paper ID to get a summary. The result is a SummarizationResponseData object.

summarize_result = client.summarize("221802394")
# Example usage:
print(summarize_result.status)
# You can further inspect summarize_result.response for detailed summary items.

3) Paginated Search

Use the paginated_search method to retrieve paginated results. Prepare a list of paper metadata as input.

example_paper = {
    "collection": "S2AG",
    "id_field": "id_int",
    "id_type": "int",
    "id_value": "221802394"
}
paper_list = [example_paper]
paginated_result = client.paginated_search(paper_list=paper_list)
# Example usage:
print(paginated_result.status)

4) Single Paper Search

To fetch detailed information for a single paper, use the single_paper method. This returns a SinglePaperData object.

single_paper_result = client.single_paper("221802394")
# Example usage:
print(single_paper_result.response.Title)

5) Get Note Library

Retrieve papers related to a note by calling the get_note_library method. This returns a GetNoteLibraryResponse object. To find your note ID, navigate to a note on Endoc and copy the last part of the url, e.g. for https://endoc.ethz.ch/note/679a1e2e5b25cf001a7c7157, the note's ID is 679a1e2e5b25cf001a7c7157.

note_library_result = client.get_note_library("679a1e2e5b25cf001a7c7157")
if note_library_result.response:
    print(note_library_result.response[0].id_value)

6) Import PDFs from local folder

result_batches = client.import_pdfs_from_folder(
    folder_path="/absolute/path/to/pdfs",
    recursive=False,
    max_file_mb=50,
    batch_size=5,
)

for batch in result_batches:
    print(batch.status, batch.message, len(batch.response or []))

Or use the example script:

python examples/upload_pdf.py --folder "/absolute/path/to/pdfs"

Extending the Client with Custom Services

Endoc SDK allows you to add your own composite services without modifying the core code. You have two options:

Option 1: Using the register_service Decorator

Endoc SDK re-exports the register_service decorator, so you can define custom methods that become part of the client interface. For example:

from endoc import register_service

@register_service("combined_search")
def combined_search(self, paper_list, id_value):
    paginated = self.paginated_search(paper_list, keywords=["example"])
    single = self.single_paper(id_value)
    return {"paginated": paginated, "single": single}

result = client.combined_search(paper_list, "221802394")
print("Combined Search Result:", result)

Option 2: Using the register_service Method

Alternatively, you can register a custom service function directly on the client instance:

def my_custom_service(paper_list, id_value):
    paginated = client.paginated_search(paper_list, keywords=["custom"])
    single = client.single_paper(id_value)
    return {"paginated": paginated, "single": single}

client.register_service("my_custom_service", my_custom_service)

result = client.my_custom_service(paper_list, "221802394")
print("My Custom Service Result:", result)

Package Structure

The package is organized as follows:

endoc/
├── __init__.py
├── client.py
├── decorators.py
├── endoc_client.py
├── exceptions.py
├── queries.py
├── models/
│   ├── document_search.py
│   ├── note_library.py
│   ├── paginated_search.py
│   ├── pdf_import.py
│   ├── single_paper.py
│   ├── summarization.py
│   └── title_search.py
└── services/
    ├── document_search.py
    ├── get_note_library.py
    ├── paginated_search.py
    ├── pdf_import.py
    ├── single_paper_search.py
    ├── summarization.py
    └── title_search.py
examples/
├── test_document_search.py
└── upload_pdf.py
tests/
├── conftest.py
├── fixtures/
└── unit/
    ├── test_auth.py
    ├── test_custom_services.py
    ├── test_document_search.py
    ├── test_paginated_search.py
    ├── test_pdf_import.py
    ├── test_single_paper.py
    └── test_summarization.py

Environment Variables

Supported variables:

  • ENDOC_API_KEY or API_KEY: API key used by the SDK.
  • ENDOC_GRAPHQL_URL (optional): override default endpoint (https://endoc.ethz.ch/graphql).

Use a .env file and python-dotenv to load variables:

from dotenv import load_dotenv
load_dotenv()

Testing

Endoc SDK includes a test suite to ensure quality and maintain high coverage. The tests are organized by functionality, making it easy to add new tests or modify existing ones.

  • Make sure you have installed pytest and any other test dependencies:

     pip install pytest
    

Running the Tests

In the SDK root (endoc-sdk/), run:

python -m pytest

Test Organization

Fixtures

The tests/fixtures folder holds reusable components like mock responses and dummy clients (e.g., dummy_api.py).

A document_search_fixtures.py file might contain fixtures that set up data or patch classes for document search tests.

Unit Tests

Located in tests/unit, these tests focus on individual modules or classes, mocking external calls.

For example, test_document_search.py might ensure the DocumentSearchService parses JSON correctly.

Integration Tests

Placed in tests/integration, these tests cover how multiple parts of the SDK interact. They may call real endpoints in a staging environment or use more extensive mocks that simulate multi-step workflows.

conftest.py

Pytest automatically discovers and uses any fixtures defined in conftest.py. You can place shared fixtures here (like a global mock of your API client or environment setup).

Contributing

Contributions are welcome! Please open issues or submit pull requests on the GitHub repository. Ensure that any contributions adhere to the existing code style and include tests where applicable.

License

This project is licensed under the MIT license.

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

endoc-1.7.1.tar.gz (16.5 kB view details)

Uploaded Source

Built Distribution

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

endoc-1.7.1-py3-none-any.whl (18.5 kB view details)

Uploaded Python 3

File details

Details for the file endoc-1.7.1.tar.gz.

File metadata

  • Download URL: endoc-1.7.1.tar.gz
  • Upload date:
  • Size: 16.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for endoc-1.7.1.tar.gz
Algorithm Hash digest
SHA256 7bc4a4e80cb93ac3be3e70a8ef4e83bab64eee49fa6e33e8f2936a8d983147cd
MD5 656c2ff8362ebe1b8f33a01f1f6def5a
BLAKE2b-256 0c18c3c68a0ed9b737c2ce6347c437e92b5e877dcd2903a23369923b695162d4

See more details on using hashes here.

File details

Details for the file endoc-1.7.1-py3-none-any.whl.

File metadata

  • Download URL: endoc-1.7.1-py3-none-any.whl
  • Upload date:
  • Size: 18.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.14

File hashes

Hashes for endoc-1.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 967aa80051f38d91402bab330ecfba8e24bca89d61957a4086137355a2f5812f
MD5 5844f12d79f049c9733ccaebf9bb32a4
BLAKE2b-256 caa91a47032e282ede1290daaef57ea4ae596ef888208cf7316fba470baee3c5

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