{"id":15201967,"url":"https://github.com/demining/electrum-google-colab","last_synced_at":"2025-04-12T12:50:29.940Z","repository":{"id":144620931,"uuid":"460603983","full_name":"demining/electrum-Google-Colab","owner":"demining","description":"Electrum Bitcoin Wallet Google Colab","archived":false,"fork":false,"pushed_at":"2022-07-02T01:12:33.000Z","size":29979,"stargazers_count":0,"open_issues_count":0,"forks_count":11,"subscribers_count":2,"default_branch":"2.9.x","last_synced_at":"2025-03-26T07:36:04.497Z","etag":null,"topics":["bitcoin","bitcoin-api","bitcoin-core","bitcoin-payment","bitcoin-transaction","bitcoin-wallet","colab","colab-notebook","colab-notebooks","colab-tutorial","colaboratory","google-colab","google-colab-notebook","google-colab-notebooks","google-colab-tutorial","google-colaboratory","google-colaboratory-notebooks","googlecolab"],"latest_commit_sha":null,"homepage":"","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/demining.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":"AUTHORS","dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-17T20:51:30.000Z","updated_at":"2024-08-12T20:20:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"3667c866-6280-40d1-b689-63f291e0b4e9","html_url":"https://github.com/demining/electrum-Google-Colab","commit_stats":{"total_commits":6671,"total_committers":206,"mean_commits":"32.383495145631066","dds":"0.49168040773497224","last_synced_commit":"f72d0c805e894a765fa27afb94f31e96f4d316b1"},"previous_names":[],"tags_count":149,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/demining%2Felectrum-Google-Colab","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/demining%2Felectrum-Google-Colab/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/demining%2Felectrum-Google-Colab/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/demining%2Felectrum-Google-Colab/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/demining","download_url":"https://codeload.github.com/demining/electrum-Google-Colab/tar.gz/refs/heads/2.9.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248571329,"owners_count":21126516,"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":["bitcoin","bitcoin-api","bitcoin-core","bitcoin-payment","bitcoin-transaction","bitcoin-wallet","colab","colab-notebook","colab-notebooks","colab-tutorial","colaboratory","google-colab","google-colab-notebook","google-colab-notebooks","google-colab-tutorial","google-colaboratory","google-colaboratory-notebooks","googlecolab"],"created_at":"2024-09-28T04:00:16.464Z","updated_at":"2025-04-12T12:50:29.920Z","avatar_url":"https://github.com/demining.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"-------------------------\n### Run electrum-Google-Colab\n\nhttps://colab.research.google.com/drive/1OShIMVcFZ_khsUIBOIV1lzrqAGo1gfm_?usp=sharing\n\n-------------------------\n\n::\n\n  Licence: MIT Licence\n  Author: Thomas Voegtlin\n  Language: Python\n  Homepage: https://electrum.org/\n\n\n.. image:: https://travis-ci.org/spesmilo/electrum.svg?branch=master\n    :target: https://travis-ci.org/spesmilo/electrum\n    :alt: Build Status\n\n\n\n\n\nGetting started\n===============\n\nElectrum is a pure python application. If you want to use the\nQt interface, install the Qt dependencies::\n\n    sudo apt-get install python-qt4\n\nIf you downloaded the official package (tar.gz), you can run\nElectrum from its root directory, without installing it on your\nsystem; all the python dependencies are included in the 'packages'\ndirectory. To run Electrum from its root directory, just do::\n\n    ./electrum\n\nYou can also install Electrum on your system, by running this command::\n\n    python setup.py install\n\nThis will download and install the Python dependencies used by\nElectrum, instead of using the 'packages' directory.\n\nIf you cloned the git repository, you need to compile extra files\nbefore you can run Electrum. Read the next section, \"Development\nVersion\".\n\n\n\nDevelopment version\n===================\n\nCheck out the code from Github::\n\n    git clone git://github.com/spesmilo/electrum.git\n    cd electrum\n\nRun install (this should install dependencies)::\n\n    python setup.py install\n\nCompile the icons file for Qt::\n\n    sudo apt-get install pyqt4-dev-tools\n    pyrcc4 icons.qrc -o gui/qt/icons_rc.py\n\nCompile the protobuf description file::\n\n    sudo apt-get install protobuf-compiler\n    protoc --proto_path=lib/ --python_out=lib/ lib/paymentrequest.proto\n\nCreate translations (optional)::\n\n    sudo apt-get install python-pycurl gettext\n    ./contrib/make_locale\n\n\n\n\nCreating Binaries\n=================\n\n\nTo create binaries, create the 'packages' directory::\n\n    ./contrib/make_packages\n\nThis directory contains the python dependencies used by Electrum.\n\nMac OS X\n--------\n\n::\n\n    # On MacPorts installs: \n    sudo python setup-release.py py2app\n    \n    # On Homebrew installs: \n    ARCHFLAGS=\"-arch i386 -arch x86_64\" sudo python setup-release.py py2app --includes sip\n    \n    sudo hdiutil create -fs HFS+ -volname \"Electrum\" -srcfolder dist/Electrum.app dist/electrum-VERSION-macosx.dmg\n\nWindows\n-------\n\nSee `contrib/build-wine/README` file.\n\n\nAndroid\n-------\n\nSee `gui/kivy/Readme.txt` file.\n\n----\n\n|  | Donation Address |\n| --- | --- |\n| ♥ __BTC__ | 1Lw2kh9WzCActXSGHxyypGLkqQZfxDpw8v |\n| ♥ __ETH__ | 0xaBd66CF90898517573f19184b3297d651f7b90bf |\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdemining%2Felectrum-google-colab","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdemining%2Felectrum-google-colab","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdemining%2Felectrum-google-colab/lists"}