gold24park / flo-chart.py

๐ŸŒŠ Python API for downloading FLO charts | ํ”Œ๋กœ ์ฐจํŠธ API

Home Page:https://pypi.org/project/flo-chart.py

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

๐ŸŒŠ FLO ์ฐจํŠธ API: flo-chart.py

flo

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 name
  • date โ€“ The chart date
  • imageSize โ€“ 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 to False, you can fetch the data later using the fetchEntries() 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 track
  • artist โ€“ The name of the artist
  • image โ€“ The URL of the cover image for the track
  • lastPos - 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.

K-Pop music chart Python APIs

Dependencies

License

This project is licensed under the MIT License.

About

๐ŸŒŠ Python API for downloading FLO charts | ํ”Œ๋กœ ์ฐจํŠธ API

https://pypi.org/project/flo-chart.py

License:MIT License


Languages

Language:Python 98.2%Language:Shell 1.8%