معرفی شرکت ها


flowgl-0.1.4.post1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Flow Immersive python client for datasets API
ویژگی مقدار
سیستم عامل -
نام فایل flowgl-0.1.4.post1
نام flowgl
نسخه کتابخانه 0.1.4.post1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Flow Immersive
ایمیل نویسنده info@flow.gl
آدرس صفحه اصلی -
آدرس اینترنتی https://pypi.org/project/flowgl/
مجوز -
# Flow Immersive Python Client An easy way to push data from pandas to Flow. ## Usage Push data to Flow, identifying the dataset with a title. Pushing a new dataset with the same title will create a new dataset version. ```python import pandas as pd # Example pandas dataframe df = pd.DataFrame({ 'name': ['John', 'Jane', 'Joe'], 'age': [30, 25, 40], 'city': ['New York', 'San Francisco', 'Los Angeles'] }) from flowgl import Client # Import the client and create an instance with your credentials client = Client( username=..., password=..., ) # Push the dataframe to Flow by title client.push_data( df, dataset_title='My Dataset', ) ``` If you're working with a dictionary of nodes and edges, you can use the `push_nodes_and_edges_dict` method, referencing the nodes list and edges list in the provided dictionary by jsonpath. ```python my_dict = { 'nested_object': { 'nodes': [ {'id': 1, 'name': 'John'}, {'id': 2, 'name': 'Jane'}, {'id': 3, 'name': 'Joe'}, ], 'edges': [ {'source': 1, 'target': 2}, {'source': 2, 'target': 3}, ] } } client.push_nodes_and_edges_dict( my_dict, nodes_jsonpath='$.nested_object.nodes', edges_jsonpath='$.nested_object.edges', dataset_title='My Dataset', ) ```


نیازمندی

مقدار نام
>=0.10.1,<0.11.0 requests-toolbelt
>=1.5.3,<2.0.0 jsonpath-ng


زبان مورد نیاز

مقدار نام
>=3.8,<4.0 Python


نحوه نصب


نصب پکیج whl flowgl-0.1.4.post1:

    pip install flowgl-0.1.4.post1.whl


نصب پکیج tar.gz flowgl-0.1.4.post1:

    pip install flowgl-0.1.4.post1.tar.gz