A Python3-only library for iChart K-Pop chart scores.
Project description
instiz
A Python3-only library for iChart K-Pop chart scores.
Installation
pip install instiz
Getting Started
Getting started is easy. The following example is to get the top 10 at the realtime chart of iChart.
from instiz import iChart
ichart = iChart()
top_10 = ichart.realtime_top_10()
Type hinting
If you're using Python 3.7+'s type hinting feature, the type used for the return type of the chart can be imported from the instiz.models module.
from instiz.models import Entry
def get_name(entry: Entry) -> str:
return entry.title
Artist name
It's now possible to get the Korean name and the English name of an artist easily, alongside with the raw artist name provided from iChart's site. Nice title property will always return the English name, unless unavailable. If one of the names are unavailable, the property will return an empty string.
from instiz import iChart
ichart = iChart()
first_place = ichart.get_next_entry()
nice_title = first_place.nice_title # JENNIE - SOLO
raw_artist_name = first_place.artist.raw_name # 제니 (JENNIE)
english_artist_name = first_place.artist.english_name # JENNIE
korean_artist_name = first_place.artist.korean_name # 제니
Contributing
- Fork the repo
- Make your changes
- Write your tests so I don't accidentally remove it when updating
- Run the tests.
- Make a pull request.
TODO
- Document the API
- Weekly chart
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file instiz-0.2.1.tar.gz.
File metadata
- Download URL: instiz-0.2.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7e05fea18b0f26d62181e94f4487fb34b561d3432e046cd1cd445c455a981d49
|
|
| MD5 |
6cfff46e404b71da0aea782dbe033fb7
|
|
| BLAKE2b-256 |
d31f625848039622c97a76a0b2af225430e92dd60d97e231474a9809d64f2720
|
File details
Details for the file instiz-0.2.1-py3-none-any.whl.
File metadata
- Download URL: instiz-0.2.1-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.20.1 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
85621f1f055ad17b9b6abdd4931e0f0290d96ecb5718f37c4090847799d9eb4b
|
|
| MD5 |
17fca358aa6abf26a72ba5635387cf0b
|
|
| BLAKE2b-256 |
d1add6ca58d5ef415db1c96a96c90e7ebde66e41738ae20d41f1842583eb9911
|