Skip to content

Outdated use of pandas' "append" method #1

@CorentinJankowiak

Description

@CorentinJankowiak

Hi, thanks for your work providing this useful wrapper.

I noticed the current version is using an outdated pandas method in the wrapper "query_API" method, line 280:

df = df.append(df_pair)

I've pip installed the package as editable on my computer and changed that line for

df = pd.concat([df, df_pair])

and it's now working.

Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions