{% hint style="info" %} For connecting you must get your Database and Cloud Access Key from here. {% endhint %}
You can easily install the Upsonic with PyPI.
Requirements
- Python >= 3.5
- pip3
- Any Modern OS
- Linux
- MacOS
- Windows
- Android
- iOS
It's the cross-platform and stable download command for every system.
pip3 install Upsonic
Requirements
- Database Key
- Cloud Access Key
{% tabs %} {% tab title="Free" %} {% code title="Python" %}
from upsonic import Upsonic_Cloud_Free
cloud = Upsonic_Cloud_Free("YOUR_DATABASE_KEY", "YOUR_CLOUD_ACCESS_KEY")
# Other codes
{% endcode %} {% endtab %}
{% tab title="Pro" %} {% code title="Python" %}
from upsonic import Upsonic_Cloud_Pro
cloud = Upsonic_Cloud_Pro("YOUR_DATABASE_KEY", "YOUR_CLOUD_ACCESS_KEY")
# Other codes
{% endcode %} {% endtab %}
{% tab title="Premium" %} {% code title="Python" %}
from upsonic import Upsonic_Cloud_Premium
cloud = Upsonic_Cloud_Premium("YOUR_DATABASE_KEY", "YOUR_CLOUD_ACCESS_KEY")
# Other codes
{% endcode %} {% endtab %} {% endtabs %}