{"id":37184934,"url":"https://github.com/tulipsolutions/tecl","last_synced_at":"2026-01-14T21:23:10.709Z","repository":{"id":42203829,"uuid":"185829240","full_name":"TulipSolutions/tecl","owner":"TulipSolutions","description":"Tulip Exchange Client Library","archived":false,"fork":false,"pushed_at":"2022-12-27T15:38:07.000Z","size":769,"stargazers_count":4,"open_issues_count":13,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2023-02-26T10:06:20.546Z","etag":null,"topics":["bazel-rules","exchange-api","grpc","grpc-go","grpc-java","grpc-node","grpc-python","protobuf","protobuf3","sphinx-doc"],"latest_commit_sha":null,"homepage":"https://demo.tulipsolutions.nl/docs/","language":"Starlark","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/TulipSolutions.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2019-05-09T15:51:18.000Z","updated_at":"2021-05-22T06:08:54.000Z","dependencies_parsed_at":"2023-01-31T04:45:18.406Z","dependency_job_id":null,"html_url":"https://github.com/TulipSolutions/tecl","commit_stats":null,"previous_names":[],"tags_count":null,"template":null,"template_full_name":null,"purl":"pkg:github/TulipSolutions/tecl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TulipSolutions%2Ftecl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TulipSolutions%2Ftecl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TulipSolutions%2Ftecl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TulipSolutions%2Ftecl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/TulipSolutions","download_url":"https://codeload.github.com/TulipSolutions/tecl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/TulipSolutions%2Ftecl/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28434885,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T18:57:19.464Z","status":"ssl_error","status_checked_at":"2026-01-14T18:52:48.501Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bazel-rules","exchange-api","grpc","grpc-go","grpc-java","grpc-node","grpc-python","protobuf","protobuf3","sphinx-doc"],"created_at":"2026-01-14T21:23:09.825Z","updated_at":"2026-01-14T21:23:10.686Z","avatar_url":"https://github.com/TulipSolutions.png","language":"Starlark","readme":"# Tulip Exchange Client Library\n\n*This project is currently in **alpha**. The API should be considered unstable and likely to change.*\n\nThe Tulip Exchange API is a [gRPC](https://grpc.io/) API for interacting with the Tulip Exchange backend.\nUse it to place and cancel orders, monitor the orderbook, stream trades and any other interactions.\nThe API is defined in a set of [protobuf files](https://developers.google.com/protocol-buffers/) that are used to\ngenerate language specific stubs.\nIn addition to these stubs, the Tulip Exchange Client Library also contains some helper functions to aid authentication.\n\n## Documentation\n\n* [Getting started](https://demo.tulipsolutions.nl/docs/getting-started/setup-project.html)\n* [Public API Reference documentation](https://demo.tulipsolutions.nl/docs/about-public-api.html)\n* [Private API Reference documentation](https://demo.tulipsolutions.nl/docs/about-private-api.html)\n* [Tulip Exchange API Authentication](https://demo.tulipsolutions.nl/docs/authentication.html)\n* [FAQ](https://demo.tulipsolutions.nl/docs/faq.html)\n\n## Usage with Bazel\n\nTo install Bazel itself:\n\n* [Install Bazel's dependencies](https://docs.bazel.build/install.html)\n* [Install Bazelisk](https://github.com/bazelbuild/bazelisk/releases) (optional, but recommended)\n\n### Java specifics\n\nFor Java examples, *either*:\n\n* [Install JDK 8 or higher locally](https://adoptopenjdk.net/); or\n* Let Bazel download a JDK for you by passing the following command line arguments when invoking Bazel(isk).\n\nPlease see the [Getting started section](https://demo.tulipsolutions.nl/docs/getting-started/setup-project.html) for\nmore details steps.\n\n### Python specifics\n\nFor the Python examples: [Install Python 2 and 3](https://www.python.org/downloads/). If you're using your operating\nsystem's package manager, also install the development packages.\n\u003csub\u003ePython 2 is still required unfortunately, due to an issue with the gRPC-Bazel rules\n([#21963](https://github.com/grpc/grpc/issues/21963)).\u003c/sub\u003e\n\n### Go and Node\n\nTo run Go (Golang) or Node (Javascript) examples, all other dependencies are managed by Bazel.\n\n### Running the examples\n\nRun an example with `bazelisk run //examples/\u003clang\u003e/\u003cexample\u003e`, e.g.:\n\n    bazelisk run //examples/go/hello_exchange\n\nYour language not supported? [Submit a feature request](https://github.com/tulipsolutions/tecl/issues) \nor [compile](#compile-from-source) the bindings for your language by yourself.\n\n### Include in another Bazel project\n\nInclude this project as an external dependency in your `WORKSPACE`\n\n    load(\"@bazel_tools//tools/build_defs/repo:git.bzl\", \"git_repository\")\n\n    git_repository(\n        name = \"nl_tulipsolutions_tecl\",\n        commit = \"\u003ccommit ID\u003e\",\n        remote = \"https://github.com/tulipsolutions/tecl.git\",\n    )\n\nDepend on the API parts that you need in your build files, for example:\n\n    java_library(\n        name = \"lib\",\n        srcs = glob([\"*.java\"]),\n        deps = [\"@nl_tulipsolutions_tecl//tulipsolutions/api/priv:order_jvm_grpc\"],\n    )\n\n## Usage with other build tools\n\nAn alternative to using Bazel is to compile stubs in your language direct from the protobuf definitions.\n[gRPC.io](https://grpc.io/docs/) contains a list of officially supported languages.\nVisit our [getting started from source](https://demo.tulipsolutions.nl/docs/getting-started/from-source.html) page,\nselect your preferred language and follow the tutorial.\n\n## Testing against the Exchange\n\nFor the purpose of verifying your client side code, we provide a number of options:\n\n* Online demo; create an account and use your private JWT obtained there (see API access).\n* Online mocked gRPC; returning bogus stateless data with a shared dummy JWT that works out of the box from a clone\n  (this is the default).\n* Offline mocked gRPC; run a gRPC server locally with just one command. See [`mockgrpc/README.md`](mockgrpc/README.md).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftulipsolutions%2Ftecl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftulipsolutions%2Ftecl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftulipsolutions%2Ftecl/lists"}