Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/analitico/analitico-sdk
Analitico SDK, gallery, samples
https://github.com/analitico/analitico-sdk
artificial-intelligence jupyter jupyter-notebook machine-learning
Last synced: about 1 month ago
JSON representation
Analitico SDK, gallery, samples
- Host: GitHub
- URL: https://github.com/analitico/analitico-sdk
- Owner: analitico
- License: mit
- Created: 2019-02-02T20:28:49.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-04-24T13:52:34.000Z (over 4 years ago)
- Last Synced: 2024-11-15T04:48:15.970Z (about 2 months ago)
- Topics: artificial-intelligence, jupyter, jupyter-notebook, machine-learning
- Language: Jupyter Notebook
- Homepage: https://analitico.ai
- Size: 2.13 MB
- Stars: 2
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Analitico SDK
This package contains plugins and classes used to access analitico.ai cloud services and machine learning models. The package can be installed in Jupyter notebooks, Colaboratory notebooks or other Python environments. To access assets stored in Analitico you will need an API token.
### Installation
To install in Python:
`pip install analitico`To install on Jupyter, Colaboratory, etc:
`!pip install analitico`### Usage
```python
import analitico# authorize calls with developer token
sdk = analitico.authorize_sdk(token="tok_xxx")# retrieve a dataset object from analitico
dataset = sdk.get_dataset("ds_xxx")# download a data file from storage into a Pandas dataframe
df = dataset.download(remotepath="customers.csv", df=True)
```