Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Titus] Pandas support #24

Open
frol opened this issue Oct 26, 2016 · 1 comment
Open

[Titus] Pandas support #24

frol opened this issue Oct 26, 2016 · 1 comment

Comments

@frol
Copy link

frol commented Oct 26, 2016

I would like to suggest adding Pandas support so there would be no need in record-by-record data-copying.

@animator
Copy link

@frol you can easily convert pandas df to list of jsons:

import json
data = json.loads(df.to_json(orient = 'records'))
for datum in data:
    engine.action(datum)

You can check out the latest release at https://github.com/animator/titus2 and report any future issues.

Regards.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants