Skip to main content

The Python FinTech package (SEPA, EBICS & more)

Project description

This package contains all the functionality that is required to work with EBICS, SEPA and other financial technologies. The usage has been realised as simple as possible but also as flexible as necessary.

Features

  • Support of EBICS versions 2.4, 2.5 and 3.0

  • Obtain bank account statements (incl. CAMT and MT940 parser)

  • Create and submit SEPA credit transfers (pain.001)

  • Create and submit SEPA direct debits CORE/B2B (pain.008)

  • Mostly full SEPA support (including special schemes for CH and IT)

  • Automatic calculation of the lead time based on holidays and cut-off times

  • Integrated mandate manager (beta)

  • Plausibility check of IBAN and BIC

  • Validation of payment orders against the SEPA Clearing Directory of the German Central Bank

  • Bankcode/Account to IBAN converter according to the rules of the German Central Bank

  • Currency converter

  • DATEV converter (CSV and KNE)

The FinTech package provides you the possibility to manage all of your everyday commercial banking activities such as credit transfers, direct debits or the retrieval of bank account statements in a flexible and secure manner.

All modules can be used free of charge. Only the unlicensed version of the EBICS module has few restrictions. The upload of SEPA documents is limited to a maximum of five transactions and bank account statements can not be retrieved for the last three days.

Examples

Simple SEPA Credit Transfer (pain.001)

import fintech
fintech.register()
from fintech.sepa import Account, SEPACreditTransfer

# Create the debtor account from an IBAN
debtor = Account('DE89370400440532013000', 'Max Mustermann')
# Create the creditor account from a tuple (IBAN, BIC)
creditor = Account(('AT611904300234573201', 'BKAUATWW'), 'Maria Musterfrau')
# Create a SEPACreditTransfer instance
sct = SEPACreditTransfer(debtor)
# Add the transaction
tx = sct.add_transaction(creditor, 10.00, 'Purpose')
# Render the SEPA document
print(sct.render())

Simple SEPA Direct Debit (pain.008)

import fintech
fintech.register()
from fintech.sepa import Account, SEPADirectDebit

# Create the creditor account from a tuple (ACCOUNT, BANKCODE)
creditor = Account(('532013000', '37040044'), 'Max Mustermann')
# Assign the creditor id
creditor.set_creditor_id('DE98ZZZ09999999999')
# Create the debtor account from a tuple (IBAN, BIC)
debtor = Account(('AT611904300234573201', 'BKAUATWW'), 'Maria Musterfrau')
# For a SEPA direct debit a valid mandate is required
debtor.set_mandate(mref='M00123456', signed='2014-02-01', recurrent=True)
# Create a SEPADirectDebit instance of type CORE
sdd = SEPADirectDebit(creditor, 'CORE')
# Add the transaction
tx = sdd.add_transaction(debtor, 10.00, 'Purpose')
# Render the SEPA document
print(sdd.render())

EBICS

import fintech
fintech.register()
from fintech.ebics import EbicsKeyRing, EbicsBank, EbicsUser, EbicsClient

keyring = EbicsKeyRing(keys='~/mykeys', passphrase='mysecret')
bank = EbicsBank(keyring=keyring, hostid='MYBANK', url='https://www.mybank.de/ebics')
user = EbicsUser(keyring=keyring, partnerid='CUSTOMER123', userid='USER1')
# Create new keys for this user
user.create_keys(keyversion='A006', bitlength=2048)

client = EbicsClient(bank, user)
# Send the public electronic signature key to the bank.
client.INI()
# Send the public authentication and encryption keys to the bank.
client.HIA()

# Create an INI-letter which must be printed and sent to the bank.
user.create_ini_letter(bankname='MyBank AG', path='~/ini_letter.pdf')

# After the account has been activated the public bank keys
# must be downloaded and checked for consistency.
print(client.HPB())

# Finally the bank keys must be activated.
bank.activate_keys()

# Download CAMT53 bank account statements
data = client.C53(
    start='2019-02-01',
    end='2019-02-07',
    )
client.confirm_download()

Changelog

v6.6.0 [2021-01-29]
  • Added support for Python 3.9

v6.5.2 [2020-12-06]
  • SEPA: Fixed bug parsing CAMT messages without AmtDtls node.

  • SEPA: Added SCL Card Clearing check to iban.check_bic().

v6.5.0 [2020-10-29]
  • EBICS: Added date range parameters to some download methods.

  • EBICS: Fixed missing TLS SNI support.

  • Dropped support for Python <2.7.9

v6.4.4 [2020-10-13]
  • EBICS: Added method EbicsBank.get_protocol_versions()

  • Fixed issue with Python 3.8

v6.4.1 [2020-07-30]
  • DATEV: Added support for divergent financial years.

v6.4.0 [2020-07-28]
  • EBICS: Added support for external signatures.

  • Added method LicenseManager.list_ebics_users()

v6.3.0 [2020-06-09]
  • DATEV: Added DatevCSV version 710.

v6.2.0 [2020-04-29]
  • SEPA: Added support for Instant Payments

  • SEPA: Added method Account.is_sepa()

  • SEPA: Fixed bug in Swiss SCT scheme versions

  • EBICS: Fixed issue with self-signed certificates

  • Fixed debugging issues

v6.1.1 [2019-12-24]
  • SEPA: Fixed bug in CBI scheme (CBI unique code)

  • SEPA: Added method Account.set_originator_id()

v6.1.0 [2019-12-19]
  • Added support for Python 3.8

  • Added currency of local account to SEPA documents

  • Changed LicenseManager endpoint

v6.0.7 [2019-09-21]
  • Added possibility to disable EBICS response verification.

v6.0.3 [2019-08-29]
  • Fixed Distributed Signature bug with key version A006.

v6.0.2 [2019-06-28]
  • Fixed creditor/debtor assignment of reversed transactions (CAMTParser).

  • Correctly sign amounts if reversal flag is set (MT940 parser).

v6.0.1 [2019-06-18]
  • EBICS: Implemented EBICS protocol version 3.0 (H005).

  • EBICS: Dropped support for PyCrypto.

  • EBICS: Removed depreciated factory function EbicsClientCompat.

  • EBICS: API changes: Renamed first parameter of EbicsClient.HVU() and EbicsClient.HVZ() from “ordertypes” to “filter”.

  • SEPA: Added Swiss scheme versions.

  • SEPA: Added unstructured address attribute to Account.

  • SEPA: Updated IBAN countries.

  • DATEV: Added DatevCSV format.

  • Updated External Code Sets

v5.3.1 [2019-04-27]
  • SEPA: Fixed bug in CBI schemes

v5.3.0 [2019-04-09]
  • EBICS: Fixed bug downloading large files

  • SEPA: Added CBI schema for Italy

v5.2.1 [2019-03-03]
  • Fixed bug using a proxy.

v5.2.0 [2018-07-31]
  • Replaced the possibility to separate transactions with a method to create new batches.

  • Use INI letter path with user’s home directory expanded.

v5.1.0 [2018-07-30]
  • Added possibility to process single transactions in its own batch.

v5.0.3 [2018-05-22]
  • Added FreeBSD binary

v5.0.2 [2018-04-03]
  • Fixed an issue with IPython and Django

v5.0.1 [2018-03-29]
  • Fixed VEU bug with suppress_no_data_error=True

  • Some code improvements

v5.0.0 [2018-03-26]
  • New packaging

  • Old versions should be uninstalled before upgrading!

v4.4.1 [2018-03-09]
  • Added some logging

v4.4.0 [2018-03-08]
  • Added EbicsClient context manager (auto-confirm)

  • Added EbicsClient property suppress_no_data_error

  • Added some IBAN countries

  • Fixed unverified SSL connections (Py>=2.7.9)

  • Accept multiple NtryDtls nodes in CAMTDocument

v4.3.5 [2017-10-25]
  • Fixed a SEPA date issue.

  • MT940 parser: Accept all characters in purpose text even if defined as delimiter.

  • Fixed a distributed signature bug.

v4.3.4 [2017-08-10]
  • Added the fields sum_credits and sum_debits to the MT942 parser.

  • Fixed the handling of invalid times (24:00:00) in CAMT documents.

  • Added the possibility to specify custom order parameters for FDL/FUL.

  • Added further support for SEPA structured references.

v4.3.3 [2017-06-06]
  • Fixed a bug parsing CAMT52 documents.

  • Made the user for EbicsClient optional.

  • Fixed a bug in EbicsUser.create_ini_letter to correctly return bytes.

  • Added silent parameter to method EbicsBank.activate_keys.

  • Added the attributes reference_id and sequence_id to the CAMTDocument parser.

  • Now parses the transaction classification also for DK in addition to ZKA.

v4.3.2 [2017-03-30]
  • Minor bug fix parsing MT942 documents.

  • Minor bug fix creating self-signed certificates.

  • Fixed a problem with Python builts compiled without “–with-fpectl”.

v4.3.1 [2017-02-06]
  • Fixed a bug of Account.set_mandate with named arguments.

v4.3.0 [2017-01-19]
  • PyOpenSSL is not longer required to support certificates.

  • Removed direct debit type COR1 and adjusted mandate sequence types. API changes:

    • OLD: Account.set_mandate(mref, signed, first, last)

    • NEW: Account.set_mandate(mref, signed, recurrent)

    • OLD: SEPADirectDebit(account, ‘COR1’, …)

    • NEW: SEPADirectDebit(account, ‘CORE’, …)

v4.2.4 [2017-01-17]
  • Added a check for DigestMethod algorithm.

  • Fixed a bug rejecting mandates signed more than three years ago.

  • Fixed minor bug in mt940 parser.

v4.2.3 [2016-10-27]
  • Fixed bug of wrong content type in EBICS module.

  • Added support for EBICS uploads that are approved manually via accompanying document.

v4.2.2 [2016-05-05]
  • Added timeout to EBICS requests.

  • Made BIC optional for SEPA transactions.

  • Added creditor id to InitgPty/OrgId for Spanish banks.

  • Added postal address to SEPA documents.

  • Added support for creditor reference numbers.

v4.2.1 [2015-08-20]
  • Added a check of the unicode variant (UCS2, UCS4) to setup.py.

v4.2.0 [2015-08-17]
  • Added the SEPA fields BREF, RREF, SQTP and RTCD to the MT940 parser.

  • Added a dictionary of possible return codes to the SEPA module.

  • Added the possibility to dynamically license additional EBICS users.

  • Fixed an encoding bug of non-ascii error messages under Python 2.

  • Fixed a bug swapping local and remote account for returned transactions by the CAMT parser.

v4.1.1 [2015-04-24]
  • Disabled output of license due to some difficulties with pip

v4.1.0 [2015-04-20]
  • Added support for other currencies in addition to EUR.

  • Added new Amount class with an integrated currency converter.

  • Now the SEPATransaction property amount is of type Amount.

v4.0.0 [2015-04-14]
  • Made the library Python 2/3 compatible.

  • Added support for the cryptography package in addition to PyCrypto.

  • Made the BIC optional for national transactions.

  • Added the originator id to SEPA documents in GB and IE.

  • Added a check to recognize transaction duplicates.

  • Added a CAMT parser.

  • Changed some attributes of SEPATransaction instances to be conform with the new CAMT parser:

    • Removed the property id.

    • Removed the property account, instead use the method get_account().

    • Renamed the property due_date to date.

    • Renamed the property ext_purpose to purpose_code.

    • Changed the property purpose, now it is a tuple of strings.

    • Changed the property amout, now debits are signed negative.

  • Fixed the handling of invalid dates (eg. 2015-02-30) in MT940 and CAMT parsers.

  • Fixed a problem with the exception handling in IPython.

  • Some code improvements and minor bug fixes.

v3.0.3 [2015-02-05]
  • Fixed a bug in the XML to dictionary converter.

  • Fixed a bug in the path handler of the EbicsKeyRing class.

v3.0.2 [2015-01-29]
  • Fixed a bug handling bank keys with a small bit-length.

  • Added some tolerance to the MT940 parser and collect unknown structured fields.

v3.0.1 [2015-01-26]
  • Renamed the package from ebics to fintech and the module client to ebics.

  • Splitted the functionality of the class EbicsClient into the classes EbicsClient, EbicsBank, EbicsUser and EbicsKeyRing. Added the new class factory EbicsClientCompat for backwards compatibility.

  • Added basic support for EBICS protocol version 2.4 (H003).

  • Added support for certificates.

  • Added the order types FUL and FDL.

  • Added a French and English version of the INI-letter.

  • Added the order types PUB, HCA, HCS and H3K.

  • Added a check of remote SSL certificates against trusted CAs.

  • Fixed the broken functionality of distributed signatures.

  • Added a much faster PBKDF2 implementation.

  • Created a more tolerant MT940 parser.

  • Changed the API of SEPACreditTransfer and SEPADirectDebit to be more consistent and added support for different PAIN scheme versions.

  • Several bug fixes.

v2.1.2 [2014-10-26]
  • Fixed some bugs regarding the distributed signature

v2.1.1 [2014-10-26]
  • Fixed a bug throwing an exception in an unregistered version of PyEBICS.

  • Fixed bug of wrong OrderParams tag used by orders of the distributed signature.

v2.1.0 [2014-09-29]
  • Added some functionality based on the SCL Directory, published by the German Central Bank.

v2.0.3 [2014-09-11]
  • Fixed a bug refusing valid creditor ids.

  • Added a test to check DATEV parameters for invalid arguments.

v2.0.2 [2014-09-05]
  • Fixed a bug in some EBICS requests (missing parameter tag).

  • Fixed a bug in the MT940 parser.

v2.0.1 [2014-08-18]
  • Fixed a bug handling XML namespaces.

  • Changed the behaviour of the flag parsed of some methods. Now a structure of dictionaries is returned instead of an objectified XML object.

  • Changed the expected type of the params parameter. Now it must be a dictionary instead of a list of tuples.

  • Added support for distributed signatures (HVU, HVD, HVZ, HVT, HVE, HVS).

v1.3.0 [2014-07-29]
  • Fixed a few minor bugs.

  • Made the package available for Windows.

v1.2.0 [2014-05-23]
  • Added new DATEV module.

  • Fixed wrong XML position of UltmtCdtr node in SEPA documents.

  • Changed the order of the (BANKCODE, ACCOUNT) tuple to (ACCOUNT, BANKCODE) used by the Account initializer.

v1.1.25 [2014-02-22]
  • Minor bug fix of the module loader.

v1.1.24 [2014-02-21]
  • First public release.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

fintech-6.6.0-cp39-none-win_amd64.whl (845.8 kB view details)

Uploaded CPython 3.9Windows x86-64

fintech-6.6.0-cp39-none-win32.whl (887.1 kB view details)

Uploaded CPython 3.9Windows x86

fintech-6.6.0-cp39-none-manylinux1_x86_64.whl (862.6 kB view details)

Uploaded CPython 3.9

fintech-6.6.0-cp39-none-manylinux1_i686.whl (877.4 kB view details)

Uploaded CPython 3.9

fintech-6.6.0-cp39-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (924.1 kB view details)

Uploaded CPython 3.9macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

fintech-6.6.0-cp38-none-win_amd64.whl (846.3 kB view details)

Uploaded CPython 3.8Windows x86-64

fintech-6.6.0-cp38-none-win32.whl (887.6 kB view details)

Uploaded CPython 3.8Windows x86

fintech-6.6.0-cp38-none-manylinux1_x86_64.whl (863.2 kB view details)

Uploaded CPython 3.8

fintech-6.6.0-cp38-none-manylinux1_i686.whl (878.0 kB view details)

Uploaded CPython 3.8

fintech-6.6.0-cp38-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (924.6 kB view details)

Uploaded CPython 3.8macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

fintech-6.6.0-cp37-none-win_amd64.whl (844.0 kB view details)

Uploaded CPython 3.7Windows x86-64

fintech-6.6.0-cp37-none-win32.whl (885.3 kB view details)

Uploaded CPython 3.7Windows x86

fintech-6.6.0-cp37-none-manylinux1_x86_64.whl (860.8 kB view details)

Uploaded CPython 3.7

fintech-6.6.0-cp37-none-manylinux1_i686.whl (875.6 kB view details)

Uploaded CPython 3.7

fintech-6.6.0-cp37-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (922.3 kB view details)

Uploaded CPython 3.7macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

fintech-6.6.0-cp36-none-win_amd64.whl (845.3 kB view details)

Uploaded CPython 3.6Windows x86-64

fintech-6.6.0-cp36-none-win32.whl (886.6 kB view details)

Uploaded CPython 3.6Windows x86

fintech-6.6.0-cp36-none-manylinux1_x86_64.whl (862.2 kB view details)

Uploaded CPython 3.6

fintech-6.6.0-cp36-none-manylinux1_i686.whl (877.0 kB view details)

Uploaded CPython 3.6

fintech-6.6.0-cp36-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (923.6 kB view details)

Uploaded CPython 3.6macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

fintech-6.6.0-cp35-none-win_amd64.whl (876.3 kB view details)

Uploaded CPython 3.5Windows x86-64

fintech-6.6.0-cp35-none-win32.whl (917.6 kB view details)

Uploaded CPython 3.5Windows x86

fintech-6.6.0-cp35-none-manylinux1_x86_64.whl (893.2 kB view details)

Uploaded CPython 3.5

fintech-6.6.0-cp35-none-manylinux1_i686.whl (908.0 kB view details)

Uploaded CPython 3.5

fintech-6.6.0-cp35-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (954.6 kB view details)

Uploaded CPython 3.5macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

fintech-6.6.0-cp34-none-win_amd64.whl (879.0 kB view details)

Uploaded CPython 3.4Windows x86-64

fintech-6.6.0-cp34-none-win32.whl (920.3 kB view details)

Uploaded CPython 3.4Windows x86

fintech-6.6.0-cp34-none-manylinux1_x86_64.whl (895.9 kB view details)

Uploaded CPython 3.4

fintech-6.6.0-cp34-none-manylinux1_i686.whl (910.7 kB view details)

Uploaded CPython 3.4

fintech-6.6.0-cp34-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (957.4 kB view details)

Uploaded CPython 3.4macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

fintech-6.6.0-cp27-none-win_amd64.whl (880.0 kB view details)

Uploaded CPython 2.7Windows x86-64

fintech-6.6.0-cp27-none-win32.whl (921.3 kB view details)

Uploaded CPython 2.7Windows x86

fintech-6.6.0-cp27-none-manylinux1_x86_64.whl (896.9 kB view details)

Uploaded CPython 2.7

fintech-6.6.0-cp27-none-manylinux1_i686.whl (911.7 kB view details)

Uploaded CPython 2.7

fintech-6.6.0-cp27-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl (958.3 kB view details)

Uploaded CPython 2.7macOS 10.10+ Intel (x86-64, i386)macOS 10.10+ x86-64macOS 10.11+ Intel (x86-64, i386)macOS 10.11+ x86-64macOS 10.12+ Intel (x86-64, i386)macOS 10.12+ x86-64

File details

Details for the file fintech-6.6.0-cp39-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 845.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a37ff14709dfe0148ca5c6dc006a15076f72f5c11fcb06c0fd28fc650aaf862
MD5 16120f928882d5740ede7a42a78b02f3
BLAKE2b-256 c8d4c54f09ec6f945da6501f0a35c7f7355e2807efd012fec44517141b8058de

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp39-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp39-none-win32.whl
  • Upload date:
  • Size: 887.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 efff83cb7f40058c67c63c9c53368685ef680dd5465c72a972044911c490c467
MD5 c478a75cfe68412c270aef448d0e2b22
BLAKE2b-256 c14768ca87a0828c5a992d00cc37661c9c61bda5af58324562f0b22fd67fe307

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp39-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp39-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 862.6 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp39-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dc5c03f4fe29ce76c084efbff8fb79332c74f87a759459f144b6d505d882cfa1
MD5 df127e02e51b8f6130e3139341dab3c2
BLAKE2b-256 2dfefd54b88fc84242eaae0ccccafb7fe2ddf4c625d59a96972c0ba604e583b5

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp39-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp39-none-manylinux1_i686.whl
  • Upload date:
  • Size: 877.4 kB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp39-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa096495ed5ce259f8489ff4829bd7183363d5f8d4274b643a750859a8b57531
MD5 78806ffdb34a63c8c3ba0d65e8ef828c
BLAKE2b-256 dfe96102d8d2bfb0341705f594823fbf915df40869c7706596e7283ffdfb3191

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp39-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp39-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8c694b1a3b9ab989aaf21b3c9e433b0ca2b881d4fa6fec7c6ddf2626cbc01c0a
MD5 f7f12f1e314c5aa173f719332a2c0f4b
BLAKE2b-256 3b101baee1d911d23e22cf6d9a6bbdc2dc12c09950e92f6352f37e8d9707cd7d

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp38-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 846.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ac906db2889a77269e4ccddf0083f88031f68c306679707cab98201ac6e419d0
MD5 870762d67e904ed40951935b15b54c49
BLAKE2b-256 69b4df18b523e34b6529b6535349a2cb96536fce75fa135ca6ba5e7a2c5a5193

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp38-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp38-none-win32.whl
  • Upload date:
  • Size: 887.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c405b6aacc66973e47116d44d78e9edc08d4637cd8b1dd6d0c8a3b7c5e5feecc
MD5 5dc3140b6bc2fdc871961020d43746a4
BLAKE2b-256 a90c724235252306a5eff516cac7cfc22ee65bb1e6a06bfaeae76e06b12a1d3b

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp38-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp38-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 863.2 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp38-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b233576d3a1a18bdb07c8ac104e5a5f36c04654d05423267a948346f3eb67cc1
MD5 086d5f6a720c12a8371f83d564319c6a
BLAKE2b-256 db6a98a0809319d9ec2739514de03b60f4bef55cad3c62cec30fba17ae2f27f4

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp38-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp38-none-manylinux1_i686.whl
  • Upload date:
  • Size: 878.0 kB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp38-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4840684227e15551b5f14ca444419b45147328971116855d3d9225c99feace8
MD5 4276cec14783b6cda96702806408496b
BLAKE2b-256 b7ddd3bafa220f92a0ff4fd872379ff2d33fcecb6456efbc76cdf8baaba8332f

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp38-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp38-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb4197b93f2992b8ddea8edb1d5f9ae241ad8661642ee05b76abc262ebbcfb04
MD5 edd8c4271c5c872d8e20ad334ba29e19
BLAKE2b-256 2079fa2d26efad7900fcf5b794125a369bf56a792b1233a311bc3a0bcfc862bd

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp37-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp37-none-win_amd64.whl
  • Upload date:
  • Size: 844.0 kB
  • Tags: CPython 3.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 a28a941fa54b026f24420284710d78a9a7f7d95a306edec33c48be5c0c8ff410
MD5 a2cedb88a4547f30901d8ab50998dbc2
BLAKE2b-256 3156e4798c78afff39102b1eeeed9e3166ce6e7ba32b3ccc3e3a69af5f55b2a3

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp37-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp37-none-win32.whl
  • Upload date:
  • Size: 885.3 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 02776668f136506816a8d192e58875adf9deec4b2d22f64919bcd0fe662eac8a
MD5 4c09ae963247a0ffc60ed0a3022bd7d8
BLAKE2b-256 77ffda65bdb8b523d9bd8f21513200029f2ea6393a8d72a6d31a042df039ebb7

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp37-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp37-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 860.8 kB
  • Tags: CPython 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp37-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d25d73edb21adc6ea73354909488d8f2bd3318a5840d7e2cb42a24d819cf8d62
MD5 8dcc3c255402e49955338f88c13fff90
BLAKE2b-256 47a7d8750607a94e683eb1d4d49262e4c65845e0c08d7110d268752e2da4fb2f

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp37-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp37-none-manylinux1_i686.whl
  • Upload date:
  • Size: 875.6 kB
  • Tags: CPython 3.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp37-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 42738d88a781a8a44b63968e150c8ffd2304cc87ccd5d7d886159fc195b224d4
MD5 1a632c2a3481703ffd011c08d4a80e91
BLAKE2b-256 4bfebdba6e2306de9abec2be784d83b4ec532c496673771e938da940c389a360

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp37-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp37-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 040844221c6ae1cbbad8c5774df0ec9c01a3f732296d2b7b9c56f90f0297c078
MD5 d4e7575a78b4a29fc7646b8a9d770a1b
BLAKE2b-256 1bc360ddf722a83e4c3e5432a1af07fcf99576c752c8059af7cceb43ce61a272

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp36-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp36-none-win_amd64.whl
  • Upload date:
  • Size: 845.3 kB
  • Tags: CPython 3.6, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp36-none-win_amd64.whl
Algorithm Hash digest
SHA256 7b2571804708c930d18607bb4025c27c131be0ec613627583460372bfa523017
MD5 e7b545fb9adf2d096e6992655cccfc85
BLAKE2b-256 118cd7d0855346d121fcf9ea96b4c2a1dac727b5b6c88953b05b21a0cd7da752

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp36-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp36-none-win32.whl
  • Upload date:
  • Size: 886.6 kB
  • Tags: CPython 3.6, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp36-none-win32.whl
Algorithm Hash digest
SHA256 4bdabbe7d676ee5d26106b5a3e34e043c231d7113c96c5587ac489a40c8724a1
MD5 974d550bd1a358a5fa92d52a181c2bff
BLAKE2b-256 69c9bc1323925ec03d68eaf24b7f52950bd3ae961155cd730e78ec60051a833c

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp36-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp36-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 862.2 kB
  • Tags: CPython 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp36-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e8e8b70672b5770c8f2db390208f910b79b7f50c1143a90815a253531183a4f8
MD5 eb2124a33ef5e78bcab3af9f073b0f94
BLAKE2b-256 8801c2ea6e48316c0cc4690c8d653adb3c69a83e2ad22f1a4c5840c83fe19ebf

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp36-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp36-none-manylinux1_i686.whl
  • Upload date:
  • Size: 877.0 kB
  • Tags: CPython 3.6
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp36-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 eed6d46c17dc19d16cc18cf7b5042a9cc05846d3e86d8a046fad9da8d73a138c
MD5 9a737e9ce7f3485f3b9a88bf4cd4bab7
BLAKE2b-256 a7bad22600f94539985caa5e66cc542ea6fbd688afef166846eabf4c99bf6a61

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp36-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp36-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 930af0a40e012b3232c5f8b33614001bd21e9ae91d4f4dbf625d959ea21c0104
MD5 585c1678a1f3b237e8b7b450b1c0044b
BLAKE2b-256 6f27fc58ab9e5e9656a79b81aa4f7a0692453af580524905b778e0a86df20b3a

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp35-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp35-none-win_amd64.whl
  • Upload date:
  • Size: 876.3 kB
  • Tags: CPython 3.5, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp35-none-win_amd64.whl
Algorithm Hash digest
SHA256 beff76a5b0b55575508d5d64d07b15e8b05c9f6f6266833fdfcd5397429c97b8
MD5 ce167b0b068359b063f203fb1162b03d
BLAKE2b-256 1c7f6efef2df95d4e3fd6c2931ee21a3de2ac3eedda29081d196a12e54c71b5d

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp35-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp35-none-win32.whl
  • Upload date:
  • Size: 917.6 kB
  • Tags: CPython 3.5, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp35-none-win32.whl
Algorithm Hash digest
SHA256 b3dd73512dc4b7af73e200528ad2a41cf863456a8a99d25b6c22c1e125222a6b
MD5 bff8f7dac3777a4e8d0dc6daf1f1adff
BLAKE2b-256 b8d558dca8c20fe620ece917eaff4009c3f80a5062587b7be2e752e6ad326286

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp35-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp35-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 893.2 kB
  • Tags: CPython 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp35-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a1cd24f20bbde4dbdf186362c465791f94f2ed1b26d885158762213fdc691e59
MD5 3442a1f3005c1a6b3347a8a8e1929239
BLAKE2b-256 0120232192acd9d7b69769496a64b65f5a1a6c178319f4ca26ca657a51022c65

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp35-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp35-none-manylinux1_i686.whl
  • Upload date:
  • Size: 908.0 kB
  • Tags: CPython 3.5
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp35-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 47050db77ee299f3e7221284b0e9cb1502acaed7c11fe5ff65ffbf6b94a12317
MD5 d0f9e3aba2ce96131801dc18c1aa0d55
BLAKE2b-256 85fb4dac96de7c25ab2545c18255116e583f038125429e0b9fd2272969e63a30

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp35-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp35-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7558b2bd77a5cc759c462b5d3c81a30afc46b9e50d62e31b6c4bd2c5e19d8c74
MD5 d347b4f83296ecf82059b570c1ea3c89
BLAKE2b-256 355db1eafc06e6abbf4dcf80cabbcac715f5923764d9bf31037070954a5f2d8f

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp34-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp34-none-win_amd64.whl
  • Upload date:
  • Size: 879.0 kB
  • Tags: CPython 3.4, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp34-none-win_amd64.whl
Algorithm Hash digest
SHA256 a737f5e4195dc2c91d73393b394186b9cfc5999f620e684dce040d72941f6c03
MD5 eea99ccdbf8f00d4f0da10c436df9b1a
BLAKE2b-256 2c1bd22e19dbb123bff0ed1d2ada6d22a7867daf35106718fa6d66b986226115

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp34-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp34-none-win32.whl
  • Upload date:
  • Size: 920.3 kB
  • Tags: CPython 3.4, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp34-none-win32.whl
Algorithm Hash digest
SHA256 25647a4f845b0ff4a574404b5e198b846ddff19485f2c9fd1c211f728ab8d63a
MD5 8a2e1e1a15e1187633a94b487ead312e
BLAKE2b-256 610d978b0c8b471b3b6343afc31512c8e2fae36b61ca2227ae280f20c36437d8

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp34-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp34-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 895.9 kB
  • Tags: CPython 3.4
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp34-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 eab14a8b0e38d94863fc383262be79208c91fdbd7287f0fef5a5141cec69b70c
MD5 f09208c79a56a01509a3ef7197417a79
BLAKE2b-256 c56ee5fabcf8c65b77c740f9c4c009b07d31dcbfb04cd34f559e1ac2b9f0e569

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp34-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp34-none-manylinux1_i686.whl
  • Upload date:
  • Size: 910.7 kB
  • Tags: CPython 3.4
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp34-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 085e9680e470a6dbccd4534caad4402ec690b2a5c54f355e60744378078e4221
MD5 faacf8f9033ba8b16a7e4dfcc97c6a95
BLAKE2b-256 46a44f5f93de1498173e2788b5dd2f2d15cae69bd9148e98964e5c9cc3d97c93

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp34-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp34-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da313452a046560c26be9114259d107ca56f6725cfa50421ca0ddc12a242a20f
MD5 4f966fcf3a12a96bdd2a545a6567a1c8
BLAKE2b-256 ae2d872646ce99cef9b9a42983401f36214e4fa11037c0bd32b5a0aecda01c79

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp27-none-win_amd64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp27-none-win_amd64.whl
  • Upload date:
  • Size: 880.0 kB
  • Tags: CPython 2.7, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp27-none-win_amd64.whl
Algorithm Hash digest
SHA256 63bacb0a75993f682f3ceb75e6840d784fba75130d61bfdecf7947783b37a0bb
MD5 c8db4520e64744d96c9d7cc9305bc8bc
BLAKE2b-256 f205769180a8b477b09d433addcfd86308e69e5866f48be75d790b9107113b91

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp27-none-win32.whl.

File metadata

  • Download URL: fintech-6.6.0-cp27-none-win32.whl
  • Upload date:
  • Size: 921.3 kB
  • Tags: CPython 2.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp27-none-win32.whl
Algorithm Hash digest
SHA256 d6408772cdcccecf13ea6769bbacf4d3edba2e7ae8e4b40ff52dc066de2e4696
MD5 9d5f1fe6199ce68041aca265e5158357
BLAKE2b-256 a995642435b33e2b30597975fda14c160ea3a166554d75074bbe3d69a1c53806

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp27-none-manylinux1_x86_64.whl.

File metadata

  • Download URL: fintech-6.6.0-cp27-none-manylinux1_x86_64.whl
  • Upload date:
  • Size: 896.9 kB
  • Tags: CPython 2.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp27-none-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 dc55062b6bb1aaa9359426216cbd5b5289aea499535500410e67d07c452066d9
MD5 1005480b8b02a8af23756d034ce748c6
BLAKE2b-256 8d6ac1f8a0dbcb20ce40f4edee46ddd097c8a25c7714ecedcbb8c941fda7a65a

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp27-none-manylinux1_i686.whl.

File metadata

  • Download URL: fintech-6.6.0-cp27-none-manylinux1_i686.whl
  • Upload date:
  • Size: 911.7 kB
  • Tags: CPython 2.7
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.22.0 setuptools/45.2.0 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.5

File hashes

Hashes for fintech-6.6.0-cp27-none-manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6bcee397ce3efa6e37374f2c6acdcd2bbae1eea8401ae680068316c36c6b664
MD5 98974f63b5133648158078f2d20e9c31
BLAKE2b-256 60affb70f2c54c0b174f1ea9e93bff6292ccdca667cf97f325855e454574f492

See more details on using hashes here.

File details

Details for the file fintech-6.6.0-cp27-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for fintech-6.6.0-cp27-none-macosx_10_10_intel.macosx_10_10_x86_64.macosx_10_11_intel.macosx_10_11_x86_64.macosx_10_12_intel.macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d80cd5891027362402fd167ece55089dd2c1d623e9ed54d12e60808a56755be2
MD5 dba3c49268ead3aad6a67ba4db52ad5e
BLAKE2b-256 9b6cb4f17b8a7f38bb228f96b62561ee4d93bd5a4f3cb2c303f321e73c392f45

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page