Skip to content

Latest commit

 

History

History
79 lines (57 loc) · 1.4 KB

connect.md

File metadata and controls

79 lines (57 loc) · 1.4 KB

✨ Connect

{% hint style="info" %} For connecting you must get your Database and Cloud Access Key from here. {% endhint %}

Install

You can easily install the Upsonic with PyPI.

Requirements
  • Python >= 3.5
  • pip3
  • Any Modern OS
    • Linux
    • MacOS
    • Windows
    • Android
    • iOS

Installation Command

It's the cross-platform and stable download command for every system.

pip3 install Upsonic

Connect

Requirements
  • Database Key
  • Cloud Access Key

Connection Code

{% 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 %}