bitcoin-data-analysis
Tools for analyzing data on Bitcoin and Lightning Network
File Explorer
- addresses.py
- coinbase.py
- mining.py
- taproot.py
- __init__.py
- config.py
- discord.py
- telegram.py
- __init__.py
- bitcoin_rpc.py
- blockstream.py
- mempool.py
- quiknode.py
- __init__.py
- Lightning_Network.py
- bitpolito_logo.png
- lightning.gif
- On-chain.py
- btc_conf.py
- client.py
- Dockerfile
- grafana.ini
- Dockerfile
- prometheus.yml
- Dockerfile
- docker-compose.yml
- readme.md
- conftest.py
- test_blockstream.py
- test_btc_rpc.py
- .env.example
- .gitignore
- Dockerfile
- LICENSE
- Makefile
- pyproject.toml
- README.md
- requirements.txt
- setup.py
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
nano
View Details ▼
nano
Text editor. An enhanced `pico` clone.
See also: `pico`, `rnano`.
nano {{path/to/file1 path/to/file2 ...}}
Open specific files, moving to the next file after closing the previous one:
nano {{[-I|--ignorercfiles]}}
Start the editor without using configuration files:
nano +{{line}},{{column}} {{path/to/file}}
Open a file and position the cursor at a specific line and column:
pip install
View Details ▼
pip install
Install Python packages.
pip install {{package1 package2 ...}}
Install one or more packages:
pip install {{package1 package2 ...}} {{[-U|--upgrade]}}
Upgrade all specified packages to the latest version, installing any that are not already present:
pip install {{package}}=={{version}}
Install a specific version of a package:
poetry install
View Details ▼
poetry install
Install all dependencies for a Python project as defined in the pyproject.toml file.
poetry install
Install dependencies:
poetry install --no-root
Skip installing the project itself as a dependency:
poetry install --without dev
Install only production dependencies:
poetry run
View Details ▼
poetry run
Run a command in the project's virtual environment.
poetry run {{command}}
Run a command inside the virtual environment:
poetry run {{command}} {{argument1 argument2 ...}}
Run a command with arguments:
poetry run {{script_name}}
Run a script defined in `pyproject.toml`:
# Project Badges
-
License Visit
