{"id":18643051,"url":"https://github.com/beraldoleal/pycccl","last_synced_at":"2025-07-13T23:34:13.665Z","repository":{"id":57455754,"uuid":"114665166","full_name":"beraldoleal/pycccl","owner":"beraldoleal","description":"Python Crypto Currency Common Library","archived":false,"fork":false,"pushed_at":"2017-12-20T13:43:43.000Z","size":15,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-06-22T15:06:06.092Z","etag":null,"topics":["crypto","crypto-exchanges","cryptocurrency"],"latest_commit_sha":null,"homepage":null,"language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/beraldoleal.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2017-12-18T16:48:35.000Z","updated_at":"2020-02-13T16:16:45.000Z","dependencies_parsed_at":"2022-09-05T18:12:15.364Z","dependency_job_id":null,"html_url":"https://github.com/beraldoleal/pycccl","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/beraldoleal/pycccl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beraldoleal%2Fpycccl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beraldoleal%2Fpycccl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beraldoleal%2Fpycccl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beraldoleal%2Fpycccl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/beraldoleal","download_url":"https://codeload.github.com/beraldoleal/pycccl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/beraldoleal%2Fpycccl/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265220910,"owners_count":23729907,"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":["crypto","crypto-exchanges","cryptocurrency"],"created_at":"2024-11-07T06:02:00.520Z","updated_at":"2025-07-13T23:34:13.646Z","avatar_url":"https://github.com/beraldoleal.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"#############################################\nPython (C)rypto (C)urrency (C)ommon (L)ibrary\n#############################################\n\n|Experimental| |Tag| |Release| |License|\n\n*pycccl* is a library which aims to standardize access to information provided\nby multiple exchanges sites.\n\nEach exchange has a specific API with different methods to access basic\ninformation. Using *pycccl* you have access to all supported exchanges in the\nsame way.\n\n.. note::\n\n    On the future, this library will also talk with private API methods in\n    order to execute actions that requires authentication.\n\nQuick Start\n***********\n\nInstalling\n==========\n\nThis project uses python3. So in order to use this software please install\npython3 into your environment beforehand.\n\nInstalling via git source code:\n\n.. code-block:: shell\n\n   $ git clone https://github.com/beraldoleal/pycccl.git\n\nAfter cloning, the installation process is done by standard `setuptools` install\nprocedure:\n\n.. code-block:: shell\n\n   $ cd pycccl\n   $ sudo python3 setup.py install\n\nIf you prefer, you can install via pip command:\n\n.. code-block:: shell\n\n   $ sudo pip3 install pycccl\n\n\nBasic Usage Example\n===================\n\nSee how it is easy to get a token price at a specific exchange:\n\n.. code-block:: python\n\n    \u003e\u003e\u003e from pycccl.exchanges.poloniex import Poloniex\n    \u003e\u003e\u003e polo = Poloniex()\n    2017-12-17 14:22:04.690598 [Poloniex] INFO: Creating component\n    \u003e\u003e\u003e polo.get_last_price('BTC', 'USDT')\n    18500.00000104\n\nAll exchanges classes has implemented the following methods: *get_24highest()*,\n*get_24lowest()*, *get_24volume()*, *get_last_price()*, *get_ticker()*.\n\n.. note::\n\n    A detalied documentation API of this library will be released soon.\n\nExchanges Supported\n===================\n\nFor now, we have support to: bitbay, bitfinex, bitstamp, blinktrade, cexio,\nliqui, poloniex, yobit and Binance.\n\nAuthors\n*******\n\nFor a complete list of authors, please open ``AUTHORS.rst`` file.\n\nContributing\n************\n\nPlease feel free to open an issue or submit a PR for this project. Also let me\nknow if you have interest on a specific exchange support.\n\nLicense\n*******\n\nThis software is under *MIT-License*. For more information please read\n``LICENSE`` file.\n\n\n.. |Experimental| image:: https://img.shields.io/badge/stability-experimental-orange.svg\n.. |Tag| image:: https://img.shields.io/github/tag/beraldoleal/pycccl.svg\n   :target: https://github.com/beraldoleal/pycccl/tags\n.. |Release| image:: https://img.shields.io/github/release/beraldoleal/pycccl.svg\n   :target: https://github.com/beraldoleal/pycccl/releases\n.. |License| image:: https://img.shields.io/github/license/beraldoleal/pycccl.svg\n   :target: https://github.com/beraldoleal/pycccl/blob/master/LICENSE\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberaldoleal%2Fpycccl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fberaldoleal%2Fpycccl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fberaldoleal%2Fpycccl/lists"}