{"id":17306952,"url":"https://github.com/edgarrmondragon/tap-bitso","last_synced_at":"2025-04-14T13:42:02.243Z","repository":{"id":37797764,"uuid":"385086379","full_name":"edgarrmondragon/tap-bitso","owner":"edgarrmondragon","description":"Singer tap for the Bitso API","archived":false,"fork":false,"pushed_at":"2025-04-13T10:02:42.000Z","size":1083,"stargazers_count":1,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-13T11:19:30.258Z","etag":null,"topics":["bitso","meltano-sdk","singer-io","singer-tap"],"latest_commit_sha":null,"homepage":"http://pypi.org/p/tap-bitso","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/edgarrmondragon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null},"funding":{"github":["edgarrmondragon"],"patreon":"edgarrmondragon","ko_fi":"edgarrmondragon","polar":"edgarrmondragon","thanks_dev":"u/gh/edgarrmondragon"}},"created_at":"2021-07-12T00:59:35.000Z","updated_at":"2025-04-13T10:02:45.000Z","dependencies_parsed_at":"2024-02-05T19:56:59.863Z","dependency_job_id":"70035742-3c91-481c-ac23-57c1ff70663c","html_url":"https://github.com/edgarrmondragon/tap-bitso","commit_stats":null,"previous_names":[],"tags_count":15,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgarrmondragon%2Ftap-bitso","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgarrmondragon%2Ftap-bitso/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgarrmondragon%2Ftap-bitso/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/edgarrmondragon%2Ftap-bitso/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/edgarrmondragon","download_url":"https://codeload.github.com/edgarrmondragon/tap-bitso/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248703479,"owners_count":21148169,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bitso","meltano-sdk","singer-io","singer-tap"],"created_at":"2024-10-15T12:00:02.891Z","updated_at":"2025-04-14T13:42:02.205Z","avatar_url":"https://github.com/edgarrmondragon.png","language":"Python","funding_links":["https://github.com/sponsors/edgarrmondragon","https://patreon.com/edgarrmondragon","https://ko-fi.com/edgarrmondragon","https://polar.sh/edgarrmondragon","https://thanks.dev/u/gh/edgarrmondragon"],"categories":[],"sub_categories":[],"readme":"# tap-bitso\n\n⚠️ Warning: this project is under active development, essential features are still missing and implementation subject to change. ⚠️\n\n`tap-bitso` is a Singer tap for the [Bitso API](https://bitso.com/api_info).\n\nBuilt with the Meltano [SDK](https://gitlab.com/meltano/sdk) for Singer Taps.\n\n## Installation\n\n```bash\nuv tool install git+https://github.com/edgarrmondragon/tap-bitso.git\n```\n\n## Configuration\n\n### Accepted Config Options\n\nA full list of supported settings and capabilities for this\ntap is available by running:\n\n```bash\ntap-bitso --about\n```\n\n| Field      | Description             | Type           | Required | Default                 |\n|------------|-------------------------|----------------|----------|-------------------------|\n| `key`      | Bitso API Key           | `string`       | yes      |                         |\n| `secret`   | Bitso API Secret        | `string`       | yes      |                         |\n| `base_url` | Bitso API URL           | `string`       | no       | `https://api.bitso.com` |\n| `books`    | Tickers to get data for | `list(string)` | no       | `[\"btc_mxn\"]`           |\n\n### Source Authentication and Authorization\n\nThis tap handles the [digest access authentication for the Bitso API](https://docs.bitso.com/bitso-api/docs/authentication).\n\n## Usage\n\nYou can easily run `tap-bitso` by itself or in a pipeline using [Meltano](www.meltano.com).\n\n### Executing the Tap Directly\n\n```bash\ntap-bitso --version\ntap-bitso --help\ntap-bitso --config CONFIG --discover \u003e ./catalog.json\n```\n\n## Developer Resources\n\n### Initialize your Development Environment\n\n```bash\nuv sync\n```\n\n\n### Create and Run Tests\n\nCreate tests within the `tap_bitso/tests` subfolder and\n  then run:\n\n```bash\nuv run pytest\n```\n\nYou can also test the `tap-bitso` CLI interface directly using `uv run`:\n\n```bash\nuv run tap-bitso --help\n```\n\n\n### Testing with [Meltano](https://www.meltano.com)\n\n_**Note:** This tap will work in any Singer environment and does not require Meltano.\nExamples here are for convenience and to streamline end-to-end orchestration scenarios._\n\nNext, install Meltano (if you haven't already) and any needed plugins:\n\n```bash\n# Install meltano\nuv tool install meltano\n# Initialize meltano within this directory\ncd tap-bitso\nmeltano install\n```\n\nNow you can test and orchestrate using Meltano:\n\n```bash\n# Test invocation:\nmeltano invoke tap-bitso --version\n# OR run a test `elt` pipeline:\nmeltano elt tap-bitso target-sqlite\n```\n\n### SDK Dev Guide\n\nSee the [dev guide](https://sdk.meltano.com/en/latest/dev_guide.html) for more instructions on how to use the SDK to\ndevelop your own taps and targets.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedgarrmondragon%2Ftap-bitso","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fedgarrmondragon%2Ftap-bitso","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fedgarrmondragon%2Ftap-bitso/lists"}