rp2 0.9.10

admin

Privacy-focused, free, open-source cryptocurrency US tax calculator, up to date for fiscal year 2021: it handles multiple coins/exchanges and computes long/short-term capital gains, cost bases, in/out lot relationships/fractioning, and account balances.It supports FIFO and LIFO and it generates data that tax accountants can understand, even if they are not cryptocurrency experts (e.g.form 8949). Project description…

Privacy-focused, free, open-source cryptocurrency US tax calculator, up to date for fiscal year 2021: it handles multiple coins/exchanges and computes long/short-term capital gains, cost bases, in/out lot relationships/fractioning, and account balances.It supports FIFO and LIFO and it generates data that tax accountants can understand, even if they are not cryptocurrency experts (e.g.form 8949).

Project description

RP2 v0.9.10

Table of Contents

– [Introduction]

– [License]

– [Download]

– [Installation]

– [Running]

– [Reporting Bugs]

– [Developer Documentation]

– [Frequently Asked Questions]

– [Donations]

Introduction

RP2 is a privacy-focused, free, open-source US cryptocurrency tax calculator, that is up to date for Fiscal Year 2021.Preparing crypto taxes can be a daunting and error-prone task, especially if multiple transactions, coins, exchanges and wallets are involved.

This task could be delegated to a crypto tax preparation service, but many crypto users value their privacy and prefer not to send their transaction information to third parties unnecessarily.Additionally, many of these services cost money.RP2 solves all of these problems:

– it manages the complexity related to coin flows and tax calculation and it generates data that accountants can understand (in the format of form 8949), even if they are not cryptocurrency experts;

– it prioritizes user privacy by storing crypto transactions and tax results on the user’s computer and not sending them anywhere else;

– it’s free and open-source.

Additionally, RP2 supports the FIFO and LIFO accounting methods, to help minimize the amount due.

RP2 reads in a user-prepared spreadsheet containing crypto transactions.It then uses high-precision math to calculate long/short term capital gains, cost bases, balances, average price, in/out lot relationships/fractions, and finally it generates output spreadsheets.

It has a programmable plugin architecture for output generators , accounting methods and countries .

The output generator builtin plugins are US-specific, but RP2’s architecture makes it possible to contribute additional generators for different countries or for different US-based cases.The builtin generator plugins are:

– tax_report_us: generates a tax report meant to be read by tax preparers (in the format of form 8949);

– rp2_full_report: generates a comprehensive report, with complete transaction history, lot relationships/fractions and computation details.

RP2 has extensive unit test coverage to reduce the risk of regression.

IMPORTANT DISCLAIMERS:

– RP2 offers no guarantee of correctness (read the [license] ): always verify results with the help of a tax professional.

– The author of RP2 is not a tax professional, but has used RP2 personally for a few years.

How RP2 Operates

RP2’s has been designed to provide expressive primitives that can be used as building blocks for most tax scenarios.As such, complex tax events can be described with patterns, built on top of these primitives (see the FAQ list for examples).

RP2 treats virtual currency as property for tax purposes, as per IRS Virtual Currency Guidance .

RP2 suports the FIFO and LIFO accounting methods: however, in and out lots typically don’t have matching amounts, so RP2 fractions them, maps in/out lot fractions and computes the resulting cost bases and capital gains for each lot fraction.

RP2 groups lot fractions into the following taxable event categories, each of which has a specific tax treatment :

– [AIRDROP] : gains from airdrops;

– DONATE: donations to charitable organizations;

– GIFT: gifts to parties who are not charitable organizations (not tax-deductible).

– [HARDFORK] : gains from hard forks;

– INTEREST: gains from interest;

– [MINING] : gains from mining;

– MOVE: the fee for moving currency between two accounts controlled by the same owner;

– SELL: specifically, sale and [exchange of one cryptocurrency for another] .RP2 splits them in two subcategories:long-term capital gains, if the lot was held for more than 1 year, orshort-term capital gains otherwise;

– [STAKING] : gains from staking;

– WAGES: income from crypto wages.

For each of these categories RP2 generates an output spreadsheet with transaction details and computed gains/losses (see Input and Output Files for more details).

Users can give this output to their tax preparer with the rest of their tax documentation (see also FAQ on which tax forms to file ).Note that buying cryptocurrency using fiat currency is not a taxable event.

NOTE ON NFTs: Read the FAQ on NFTs to learn about how RP2 treats NFTs.

License

RP2 is released under the terms of Apache License Version 2.0.

For more information see LICENSE or http://www.apache.org/licenses/LICENSE-2.0 .

Download

The latest version of RP2 can be downloaded at: https://pypi.org/project/rp2/

Installation

RP2 has been tested on Ubuntu Linux, macOS and Windows 10 but it should work on all systems that have Python version 3.7.0 or greater.

Installation on Ubuntu Linux

Open a terminal window and enter the following commands:

sudo apt-get update sudo apt-get install python3 python3-pip

Then install RP2:

pip install rp2

Installation on macOS

First make sure Homebrew is installed, then open a terminal window and enter the following commands:

brew update brew install python3

Then install RP2:

pip install rp2

Installation on Windows 10

First make sure Python 3.7 or greater is installed (in the Python installer window be sure to click on “Add Python to PATH”), then open a PowerShell window and enter the following:

pip install rp2

Installation on Other Unix-like Systems

– install python 3.7 or greater

– install pip3

pip install rp2

Running

Before running RP2, the user must prepare two files:

– an ODS-format spreadsheet, containing crypto transactions (ODS-format files can be opened and edited with [LibreOffice] and many other spreadsheet applications);

– a JSON config file, describing the format of the spreadsheet file: what value each column corresponds to (e.g.

timestamp, amount, exchange, fee, etc.) and which cryptocurrencies and exchanges to expect.

The formats of these files are described in detail in the Input Files section of the documentation.

Examples of an input spreadsheet and its respective config file:

– [input/crypto_example.ods]

– [config/crypto_example.config] (if desired, this config file can be used as boilerplate).

After reading the input files, RP2 computes taxes and generates output files, which contain information on long/short capital gains, cost bases, balances, average price, in/out lot relationships and fractions.They are described in detail in the Output Files section of the documentation.

To try RP2 with example files, download crypto_example.ods and crypto_example.config .Let’s call

the location of the downloaded files.

To generate output for the example files open a terminal window (or PowerShell if on Windows) and enter the following commands:

cd rp2_us -m fifo -o output -p crypto_example_ crypto_example.config crypto_example.ods

Results are generated in the

output directory and logs are stored in the

log directory.

The

-m option is particularly important, because is selects the accounting method: RP2 supports FIFO and LIFO (if

-m is not specified it defaults to FIFO).

To print full command usage information for the

rp2_us command:

rp2_us –help

Input and Output Files

Read the input files and output files documentation.

Reporting Bugs

Read the Contributing document.

Contributing

Read the https://github.com/eprbell/rp2/tree/main/CONTRIBUTING.md document.

Developer Documentation

Read the developer documentation .

Frequently Asked Questions

Read the user FAQ list and the developer FAQ list .

Donations

If RP2 is useful to you, consider making a donation and / or leaving a star on the project Github page .Thank you for supporting independent, open-source developers!

Change Log

Read the Change Log document.

RP2 Change Log

v0.9.10

– fixed [issue #6] : OUT transaction fee is now a deduction as per and (previously it was considered part of proceeds and therefore taxed)

– restructured User FAQ document

– added several questions to User FAQ document (many of them DeFi-related)

– various edits and improvements throughout entire documentation

v0.9.9

– add DONATE and GIFT-typed InTransactions

– changed Legend sheet to include time filter information

– updated documentation to reflect changes in this version

v0.9.8

– added hyperlinks to rp2_full_report output:taxable events and acquired lots in tax sheet are now hyperlinked to their definition line in the in-out sheet.In LibreOffice, CTRL-click on them to jump to the target (on Mac Command-click)summary lines in the Summary sheet are now hyperlinked to the first line of the given year in the tax sheet

– modified time filter CLI options (-f and -t) to accept a full date (YYYY-MM-DD): so it’s now possible to filter transactions before and after a given day

– major refactoring: renamed “from lot” and “in lot” to “acquired lot” throughout identifiers, strings, templates, documentation, etc.

– updated documentation to reflect changes in this version

v0.9.7

– added profiler instrumentation

– added large input test and refactored ODS output test

– removed rmtree(“output”) from test_ods_output_diff.py: it modifies the file system, which can cause problems when running tests in parallel (currently not enabled, but that may change in the future).

– minor fixes

v0.9.6

– fixed a bug in timestamp check: in and out lots were not allowed to have the same timestamp, but in certain scenarios it could happen (e.g.

high-frequency trading)

– fixed a subtle corner-case bug in LIFO, which caused the first gain/loss pair to be incorrect: the minimal input that reproduced the bug is now captured in one of the tests (test_data2.ods, sheet B1).This ensures there will not be a regression.

– disable a link check in user faq: the link was failing the check (incorrectly) on Github actions

v0.9.5

– added new LIFO tests

– minor fixes

v0.9.4

– added accounting-method programmable plugin infrastructure: by subclassing AbstractAccountingMethod it’s now possible to add support for a new accounting method (previously only FIFO was hard-coded in)

– added accounting-method plugins: FIFO, LIFO

– added accounting-method-specific tests, plus additional tests of internal classes (both new and old)

– Added Legend sheet to tax_report_us output

– updated documentation to reflect changes in this version

– minor fixes

v0.9.3

– added country-specific programmable plugin infrastructure: by subclassing AbstractCountry it’s now possible to add support for a new country (currently only US is supported)

– abstracted out currency from APIs and code in general: references to “usd” have been changed to “fiat”

– updated documentation to reflect changes in this version

v0.9.2

– Verified software is up to date for FY 2021

– Wrote several answers in User FAQ document

– Minor fixes

v0.8.1

– Added several new tests (from/to_year command line option variations and new transaction types)

– Reworked time filter logic to fix two bugs related to -f and -t options:with time filtering on, running sums reflected only filtered transactions, instead of all transactions (in other words, running sums should not be affected by filtering)with time filtering on, number of fractions reflected also fractions with year higher than time filterwith time filtering on, sold lot percentages would be shown incorrectly in some cases

– Updated documentation: various fixes and improvements

v0.8.0

– added new transaction types: AIRDROP, HARDFORK, INTEREST, MINING, STAKING, WAGES.Removed transaction type EARN, which used to encompass all the above types

– revisited output generators: rp2_report was renamed to rp2_full_report and mock_8949_us was renamed to tax_report_us.The tax_report_us plugin now generates one sheet per taxable event type: Airdrops, Capital Gains, Donations, Gifts, Hard Forks, Interest, Investment Expense, Mining, Staking, Wages.

– fixed bug in from/to_year logic: entry sets didn’t consider the time filter in certain corner cases

– updated documentation to reflect above changes

v0.7.3

– Added from/to_year command line option

v0.7.2

– Minor fixes related to Pypi package distribution and upload

v0.7.1

– Minor fixes related to Pypi package distribution and upload

v0.7.0

– First version uploaded to Pypi

– Added pre-commit hooks

– Added bandit security checks

– Major revision of user and developer documentation

– Fixed lint errors

– Various bug fixes and improvements

v0.6.0

– First version tracked in change log

– Added Python packaging support

– Switched to high-precision math (decimal.Decimal)

– Finished documentation (except FAQs)

– Added bumpversion

– Various bug fixes and improvements

Project details

Release history [Release notifications](/help/#project-release-notifications) |

[RSS feed ](/rss/project/rp2/releases.xml)

[Release notifications] |

[RSS feed]

Download files

Download the file for your platform.

If you’re not sure which to choose, learn more about installing packages .

Source Distribution

Built Distribution

[Close]

[Hashes] for rp2-0.9.10.tar.gz

|Algorithm||Hash digest|

|SHA256|

|MD5|

|BLAKE2-256|

866bac2f3bedac2038bd7fe058f1172f39f3a039877644a37ff4c95cc098d873

6f4c4016bc09b4fa7d747de15e62bc68

0a5093c7abdfb2e9da10ab2cd939b05079caf5603132fb3ab395f949092af942

[Close]

[Hashes] for rp2-0.9.10-py3-none-any.whl

|Algorithm||Hash digest|

|SHA256|

|MD5|

|BLAKE2-256|

9b4b57c06ad09f96e166c7328fefb0991d55b3a5e9bdc05f4921722e7bf8e7cc

d474bbfc6c06f1893c80088295841502

281f613da4fbab7ab0eac402af7cfb633bc47bd93786ecd32294bb538bf61d52.

Leave a Reply

Next Post

QuickSwap Soars 7% After Partnering With CelsiusX, More Gains Ahead?

Largest decentralized exchange on Polygon, QuickSwap recently announced a cooperation With CelsiusX.The DeFi arm of Celsius, the decentralized financial services network founded by Alex Mashinsky, the partners are set to bring more liquidity and create yield opportunities for users on the sector. Related Reading | Celsius CEO: “Elon Is A Tourist In Crypto” The partnership…
QuickSwap Soars 7% After Partnering With CelsiusX, More Gains Ahead?

Subscribe US Now