Package with tools to generate/convert csv|xlsx files for importing transactions into Delta or tax return software.
Project description
tradingconv
Are you trading with Cryptocurrencies on Binance? Do you need a tool to manage the different file formats platforms like Binance uses for exporting the trading history, e.g. to import into tax return software or for tracking your portfolie in delta?
This package provide the appropriate tools for handling different formats of trading history files. Furthermore, the Binance API limitation that allows to only export trading history in an three month interval is lifted so that you can export your full trading history. No need to generate an API key and expose it to third-party applications. Just use you local login session.
Installation
This package is hosted on PyPI so just install tradingconv
with
pip install tradingconv
Commands
This package comes equipped with multiple tools. Here is a list of currently available tools.
Command | Description |
---|---|
binancecrawler | Query Binance to export the full trade history |
tradingconv | Convert supported (csv,xlsx) files into other supported formats |
Query Binance
Despite using the official API of Binance which limits the trade history to the last three month,
binancecrawler
is able to retrieve and export the full trade history.
Therefore, binancecrawler
requires the session cookies of an active Binance connection on the current machine.
The parameter --cookies
should therefore point to a file containing a string with the cookies.
)
Save Binance session
In order to retrieve the Cookies of an active Binance session, log in into Binance and export the Cookies. I've setup a list of links with a description on how to do this for different browser.
To the best of my knowledge, the following cookies are currently required in order to gain access to the active session:
- JSESSIONID
- __BINANCE_USER_DEVICE_ID__
Save all of theses variables into a file with only one line in the following format:
line:=<var>+ <EOL>
var:=<variable>=<value>;
<variable> = "JSESSIONID" | "__BINANCE_USER_DEVICE_ID__ "
With <value>
as the value of the variable. A line thus looks like:
JSESSIONID=<value>;__BINANCE_USER_DEVICE_ID__<value>
Finally, we need an additional csrftoken Binance uses for internal queries. You can read this token out by switching to
your account page, open the development console of you browser (the one where you've copied the cookies from) and search
for an entry getUserLoginLog.html
. You'll find the csrftoken in the header of the message.
Retrieve trade history
Now you can query Binance to retrieve your trade history within a specific inverval with
binancecrawler --cookies <cookie_file> --token <csrftoken> --start "2018-01-01 00:00:00" --end "2018-01-02 00:00:00" --output trade_file.csv
or simply the full history by passing a start some time ago your account creation.
binancecrawler --cookies <cookie_file> --token <csrftoken> --start "2000-01-01 00:00:00" --output full_trade_file.csv
Convert to other formats
To finally convert csv or xlxs files to the other csv or xlsx format, tradingconv
does the trick.
The following source formats are supported:
- bitpanda: From the export function of the Bitpanda website
- binance: From the export function on the Binance website
- binancecrawler: The csv file created by
binancecrawler
The following output formats are supported:
- binance: The xlsx format used by Binance.
- delta: The csv file format used by Delta.
More formats may supported in the future.
So, to convert the full trade history exported by binancecrawler
to the delta format, simply call:
tradingconv --format delta --file full_trade_file.csv --output delta_trades.csv
Thanks
If you like this tool, donate some bugs 💸 for a drink or two at the ETH-Wallet 0xbbf40ba9f8de33061ebd9eecafc0c4b2081ad14f or via PayPal. Cheers 🍻!
License
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Project details
Release history 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 Distributions
Built Distribution
File details
Details for the file tradingconv-1.3.0-py3-none-any.whl
.
File metadata
- Download URL: tradingconv-1.3.0-py3-none-any.whl
- Upload date:
- Size: 37.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.23.4 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b1688b787bacfa4b51709cfefacf107c5141e3600b2ca4e8d708c5d5db3db63c |
|
MD5 | b893335cf497db5f56c79464871309e1 |
|
BLAKE2b-256 | a7cfc70686ca903e700e7c1c57678f81d54a62e191da1c5f4e51ea6a818b785f |