معرفی شرکت ها


fit-0.4.1


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

FIT file I/O
ویژگی مقدار
سیستم عامل -
نام فایل fit-0.4.1
نام fit
نسخه کتابخانه 0.4.1
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Aleksey Rembish
ایمیل نویسنده alex@rembish.org
آدرس صفحه اصلی https://github.com/rembish/fit
آدرس اینترنتی https://pypi.org/project/fit/
مجوز BSD
======================= FIT file I/O for Python ======================= The Flexible and Interoperable Data Transfer (FIT) protocol is a format designed specifically for the storing and sharing of data that originates from sport, fitness and health devices. It is specifically designed to be compact, interoperable and extensible. This document will describe the FIT file structure and interpretation. The FIT protocol defines a set of data storage templates (FIT messages) that can be used to store information such as user profiles and activity data in files. Any FIT-compliant device can interpret a FIT file from any other FIT-compliant device. How-To ------ :: from fit import FitFile from fit.files.activity import ActivityFile from fit.messages.common import FileCreator fin = FitFile.open("path/to/filename.fit") for msg in fin: print msg with FitFile.open("path/to/copy.fit", mode="w") as fout: fout.copy(fin) fnew = ActivityFile.create("path/to/new.fit") fnew.append(FileCreator(software_version=666)) fnew.write() fnew.close() TODO ---- * Component fields * Accumulatable fields * Tests (you can submit me some cool examples) * Entry Points for external extensions * Convertable types * ...


نحوه نصب


نصب پکیج whl fit-0.4.1:

    pip install fit-0.4.1.whl


نصب پکیج tar.gz fit-0.4.1:

    pip install fit-0.4.1.tar.gz