Python API for downloading FLO charts
Project description
flo-chart.py
flo-chart.py is a Python API that retrieves the TOP 100 information from the FLO.
Installation
pip install flo-chart.py
Quickstart
The main usage of flo-chart.py is similar to billboard.py.
>>> from flo import *
>>> chart = ChartData()
>>> print(chart[0].json())
{
"artist": "IVE (아이브)",
"image": "https://cdn.music-flo.com/image/v2/album/763/481/12/04/412481763_6420ff34_s.jpg?1679884086290/dims/resize/256x256/quality/90",
"isNew": false,
"lastPos": 1,
"rank": 1,
"title": "Kitsch"
}
>>> print(chart.name)
FLO 차트
>>> print(chart.date)
2023-04-09 22:00:00
ChartData Arguments
name
– The chart namedate
– The chart dateimageSize
– The size of cover image for the track. (default: 256)fetch
– A boolean value that indicates whether to retrieve the chart data immediately. If set toFalse
, you can fetch the data later using thefetchEntries()
method.
Chart entry attributes
ChartEntry
can be accessed using the ChartData[index]
syntax. A ChartEntry
instance has the following attributes:
title
– The title of the trackartist
– The name of the artistimage
– The URL of the cover image for the tracklastPos
- The track's last position on the previous period.rank
– The track's current rank position on the chart.isNew
– Whether the track is new to the chart.
Dependencies
License
This project is licensed under the MIT License.
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 Distribution
flo-chart.py-1.0.0.tar.gz
(4.0 kB
view hashes)
Built Distribution
Close
Hashes for flo_chart.py-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 917c44144168a623c16dee5660ad64c18e601fce0c7482b38c4362072ee49c12 |
|
MD5 | b5cb6e116288401e0b5f725d7274a1c9 |
|
BLAKE2b-256 | a0873c06b19e786302c3b196514a56dcf817959a676b9ff84fba47d774629ca5 |