Coder Social home page Coder Social logo

Comments (3)

chrisedington avatar chrisedington commented on July 26, 2024

I'm testing a potential fix:

def get_channel_messages(
    client: WebClient,
    channel: dict[str, Any],
    oldest: str | None = None,
    latest: str | None = None,
) -> Generator[list[MessageType], None, None]:
    """Get all messages in a channel"""
    # join so that the bot can access messages
    if not channel["is_member"] and not channel["is_archived"]:
        client.conversations_join(
            channel=channel["id"], is_private=channel["is_private"]
        )

    for result in _make_slack_api_call(
        client.conversations_history,
        channel=channel["id"],
        oldest=oldest,
        latest=latest,
    ):
        yield cast(list[MessageType], result["messages"])

from danswer.

chrisedington avatar chrisedington commented on July 26, 2024

That failed, I think it needs to move up to get_channels.

Python SDK provides:

Archived channels are included by default. You can exclude them by passing exclude_archived=True to your request.

response = client.conversations_list(exclude_archived=True)

See conversations.list for more info.

from danswer.

Weves avatar Weves commented on July 26, 2024

Good catch! We hadn't tested on slack workspaces with archived channels yet. Approved / merged #208.

I will say that ideally, in the long term, we would be able to scrape archived channels as well (since they often contain some useful, relevant information), but it doesn't seem like that's possible based on my reading of the Slack API :(

from danswer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.