Skip to main content

Python wrapper of FastJet Core functionality with NumPy support

Project description

PyFJCore

Python wrapper of FastJet Core functionality with additional NumPy support. In contrast with the pyjet package, PyFJCore wraps all the methods/functions in fjcore and works with regular NumPy arrays instead of structured one. In contrast with the Python extension to the main FastJet library, this package can be built in a portable manner, including on Windows.

Current version of fjcore: 3.3.4

Documentation

The FastJet documentation and manual contain helpful information for the classes and methods in PyFJCore. Not all FastJet classes are wrapped in PyFJCore, primarily just PseudoJet, JetDefinition, ClusterSequence, and Selector.

Python User Info

A Python object can be attached to a PseudoJet using the .set_python_info() method. It can be accessed as .python_info().

NumPy conversion functions

pyfjcore.ptyphim_array_to_pseudojets(ptyphims)

Converts a 2D array of particles, each as (pt, y, phi, [mass]), to PseudoJets (the mass is optional). Any additional features (columns after the initial four) of the array are set as the Python user info of the PseudoJets. This also sets the user_index of the PseudoJets to their position in the input array.

pyfjcore.epxpypz_array_to_pseudojets(epxpypzs)

Converts a 2D array of particles, each as (E, px, py, pz), to PseudoJets. Any additional features (columns after the initial four) of the array are set as the Python user info of the PseudoJets. This also sets the user_index of the PseudoJets to their position in the input array.

pyfjcore.array_to_pseudojets(particles, pjrep=pyfjcore.ptyphim)

Converts a 2D array of particles to PseudoJets. The format of the particles kinematics is determined by the pjrep argument. The PseudoJetRepresentation enum can take the values ptyphim, ptyphi, epxpypz. The first two values cause this function to invoke ptyphim_array_to_pseudojets and the third invokes epxpypz_array_to_pseudojets. Any additional features (columns) of the array are set as the Python user info of the PseudoJets. This also sets the user_index of the PseudoJets to their position in the input array.

pyfjcore.pseudojets_to_ptyphim_array(pseudojets, mass=True)

Converts a vector of PseudoJets to a 2D NumPy array of (pt, y, phi, [mass]) values, where the presence of the mass is determine by the keyword argument.

pyfjcore.pseudojets_to_epxpypz_array(pseudojets)

Converts a vector of PseudoJets to a 2D NumPy array of (E, px, py, pz) values.

pyfjcore.pseudojets_to_array(pseudojets, pjrep=pyfjcore.ptyphim)

Converts a vector of PseudoJets to a 2D NumPy array of particles in the representation determined by the pjrep keyword argument.

pyfjcore.user_indices(pseudojets)

Extracts the user indices from a vector of PseudoJets and returns them as a NumPy array of integers.

Version History

0.3.x

0.3.0

  • Memory leak (and subsequent crash) detected in EnergyFlow testing of PyFJCore. Removing PseudoJetContainer for now.

0.2.x

0.2.1

  • Fixed typechecking so that PseudoJetContainer is accepted in overloaded functions such as Selector::operator().

0.2.0

  • Built against older NumPy properly; added pyproject.toml file.

0.1.x

0.1.2

  • Renamed some PseudoJetRepresentation constants.
  • Updated documentation.

0.1.1

  • Fixed several bugs, including an inability to pass a PseudoJetContainer to the ClusterSequence constructor due to SWIG's typechecking.

0.1.0

  • First version released on PyPI.

References

PyFJCore relies critically on the fjcore header and source files, which in turn are created from the main FastJet library. So if you use this package in your research, please cite the FastJet package and publications.

Summary of changes to fjcore

  • fjcore.hh
    • Changed namespace from fjcore to fastjet to facilitate interoperability with the FastJet Python extension.
    • Wrapped some code in IsBaseAndDerived that SWIG cannot parse with #ifndef SWIG_PREPROCESSOR and #endif. Since SWIG doesn't need this code for anything, it parses the file correctly without affecting the actual compilation.
    • Changed templated ClusterSequence constructor to an untemplated version using PseudoJet as the former template type.

fjcore README

// fjcore -- extracted from FastJet v3.3.4 (http://fastjet.fr)
//
// fjcore constitutes a digest of the main FastJet functionality.
// The files fjcore.hh and fjcore.cc are meant to provide easy access to these 
// core functions, in the form of single files and without the need of a full 
// FastJet installation:
//
//     g++ main.cc fjcore.cc
// 
// with main.cc including fjcore.hh.
//
// A fortran interface, fjcorefortran.cc, is also provided. See the example 
// and the Makefile for instructions.
//
// The results are expected to be identical to those obtained by linking to
// the full FastJet distribution.
//
// NOTE THAT, IN ORDER TO MAKE IT POSSIBLE FOR FJCORE AND THE FULL FASTJET
// TO COEXIST, THE FORMER USES THE "fjcore" NAMESPACE INSTEAD OF "fastjet". 
//
// In particular, fjcore provides:
//
//   - access to all native pp and ee algorithms, kt, anti-kt, C/A.
//     For C/A, the NlnN method is available, while anti-kt and kt
//     are limited to the N^2 one (still the fastest for N < 100k particles)
//   - access to selectors, for implementing cuts and selections
//   - access to all functionalities related to pseudojets (e.g. a jet's
//     structure or user-defined information)
//
// Instead, it does NOT provide:
//
//   - jet areas functionality
//   - background estimation
//   - access to other algorithms via plugins
//   - interface to CGAL
//   - fastjet tools, e.g. filters, taggers
//
// If these functionalities are needed, the full FastJet installation must be
// used. The code will be fully compatible, with the sole replacement of the
// header files and of the fjcore namespace with the fastjet one.
//
// fjcore.hh and fjcore.cc are not meant to be human-readable.
// For documentation, see the full FastJet manual and doxygen at http://fastjet.fr
//
// Like FastJet, fjcore is released under the terms of the GNU General Public
// License version 2 (GPLv2). If you use this code as part of work towards a
// scientific publication, whether directly or contained within another program
// (e.g. Delphes, MadGraph, SpartyJet, Rivet, LHC collaboration software frameworks, 
// etc.), you should include a citation to
// 
//   EPJC72(2012)1896 [arXiv:1111.6097] (FastJet User Manual)
//   and, optionally, Phys.Lett.B641 (2006) 57 [arXiv:hep-ph/0512210]
//
//FJSTARTHEADER
// $Id$
//
// Copyright (c) 2005-2020, Matteo Cacciari, Gavin P. Salam and Gregory Soyez
//
//----------------------------------------------------------------------
// This file is part of FastJet (fjcore).
//
//  FastJet 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 2 of the License, or
//  (at your option) any later version.
//
//  The algorithms that underlie FastJet have required considerable
//  development. They are described in the original FastJet paper,
//  hep-ph/0512210 and in the manual, arXiv:1111.6097. If you use
//  FastJet as part of work towards a scientific publication, please
//  quote the version you use and include a citation to the manual and
//  optionally also to hep-ph/0512210.
//
//  FastJet 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 FastJet. If not, see <http://www.gnu.org/licenses/>.
//----------------------------------------------------------------------
//FJENDHEADER

Project details


Download files

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

Source Distribution

PyFJCore-0.3.0.tar.gz (185.8 kB view details)

Uploaded Source

Built Distributions

PyFJCore-0.3.0-cp39-cp39-win_amd64.whl (328.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

PyFJCore-0.3.0-cp39-cp39-win32.whl (253.4 kB view details)

Uploaded CPython 3.9 Windows x86

PyFJCore-0.3.0-cp39-cp39-manylinux2010_x86_64.whl (403.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp39-cp39-manylinux2010_i686.whl (398.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl (344.9 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

PyFJCore-0.3.0-cp38-cp38-win_amd64.whl (328.1 kB view details)

Uploaded CPython 3.8 Windows x86-64

PyFJCore-0.3.0-cp38-cp38-win32.whl (253.9 kB view details)

Uploaded CPython 3.8 Windows x86

PyFJCore-0.3.0-cp38-cp38-manylinux2010_x86_64.whl (403.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp38-cp38-manylinux2010_i686.whl (398.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl (344.8 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

PyFJCore-0.3.0-cp37-cp37m-win_amd64.whl (328.1 kB view details)

Uploaded CPython 3.7m Windows x86-64

PyFJCore-0.3.0-cp37-cp37m-win32.whl (253.4 kB view details)

Uploaded CPython 3.7m Windows x86

PyFJCore-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl (401.9 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp37-cp37m-manylinux2010_i686.whl (397.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl (344.5 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

PyFJCore-0.3.0-cp36-cp36m-win_amd64.whl (328.1 kB view details)

Uploaded CPython 3.6m Windows x86-64

PyFJCore-0.3.0-cp36-cp36m-win32.whl (253.3 kB view details)

Uploaded CPython 3.6m Windows x86

PyFJCore-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl (401.9 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp36-cp36m-manylinux2010_i686.whl (397.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl (344.5 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

PyFJCore-0.3.0-cp35-cp35m-win_amd64.whl (328.1 kB view details)

Uploaded CPython 3.5m Windows x86-64

PyFJCore-0.3.0-cp35-cp35m-win32.whl (253.4 kB view details)

Uploaded CPython 3.5m Windows x86

PyFJCore-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl (401.9 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp35-cp35m-manylinux2010_i686.whl (397.6 kB view details)

Uploaded CPython 3.5m manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl (339.4 kB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_x86_64.whl (403.2 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_i686.whl (399.9 kB view details)

Uploaded CPython 2.7mu manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp27-cp27m-manylinux2010_x86_64.whl (403.2 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ x86-64

PyFJCore-0.3.0-cp27-cp27m-manylinux2010_i686.whl (399.9 kB view details)

Uploaded CPython 2.7m manylinux: glibc 2.12+ i686

PyFJCore-0.3.0-cp27-cp27m-macosx_10_9_x86_64.whl (341.5 kB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

Details for the file PyFJCore-0.3.0.tar.gz.

File metadata

  • Download URL: PyFJCore-0.3.0.tar.gz
  • Upload date:
  • Size: 185.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0.tar.gz
Algorithm Hash digest
SHA256 5dbbb48821a7ae71f9ecdd494272a7a376d9abdaa34733a48acec97c59f5c43c
MD5 a1093dd9394a7a08336c9d66ef67cf8b
BLAKE2b-256 2a2528939bfcbc6c9cf2c80147cc44bf0410bfaa90e6652e6402725b5941a979

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 328.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d940f74020439ffd2c69e177667c77fafa670e8a598c3f3c0cac5801ce18926
MD5 15d81cdd53da727acefbd549250a9550
BLAKE2b-256 b44340e0fbf8c71d1e61de06791b1fee97838f759572ece1205c509b032a59df

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 253.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 34c0df18db7006770b34a1f42cfdfdea7303e0814e0923cbf57e4fcaeff2c4d7
MD5 5f1df5227da8532922630d4e7f8fff74
BLAKE2b-256 d00fdb91c79e9208aaa9bc296d6703013bdcd998efc75af87dd8f5c98c463af4

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 403.3 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 50cd3d63275e28fed792a59ee132e4a03bd502acef65da3a4c43e8afe5a824e0
MD5 0741e8bb4f8adefe1338d45ce0643dbf
BLAKE2b-256 92e3d577d8d54168b5ffe723b2dbf32bc0f252a3a5520542265f40b091fedf91

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 398.9 kB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bf57d106eedc21d9e69d5b62e19d432386222d1b50b654c7ef17ac5cf5800a57
MD5 7b9ed9c03f90a439976391a6a97ea539
BLAKE2b-256 48257ac3bef5d0bb2b0fb99bc09956bf39c90281ce6f906f0ad6bbcef68407f1

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 344.9 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2aa9843ca828c10360cb1aff7357f0f1670f1a5626feb43f2a2ea5511494c69b
MD5 2ad6cfd3d42dc4f23ef7f4c18284b696
BLAKE2b-256 29d8d12f2e1c03b2c6f3616eab67924658d28fb5634128c61b059c55b8c3d3a3

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 328.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f6cfcfaac652d9684d10bfbcdbf97a62601486fd17d3897bf7917bf300264a30
MD5 83fc35d50584494c892e2bd36fa338ab
BLAKE2b-256 af821891305cd0af4a2557ecbd01dc7ec5bfdd017b4c40e9f1b345fce84849a1

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 81c77358a69c09f8a73468e6b42db3ec9c53760503eae8bc9d8eea6b8fea0800
MD5 c6250a1922f42d2ab18fcdb74212a419
BLAKE2b-256 cad010226f40b48ab439ebcd0b31ecd98bd633fc03a5904f1a01f0479e2a0b4e

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 403.3 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 76cade8a7c6df9fc6416006ce46ccd7b1deb766f219945367e49cfee223c1ddd
MD5 c6fd9d04ad1fee9a608cc3f5ffec8dc3
BLAKE2b-256 7568e873272c6b2f4f03c37b59ccdcc17c20398ee1ee566c3c5ab676fb4f47ca

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 398.1 kB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 e8cc91fc2e96bc01c639afa17e1d9cd48fa9334df034381fb5bf1456d042bb7d
MD5 5671ad4c92b3421f4435df8b8a4d61e3
BLAKE2b-256 d7c03e43efe43c1c436a1a79baeed12891091ef1ce3a738d05e250e2c74a9ad3

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 344.8 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 91ae60658aba92a6fbe1b41746aa50b84c00a852dcc600284db88cf5c3353a69
MD5 4ddf23fc1940e527514d0eb82445a13a
BLAKE2b-256 39e7dcdd2996b39240b09be4bda6ec330be3224819481e3bf7ac7e28cc0c6aa2

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 328.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 0f9609bf53138e85d1e007df74630bbc6f00341442f5a7428b368581eecbf906
MD5 ee0b728cde450894ee2cbf7822ee357e
BLAKE2b-256 6be95aee0a0871dbb1691624183142a486ab8ac19b0f2e9c5e38d6f3d0cb7173

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 253.4 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 be70d2d0c218a6693464fe66d048854853336d652490d46d764a2e40cf8680e5
MD5 cedbbfc16bf951c4b34604f009a5d918
BLAKE2b-256 a191aebf267a6934a8e2078dfdc7f1e45cb5f928434602070b399b0982ba2994

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 401.9 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6703f48bc73d888080ec735d364457cc09bfca9e79b7c26c9332d4ac44df5459
MD5 798bf4b18680a169e9bf98a8dfadf347
BLAKE2b-256 2e8df130f8933412ef5c5a77107319fc8c3f25c6fdbf17b5688089de12c729c7

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 d0583c5ac82c80009b428d4856bf164ec950fbb4b2d261340460cbf5367752c0
MD5 83822c237c5b3bc1f0c3c8cfc11d68cb
BLAKE2b-256 0f8a82c3ae6a292c338cb58ec2a760df8c0e0309a191849f1b17db3b2936d80d

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 344.5 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 37abd1a93f24f2e0baac71dfb7ed1d50aedd4f898fcb1ff6eced6ac3a3362da2
MD5 a58dbe001b17725920cf9af4e3e53ebf
BLAKE2b-256 818deb6f9acd1ed93bea927503c86005981a488d14e25eccb50adec1576ad2f7

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 328.1 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 3b45d678c631cd954a4279768ec1fe3b0030dfed066adae192d0b0418630f92d
MD5 b57553a49c74bfde082aeca90804bfb8
BLAKE2b-256 9e9f5cdeb41307df2c82ef99263c216d93f829ab040c6134202b59a090382f1f

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 253.3 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 38f9f4d44282c1fff6a3fc89dfa5a49da88b2408c9f86796ea9343c87bf695cb
MD5 a6f0e0ef71987dfe4d3e5650fd07fb24
BLAKE2b-256 107caf4f62be16a0967615c7c39a8377a2fdc968c8999ac6d6085284b6015aaf

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 401.9 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 60ffa88330e79376ce5baa11d54bab8fcbbe6d4ebb9108ff9809ebeff2f2dd3e
MD5 a43f7791986294235ce05031dcdb9d0a
BLAKE2b-256 5c453742dfc45ffd65e9341f2bc82296c00148bb91feff2781ffdaf9275ecd28

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 6004882065a46587f02f213cc3fde42fb626bb3cec5762ab4633227419d81772
MD5 56f3ebdaf7b10a5fcfab3c239a4f8746
BLAKE2b-256 c95d4754b72857115fceef75b5809f93cde2600d603d85ff3c135d32b363f7e2

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 344.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b66979500e5f19176ed6365eb3a3d18dd8b07f74ad18667106fccec5ed52f127
MD5 2c2037fe4396119413026ae71e7191df
BLAKE2b-256 e1e3dd82accb42379321613556e251d8f06d26170bc3a2de2deecdef679f2184

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 328.1 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 e10a0c33d6ab3586dd92a5419cb1b41dc8bf4de16cd1255298a1871cf14189dd
MD5 c88faa5c8235999cc72e8b0283d71a59
BLAKE2b-256 4aa04a919111cd8fc3143ae4dc0233db97d19a0fa67308c948dd6400d4374d4a

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 253.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 50ff372c0a33ba2227b5f4fd9099bb3943c8f9ed2c1eb2ce83d33ab7b916c291
MD5 8f0bd9fafafb0de7edf7104096d525d7
BLAKE2b-256 de3445c81adef42223e10f953c5bcdee45fb6f7b0c2ab5faa52c777a08c5c718

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 401.9 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 447bb096ae51ab9d57b445d1ff95517808445d4e639bb0f582301baddfa416c1
MD5 ab625a3eede2ddf06efc058cc31baf51
BLAKE2b-256 de3592278fb18cb1a389dc8fdb6a1b966f430443abbb7bf29b7ad2885ac2ca50

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 397.6 kB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9fee826b94ad24322f49351ca6886352897903d1eb87cc96271afff8c20d195e
MD5 a50dc9f2ec3eac578dc3b3a54396ec00
BLAKE2b-256 39cba70e6a236fd979341e483ab06072c95d1cd9bb2efad1398724b78cf37b61

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 339.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19cc6f6b1dd0af23072da9a7b2214e96e897f39c48f72f757f2f141c4e256e1f
MD5 e6bda96e6199f15535e5594ccab9fc45
BLAKE2b-256 8f7a8b40156145730dd84f25fa4276a08d2291aa27377b1199a91551e3ed4aa2

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 403.2 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 84d9e6455904086844083a0258d8560f3532716973304452052a3803a7600079
MD5 ba830252e2e13fc4d69ba8ed10bdf447
BLAKE2b-256 46d3c23a764a65658409e3d48b63d7e71a4ba646ba71ba347378bd7600d040fb

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 399.9 kB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b2c3b4b663ed7fc9ebaa4c3f0a081441fdcde777caa2a0a29215a72c49c64c42
MD5 bb0cd1430c302241a454a9576f21a789
BLAKE2b-256 a57fb057cea9aa7f25d0b84d246f8c6a666ae14d501a12e88dfd0d1d186ce65f

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 403.2 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 06d5b3f81770c66fc136d0f12a645d329dd4a542e543489226ef85c4f04a79c8
MD5 dd396f0f255cba39763f2c7a52bf9d01
BLAKE2b-256 ddb112a3929d3c61312df828ad20c1fe55ec8124a778e1cf95ad6a422620da84

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 399.9 kB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.8.1

File hashes

Hashes for PyFJCore-0.3.0-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2cb620db24d44d41d6b20a5e88e9da6a4764a6f5f4a19e4e29368aefc48a6ef4
MD5 ac90ab5bb5b491d247709fd6b68e6dc3
BLAKE2b-256 1152bff90b179cc1776e661ab94957f909fa35993853215823b925426c6dc08b

See more details on using hashes here.

File details

Details for the file PyFJCore-0.3.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: PyFJCore-0.3.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 341.5 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/3.7.3 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.59.0 CPython/3.9.2

File hashes

Hashes for PyFJCore-0.3.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0b9d4b90d49af7ba2e8432fa0bfbfffcbb55c2ba878f823c9d30a2bb4bb64435
MD5 3f6bba5f499e99524e99552b2ff2426b
BLAKE2b-256 0df835fa3a0a182c55347fb04822656a71293e0210e971e59e305736b64d7f8b

See more details on using hashes here.

Supported by

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