Skip to main content

Official Python SDK for the 0Gate ramp API. Stripe-style ergonomics — secret keys, sessions, signed webhooks.

Project description

@0bit/0gate

Unified official SDK for the 0Gate ramp API — Node server, browser embed, React components, and Python.

Install

Surface Command
Node (server) npm install @0bit/0gate
Browser (bundler) npm install @0bit/0gateimport { GateRamp } from '@0bit/0gate/browser'
React npm install @0bit/0gateimport { RampCheckout } from '@0bit/0gate/react'
Python pip install 0bit-0gatefrom zerobit.gate import GateClient

Python framework extras

pip install "0bit-0gate[django]"
pip install "0bit-0gate[fastapi]"
pip install "0bit-0gate[flask]"

Quick start — Node

import { GateClient } from '@0bit/0gate';

const client = new GateClient({ apiKey: process.env.GATE_KEY! });

const session = await client.sessions.create({
   amount: '100.00',
   currency: 'EUR',
   return_url: 'https://myapp.example/done',
});

console.log(session.client_secret);

Quick start — Browser

import { GateRamp } from '@0bit/0gate/browser';

const ramp = new GateRamp({
   publishableKey: 'pk_test_...',
   clientSecret: session.client_secret,
});
await ramp.mount('#gate-container');

CDN (IIFE):

<script src="https://cdn.jsdelivr.net/npm/@0bit/0gate/dist/browser/0gate.iife.js"></script>
<script>
  const ramp = new GateJS.GateRamp({ publishableKey: 'pk_test_...', clientSecret: 'gsec_...' });
  ramp.mount('#container');
</script>

Quick start — React

import { RampCheckout } from '@0bit/0gate/react';

<RampCheckout
   publishableKey={import.meta.env.VITE_GATE_KEY}
   clientSecret={session.client_secret}
   onSuccess={({ txId }) => router.push('/done')}
/>

Quick start — Python

from zerobit.gate import GateClient

client = GateClient(api_key="sk_test_...")
session = client.sessions.create({
    "amount": "100.00",
    "currency": "EUR",
    "return_url": "https://myapp.example/done",
})
print(session["client_secret"])

SDK naming policy

Surface 0Gate Future products
npm @0bit/0gate @0bit/0pools, @0bit/0base
PyPI 0bit-0gate 0bit-0pools, 0bit-0base
Python import zerobit.gate zerobit.pools, zerobit.base

Development

cd 0Bit_apps/0Gate/0Gate_Sdk
npm ci && npm run build && npm test
pip install -e ".[dev,django,fastapi,flask]"
pytest

License

MIT. Part of the 0Bit / 0Gate ramp platform.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

0bit_0gate-0.1.3.tar.gz (11.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

0bit_0gate-0.1.3-py3-none-any.whl (15.0 kB view details)

Uploaded Python 3

File details

Details for the file 0bit_0gate-0.1.3.tar.gz.

File metadata

  • Download URL: 0bit_0gate-0.1.3.tar.gz
  • Upload date:
  • Size: 11.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for 0bit_0gate-0.1.3.tar.gz
Algorithm Hash digest
SHA256 a05ce18ef327984597271d130cd60872b68dc7c109cb6df1ab9c0ec9b5e7b0cc
MD5 7939099e06744df683364281b751a258
BLAKE2b-256 b30c3494f8ecc234fda30b10f80affbdeec6f0ef0f38b2058c30df50f4e1e64c

See more details on using hashes here.

Provenance

The following attestation bundles were made for 0bit_0gate-0.1.3.tar.gz:

Publisher: publish-0bit-sdks.yml on 0Bit-org/0bit_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file 0bit_0gate-0.1.3-py3-none-any.whl.

File metadata

  • Download URL: 0bit_0gate-0.1.3-py3-none-any.whl
  • Upload date:
  • Size: 15.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for 0bit_0gate-0.1.3-py3-none-any.whl
Algorithm Hash digest
SHA256 6c4daa728c40d26807074ac65ffaa5fb4e1f89cadf54746573962427d0975dfa
MD5 28af1665020dba352459bf3e873e80c5
BLAKE2b-256 3d7072e85a1f3772f496989b35f75e1ab0821977e7d417631f6b0004af5651a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for 0bit_0gate-0.1.3-py3-none-any.whl:

Publisher: publish-0bit-sdks.yml on 0Bit-org/0bit_core

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page