{"id":15687273,"url":"https://github.com/dmuhs/web3data-py","last_synced_at":"2025-04-20T00:31:52.623Z","repository":{"id":37023985,"uuid":"247438937","full_name":"dmuhs/web3data-py","owner":"dmuhs","description":"A Python library for the amberdata.io API","archived":false,"fork":false,"pushed_at":"2022-12-26T21:35:49.000Z","size":159,"stargazers_count":9,"open_issues_count":9,"forks_count":2,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-13T03:49:23.492Z","etag":null,"topics":["amberdata","api-client","bitcoin","bitcoin-cash","bitcoin-sv","blockchain","ethereum","litecoin","python3","rinkeby-network","stellar","web3","zcash"],"latest_commit_sha":null,"homepage":"https://web3data-py.readthedocs.io/","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/dmuhs.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-15T09:49:06.000Z","updated_at":"2023-06-23T16:15:57.000Z","dependencies_parsed_at":"2023-01-31T02:00:29.233Z","dependency_job_id":null,"html_url":"https://github.com/dmuhs/web3data-py","commit_stats":null,"previous_names":[],"tags_count":8,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmuhs%2Fweb3data-py","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmuhs%2Fweb3data-py/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmuhs%2Fweb3data-py/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmuhs%2Fweb3data-py/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmuhs","download_url":"https://codeload.github.com/dmuhs/web3data-py/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249833647,"owners_count":21331847,"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":["amberdata","api-client","bitcoin","bitcoin-cash","bitcoin-sv","blockchain","ethereum","litecoin","python3","rinkeby-network","stellar","web3","zcash"],"created_at":"2024-10-03T17:46:26.545Z","updated_at":"2025-04-20T00:31:52.245Z","avatar_url":"https://github.com/dmuhs.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"======================\nweb3data-py Python API\n======================\n\n.. image:: https://img.shields.io/pypi/v/web3data.svg\n    :target: https://pypi.python.org/pypi/web3data\n\n.. image:: https://img.shields.io/travis/dmuhs/web3data-py.svg\n    :target: https://travis-ci.org/github/dmuhs/web3data-py\n\n.. image:: https://readthedocs.org/projects/web3data-py/badge/?version=latest\n    :target: https://web3data-py.readthedocs.io/?badge=latest\n    :alt: Documentation Status\n\n.. image:: https://pyup.io/repos/github/dmuhs/web3data-py/shield.svg\n    :target: https://pyup.io/repos/github/dmuhs/web3data-py/\n    :alt: Updates\n\n.. image:: https://coveralls.io/repos/github/dmuhs/web3data-py/badge.svg?branch=master\n    :target: https://coveralls.io/github/dmuhs/web3data-py?branch=master\n\n\nObtaining an API Key\n--------------------\n\nVisit `Amberdata.io \u003chttps://amberdata.io/pricing\u003e`_ and select the developer plan to get started!\nPass your API key to the client instance, either has a hardcoded string, or through an environment\nvariable:\n\n.. code-block:: python\n\n    from web3data import Web3Data\n    w3d = Web3Data(\"\u003cyour key\u003e\")\n\n... and start querying!\n\n\nInstallation\n------------\n\nTo install web3data-py, run this command in your terminal:\n\n.. code-block:: console\n\n    $ pip install web3data\n\nFor alternative ways to install the package, check out the\n`installation instructions \u003chttps://web3data-py.readthedocs.io/installation.html\u003e`_\n\n\nUsage\n-----\n\n.. code-block:: python\n\n    from web3data import Web3Data\n\n    w3d = Web3Data(\"\u003cyour key\u003e\")\n    print(w3d.eth.address.information(\"0x06012c8cf97bead5deae237070f9587f8e7a266d\"))\n\nThis will print the raw response, such as:\n\n.. code-block:: python\n\n        {'status': 200,\n         'title': 'OK',\n         'description': 'Successful request',\n         'payload': {'balance': '5296672643815245964',\n          'balanceIn': '3.0894905437937322715551e+22',\n          'balanceOut': '3.0889608765293507469587e+22',\n          'addressType': 'contract',\n          'changeInPrice': None,\n          'contractTypes': ['ERC721'],\n          'decimals': '0',\n          'name': 'CryptoKitties',\n          'numHolders': '84753',\n          'numTokens': '1860119',\n          'numTransfers': '2723659',\n          'symbol': 'CK',\n          'totalSupply': '1860119.0000000000000000',\n          'totalValueUSD': None,\n          'unitValueUSD': None}}\n\n\nDevelopment\n-----------\n\nCheck out our `contribution guidelines \u003chttps://web3data-py.readthedocs.io/contributing.html\u003e`_\nto see how to install the development version and run the test suite!\n\nDon't have the time to contribute? Open up an issue and we'll get it fixed!\nSimply like the project? Tip me some `BAT \u003chttps://brave.com/dmu968\u003e`_ to sponsor development! :)\n\n\nResources\n---------\n\n* Free software: MIT license\n* Documentation: https://web3data-py.readthedocs.io.\n\n\nCredits\n-------\n\nThe initial version of this package was created with Cookiecutter_ and the `audreyr/cookiecutter-pypackage`_ project template.\n\n.. _Cookiecutter: https://github.com/audreyr/cookiecutter\n.. _`audreyr/cookiecutter-pypackage`: https://github.com/audreyr/cookiecutter-pypackage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmuhs%2Fweb3data-py","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmuhs%2Fweb3data-py","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmuhs%2Fweb3data-py/lists"}