Reference client for Bitmessage: a P2P encrypted decentralised communication protocol:
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Dmitri Bogomolov 7a89109fc9
New logging approach in order to reduce imports from submodules
and use logging without risk of circular import. Only subpackage
that imports from debug is bitmessageqt - because it also uses
debug.resetLogging().
Instead of from debug import logger is now recommended to use:

import logging

logger = logging.getLogger('default')

All subclasses of StoppableThread now have a logger attribute.
All threading related stuff except for set_thread_name()
was moved from helper_threading to network.threads.

Fixed two my mistakes from previous edit of debug in a1a8d3a:

 - logger.handlers is not dict but iterable
 - sys.excepthook should be set unconditionally
4 years ago
build Compiletest for non-Windows systems 7 years ago
buildscripts added builder.sh script 4 years ago
desktop Slightly redrawn the scalable icon 6 years ago
dev Changes based on style and lint checks. (final_code_quality_17) 5 years ago
docs Remove "Edit on Github" link: https://github.com/sphinx-doc/sphinx/issues/2386 4 years ago
examples Changes based on style and lint checks. (final_code_quality_12) 5 years ago
fabfile Merge branch 'v0.6' into fabric_task_improvements 5 years ago
man Packaging for multiple distros 10 years ago
packages update spec file for build script cross compile exe 4 years ago
src New logging approach in order to reduce imports from submodules 4 years ago
.gitignore Add setuptools sphinx integration 4 years ago
.travis.yml Try to test with tor 4 years ago
COPYING Changed copyright year to 2019 5 years ago
Dockerfile Create user "bitmessage" to setup and run bitmessaged 5 years ago
INSTALL.md update formula 5 years ago
LICENSE Changed copyright year to 2019 5 years ago
MANIFEST.in More complex container: 5 years ago
PULL_REQUEST_TEMPLATE.md Added: Sphinx docs, testing readthedocs integration 5 years ago
README.md Update README 4 years ago
android_instruction.rst Added Navigation Drawer UI with create feature 5 years ago
bandit.yml Fixed: Simple Codacy errors and warnings in src/helper_* 5 years ago
checkdeps.py Fix error. EXTRAS_REQUIRE is dictionary not a list. 5 years ago
configure Packaging for multiple distros 10 years ago
pybitmessage A symlink for famous setuptools bug 4 years ago
requirements.txt Try to test with tor 4 years ago
setup.cfg Ignore deprecated flake8 W503 4 years ago
setup.py Add setuptools sphinx integration 4 years ago

README.md

PyBitmessage

Bitmessage is a P2P communication protocol used to send encrypted messages to another person or to many subscribers. It is decentralized and trustless, meaning that you need-not inherently trust any entities like root certificate authorities. It uses strong authentication, which means that the sender of a message cannot be spoofed. BM aims to hide metadata from passive eavesdroppers like those ongoing warrantless wiretapping programs. Hence the sender and receiver of Bitmessages stay anonymous.

Development

Bitmessage is a collaborative project. You are welcome to submit pull requests although if you plan to put a non-trivial amount of work into coding new features, it is recommended that you first describe your ideas in the separate issue.

Feel welcome to join chan "bitmessage", BM-2cWy7cvHoq3f1rYMerRJp8PT653jjSuEdY

References