Skip to content
Snippets Groups Projects
Commit 69e22908 authored by 하찬균's avatar 하찬균
Browse files

initial

parent bb8c57a3
No related branches found
No related tags found
No related merge requests found
Showing
with 7374 additions and 0 deletions
node_modules/
.npm
.next/
dist/
src/firebase.js
Source diff could not be displayed: it is too large. Options to address this: view the blob.
{
"name": "muibasic",
"version": "1.0.0",
"description": "muiBasic",
"main": "index.js",
"dependencies": {
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.60",
"firebase": "^8.7.1",
"next": "^11.0.1",
"swr": "^0.5.6"
},
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/preset-env": "^7.14.7",
"@babel/preset-react": "^7.14.5",
"babel-loader": "^8.2.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"webpack": "^5.45.1",
"webpack-cli": "^4.7.2"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC"
}
import React from 'react';
const About = () => {
return <h3>About Me..</h3>
}
export default About;
\ No newline at end of file
import React from 'react';
import PropTypes from 'prop-types';
import Head from 'next/head';
import { ThemeProvider } from '@material-ui/core/styles';
import CssBaseline from '@material-ui/core/CssBaseline';
import theme from '../src/theme';
export default function MyApp(props) {
const { Component, pageProps } = props;
React.useEffect(() => {
// Remove the server-side injected CSS.
const jssStyles = document.querySelector('#jss-server-side');
if (jssStyles) {
jssStyles.parentElement.removeChild(jssStyles);
}
}, []);
return (
<React.Fragment>
<Head>
<title>My page</title>
<meta name="viewport" content="minimum-scale=1, initial-scale=1, width=device-width" />
</Head>
<ThemeProvider theme={theme}>
{/* CssBaseline kickstart an elegant, consistent, and simple baseline to build upon. */}
<CssBaseline />
<Component {...pageProps} />
</ThemeProvider>
</React.Fragment>
);
}
MyApp.propTypes = {
Component: PropTypes.elementType.isRequired,
pageProps: PropTypes.object.isRequired,
};
\ No newline at end of file
import React from 'react';
import Document, { Html, Head, Main, NextScript } from 'next/document';
import { ServerStyleSheets } from '@material-ui/core/styles';
import theme from '../src/theme';
export default class MyDocument extends Document {
render() {
return (
<Html lang="en">
<Head>
{/* PWA primary color */}
<meta name="theme-color" content={theme.palette.primary.main} />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
</Head>
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
// `getInitialProps` belongs to `_document` (instead of `_app`),
// it's compatible with server-side generation (SSG).
MyDocument.getInitialProps = async (ctx) => {
// Resolution order
//
// On the server:
// 1. app.getInitialProps
// 2. page.getInitialProps
// 3. document.getInitialProps
// 4. app.render
// 5. page.render
// 6. document.render
//
// On the server with error:
// 1. document.getInitialProps
// 2. app.render
// 3. page.render
// 4. document.render
//
// On the client
// 1. app.getInitialProps
// 2. page.getInitialProps
// 3. app.render
// 4. page.render
// Render app and page and get the context of the page with collected side effects.
const sheets = new ServerStyleSheets();
const originalRenderPage = ctx.renderPage;
ctx.renderPage = () =>
originalRenderPage({
enhanceApp: (App) => (props) => sheets.collect(<App {...props} />),
});
const initialProps = await Document.getInitialProps(ctx);
return {
...initialProps,
// Styles fragment is rendered after the app and page rendering finish.
styles: [...React.Children.toArray(initialProps.styles), sheets.getStyleElement()],
};
};
import App from '../src/component/App';
const IndexPage = () => {
return <App/>;
}
export default IndexPage;
import React from 'react';
import Typography from '@material-ui/core/Typography';
import MuiLink from '@material-ui/core/Link';
export default function Copyright() {
return (
<Typography variant="body2" color="textSecondary" align="center">
{'Copyright © '}
<MuiLink color="inherit" href="https://material-ui.com/">
Your Website
</MuiLink>{' '}
{new Date().getFullYear()}
{'.'}
</Typography>
);
}
/* eslint-disable jsx-a11y/anchor-has-content */
import React from 'react';
import PropTypes from 'prop-types';
import clsx from 'clsx';
import { useRouter } from 'next/router';
import NextLink from 'next/link';
import MuiLink from '@material-ui/core/Link';
const NextComposed = React.forwardRef(function NextComposed(props, ref) {
const { as, href, ...other } = props;
return (
<NextLink href={href} as={as}>
<a ref={ref} {...other} />
</NextLink>
);
});
NextComposed.propTypes = {
as: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
href: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
prefetch: PropTypes.bool,
};
// A styled version of the Next.js Link component:
// https://nextjs.org/docs/#with-link
function Link(props) {
const {
href,
activeClassName = 'active',
className: classNameProps,
innerRef,
naked,
...other
} = props;
const router = useRouter();
const pathname = typeof href === 'string' ? href : href.pathname;
const className = clsx(classNameProps, {
[activeClassName]: router.pathname === pathname && activeClassName,
});
if (naked) {
return <NextComposed className={className} ref={innerRef} href={href} {...other} />;
}
return (
<MuiLink component={NextComposed} className={className} ref={innerRef} href={href} {...other} />
);
}
Link.propTypes = {
activeClassName: PropTypes.string,
as: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
className: PropTypes.string,
href: PropTypes.oneOfType([PropTypes.string, PropTypes.object]),
innerRef: PropTypes.oneOfType([PropTypes.func, PropTypes.object]),
naked: PropTypes.bool,
onClick: PropTypes.func,
prefetch: PropTypes.bool,
};
export default React.forwardRef((props, ref) => <Link {...props} innerRef={ref} />);
import React from 'react';
import { makeStyles } from '@material-ui/core/styles';
import Link from '@material-ui/core/Link';
import SvgIcon from '@material-ui/core/SvgIcon';
import Typography from '@material-ui/core/Typography';
function LightBulbIcon(props) {
return (
<SvgIcon {...props}>
<path d="M9 21c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-1H9v1zm3-19C8.14 2 5 5.14 5 9c0 2.38 1.19 4.47 3 5.74V17c0 .55.45 1 1 1h6c.55 0 1-.45 1-1v-2.26c1.81-1.27 3-3.36 3-5.74 0-3.86-3.14-7-7-7zm2.85 11.1l-.85.6V16h-4v-2.3l-.85-.6C7.8 12.16 7 10.63 7 9c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.63-.8 3.16-2.15 4.1z" />
</SvgIcon>
);
}
const useStyles = makeStyles((theme) => ({
root: {
margin: theme.spacing(6, 0, 3),
},
lightBulb: {
verticalAlign: 'middle',
marginRight: theme.spacing(1),
},
}));
export default function ProTip() {
const classes = useStyles();
return (
<Typography className={classes.root} color="textSecondary">
<LightBulbIcon className={classes.lightBulb} />
Pro tip: See more{' '}
<Link href="https://material-ui.com/getting-started/templates/">templates</Link> on the
Material-UI documentation.
</Typography>
);
}
\ No newline at end of file
import React from 'react';
//import './App.css';
//import PropTypes from 'prop-types';
//import { withStyles } from '@material-ui/core/styles';
//import MuiThemeProvider from '@material-ui/core/styles/MuiThemeProvider';
import AppBar from '@material-ui/core/AppBar';
//import Toolbar from '@material-ui/core/Toolbar';
//import MenuIcon from '@material-ui/icons/Menu';
//import IconButton from '@material-ui/core/IconButton';
//import ExitToApp from '@material-ui/icons/ExitToApp';
//import Drawer from '@material-ui/core/Drawer';
//import Forms from './Forms';
//import HomeIcon from '@material-ui/icons/Home';
import Typography from '@material-ui/core/Typography';
import MusicList from './MusicList';
import music_list from '../data';
export default class App extends React.Component {
constructor(props) {
super(props);
this.state = {
music_list : music_list
}
}
render () {
return (
<div>
<AppBar position="fixed">
<Typography align="center" variant="h3" color="inherit">Your Favorite Musics</Typography>
</AppBar>
<div style={{height: 60, width: '100%'}}></div>
<MusicList list={this.state.music_list}>
</MusicList>
</div>
);
}
}
\ No newline at end of file
import React from 'react';
import { withStyles } from '@material-ui/core/styles';
import {Card, CardContent, CardActions, Typography, IconButton} from '@material-ui/core';
import {Favorite, FavoriteBorder} from '@material-ui/icons';
import firebase from '../firebase';
import SnackbarMsg from './snackmsg';
const styles = theme => ({
content : {},
layout : {
display : 'flex',
justifyContent : 'center'
},
card: {
minWidth: 275,
maxWidth: 600,
marginBottom : 20,
marginLeft : 'auto',
marginRight : 'auto',
},
});
class MusicList extends React.Component {
constructor(props) {
super(props);
this.state = {
likes : {},
snackbar : {},
};
}
toggleFavorite = (id) => () => {
let {likes} = this.state;
console.log(id, likes[id]);
if(likes[id] == undefined) {
likes[id] = true;
}
else {
likes[id] = (likes[id]) ? false : true;
}
let db = firebase.firestore();
db.collection('likes').doc(String(id)).set({like : likes[id]});
/*
try {
let ref = db.collection('likes').doc(String(id));
ref.get().then((doc) => {
if (doc.exists) {
console.log('document data : ', doc.data());
}
else {
console.log('No Such Document')
}
}).catch((e) => {
console.log('Error while accessing Firestore : ' + e);
});
}
catch (e) {
console.log('Error Occurred : '+ e);
} */
this.setState({likes, snackbar : {open : true, msg : `id ${id} clicked`}});
}
handleSnackbarClose = (event, reason) => {
if (reason === 'clickaway') {
return;
}
this.setState({snackbar : {open : false, msg : ''}});
}
render () {
const {classes} = this.props;
return (
<div>
{this.props.list.results.map(item => {
return (
<Card key={item.collectionId} className={classes.card}>
<CardContent>
<Typography variant="subtitle1"> {item.artistName}</Typography>
<Typography variant="subtitle2"> {item.collectionCensoredName}</Typography>
</CardContent>
<CardActions>
<IconButton onClick={this.toggleFavorite(item.collectionId)}>
{this.state.likes[item.collectionId] ? <Favorite /> : <FavoriteBorder />}
</IconButton>
</CardActions>
</Card>)
})}
<SnackbarMsg open={this.state.snackbar.open} message={this.state.snackbar.msg} onClose={this.handleSnackbarClose}></SnackbarMsg>
</div>
);
}
}
export default withStyles(styles)(MusicList);
\ No newline at end of file
import React from 'react';
import {Snackbar} from '@material-ui/core';
import MuiAlert from '@material-ui/lab/Alert';
function Alert(props) {
return <MuiAlert elevation={6} variant="filled" {...props} />;
}
const SnackbarMsg = (props) => {
return (
<Snackbar open={props.open} autoHideDuration={3000} onClose={props.onClose} message={props.message}>
<Alert onClose={props.onClose} severity="success">{props.message}</Alert>
</Snackbar>
);
}
export default SnackbarMsg;
\ No newline at end of file
// In browser https://itunes.apple.com/search?term="blackpink"&entity=album
export const music_list = {
"resultCount":50,
"results": [
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1263315668, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK - EP", "collectionCensoredName":"BLACKPINK - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-ep/1263315668?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/27/a8/2d/27a82df6-aad9-a7ca-4001-ed03f9223c56/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/27/a8/2d/27a82df6-aad9-a7ca-4001-ed03f9223c56/source/100x100bb.jpg", "collectionPrice":7.74, "collectionExplicitness":"notExplicit", "trackCount":6, "copyright":"℗ 2017 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2017-08-29T07:00:00Z", "primaryGenreName":"J-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1441511506, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK IN YOUR AREA", "collectionCensoredName":"BLACKPINK IN YOUR AREA", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-in-your-area/1441511506?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music115/v4/1f/fe/d0/1ffed01b-7510-1b15-fa1e-da620bc749b9/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music115/v4/1f/fe/d0/1ffed01b-7510-1b15-fa1e-da620bc749b9/source/100x100bb.jpg", "collectionPrice":11.61, "collectionExplicitness":"notExplicit", "trackCount":9, "copyright":"℗ 2018 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2018-12-05T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1455720702, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK ARENA TOUR 2018 \"SPECIAL FINAL IN KYOCERA DOME OSAKA\"", "collectionCensoredName":"BLACKPINK ARENA TOUR 2018 \"SPECIAL FINAL IN KYOCERA DOME OSAKA\"", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-arena-tour-2018-special-final-in-kyocera/1455720702?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/d2/98/1a/d2981a24-1f59-68f6-80e9-6a882025489d/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/d2/98/1a/d2981a24-1f59-68f6-80e9-6a882025489d/source/100x100bb.jpg", "collectionPrice":12.99, "collectionExplicitness":"notExplicit", "trackCount":15, "copyright":"℗ 2019 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2019-03-13T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1533894050, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"THE ALBUM", "collectionCensoredName":"THE ALBUM", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-album/1533894050?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music115/v4/1c/40/08/1c400860-ebac-750e-d769-70452c613641/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music115/v4/1c/40/08/1c400860-ebac-750e-d769-70452c613641/source/100x100bb.jpg", "collectionPrice":7.99, "collectionExplicitness":"notExplicit", "trackCount":8, "copyright":"℗ 2020 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2020-10-02T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1570169082, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK 2021 'THE SHOW' LIVE", "collectionCensoredName":"BLACKPINK 2021 'THE SHOW' LIVE", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-2021-the-show-live/1570169082?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/b6/48/3c/b6483cb5-3b12-8fe4-51fc-29e4c9f41c81/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/b6/48/3c/b6483cb5-3b12-8fe4-51fc-29e4c9f41c81/source/100x100bb.jpg", "collectionPrice":11.99, "collectionExplicitness":"notExplicit", "trackCount":15, "copyright":"℗ 2021 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2021-06-01T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1313151079, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"SQUARE TWO - EP", "collectionCensoredName":"SQUARE TWO - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/square-two-ep/1313151079?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/db/ea/fc/dbeafc60-c44d-115a-bac8-b1ed6b88768b/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/db/ea/fc/dbeafc60-c44d-115a-bac8-b1ed6b88768b/source/100x100bb.jpg", "collectionPrice":3.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"℗ 2016 YG Entertainment", "country":"USA", "currency":"USD", "releaseDate":"2016-11-01T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1551479990, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"SQUARE UP - EP", "collectionCensoredName":"SQUARE UP - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/square-up-ep/1551479990?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/71/ac/31/71ac31ed-61b6-e120-f504-f4c707a27a91/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/71/ac/31/71ac31ed-61b6-e120-f504-f4c707a27a91/source/100x100bb.jpg", "collectionPrice":3.99, "collectionExplicitness":"notExplicit", "trackCount":4, "copyright":"℗ 2018 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2018-06-15T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1512384089, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK 2019-2020 WORLD TOUR IN YOUR AREA - TOKYO DOME (Live)", "collectionCensoredName":"BLACKPINK 2019-2020 WORLD TOUR IN YOUR AREA - TOKYO DOME (Live)", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-2019-2020-world-tour-in-your-area-tokyo-dome-live/1512384089?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/59/12/c8/5912c802-307a-0dd8-5fc1-4deb64e36d1e/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/59/12/c8/5912c802-307a-0dd8-5fc1-4deb64e36d1e/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":12, "copyright":"An Interscope Records release; ℗ 2020 UNIVERSAL MUSIC LLC", "country":"USA", "currency":"USD", "releaseDate":"2020-05-14T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":921425189, "collectionId":1573682660, "amgArtistId":3361376, "artistName":"Ted Park & Mike Gao", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/ted-park/921425189?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1573682660?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/78/f2/4b/78f24b7c-ba68-8f36-1dd3-6c21ecee28ad/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/78/f2/4b/78f24b7c-ba68-8f36-1dd3-6c21ecee28ad/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2021 Ted Park", "country":"USA", "currency":"USD", "releaseDate":"2021-07-09T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1477390055, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK 2018 TOUR 'IN YOUR AREA' SEOUL (Live)", "collectionCensoredName":"BLACKPINK 2018 TOUR 'IN YOUR AREA' SEOUL (Live)", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-2018-tour-in-your-area-seoul-live/1477390055?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/88/d6/14/88d61441-7b38-5a53-d6df-904714e6f4a2/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/88/d6/14/88d61441-7b38-5a53-d6df-904714e6f4a2/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":14, "copyright":"℗ 2019 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2019-08-30T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1359000280, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"Re: BLACKPINK - EP", "collectionCensoredName":"Re: BLACKPINK - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/re-blackpink-ep/1359000280?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music125/v4/b8/29/4e/b8294ecc-aaaa-aa94-c6fc-ec7f434856d6/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music125/v4/b8/29/4e/b8294ecc-aaaa-aa94-c6fc-ec7f434856d6/source/100x100bb.jpg", "collectionPrice":7.74, "collectionExplicitness":"notExplicit", "trackCount":6, "copyright":"℗ 2018 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2018-03-28T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1551479989, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"KILL THIS LOVE - EP", "collectionCensoredName":"KILL THIS LOVE - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/kill-this-love-ep/1551479989?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/a0/30/89/a03089c6-73d6-e758-69e0-6d821d4bc06e/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/a0/30/89/a03089c6-73d6-e758-69e0-6d821d4bc06e/source/100x100bb.jpg", "collectionPrice":4.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"℗ 2019 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2019-04-05T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1315917456, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"SQUARE ONE - Single", "collectionCensoredName":"SQUARE ONE - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/square-one-single/1315917456?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/b9/7b/1c/b97b1c40-b8a0-3de8-f3f9-92e33c92d555/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/b9/7b/1c/b97b1c40-b8a0-3de8-f3f9-92e33c92d555/source/100x100bb.jpg", "collectionPrice":1.99, "collectionExplicitness":"notExplicit", "trackCount":2, "copyright":"℗ 2016 YG Entertainment", "country":"USA", "currency":"USD", "releaseDate":"2016-08-08T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1251249729, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"As If It's Your Last - Single", "collectionCensoredName":"As If It's Your Last - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/as-if-its-your-last-single/1251249729?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music124/v4/d5/d2/a9/d5d2a927-309d-e104-11aa-51c7c54f613c/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music124/v4/d5/d2/a9/d5d2a927-309d-e104-11aa-51c7c54f613c/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2017 YG Entertainment", "country":"USA", "currency":"USD", "releaseDate":"2017-06-22T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":913944, "collectionId":1441819348, "artistName":"JENNIE (from BLACKPINK)", "collectionName":"SOLO - Single", "collectionCensoredName":"SOLO - Single", "artistViewUrl":"https://music.apple.com/us/artist/jennie/913944?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/solo-single/1441819348?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/78/18/60/7818608f-3e65-c3cd-f54a-5742dc3f3cf7/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/78/18/60/7818608f-3e65-c3cd-f54a-5742dc3f3cf7/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2018-11-12T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":491599229, "collectionId":730855247, "amgArtistId":1088191, "artistName":"livetune", "collectionName":"Pink or Black (feat. Hatsune Miku) - Single", "collectionCensoredName":"Pink or Black (feat. Hatsune Miku) - Single", "artistViewUrl":"https://music.apple.com/us/artist/livetune/491599229?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-or-black-feat-hatsune-miku-single/730855247?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music4/v4/25/4a/1a/254a1a01-31f9-c971-11a6-d9d00e7a45f9/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music4/v4/25/4a/1a/254a1a01-31f9-c971-11a6-d9d00e7a45f9/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2013 TOY'S FACTORY", "country":"USA", "currency":"USD", "releaseDate":"2013-11-06T08:00:00Z", "primaryGenreName":"Electronic"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1406242696, "collectionId":1557744841, "artistName":"ROSÉ", "collectionName":"R - Single", "collectionCensoredName":"R - Single", "artistViewUrl":"https://music.apple.com/us/artist/ros%C3%A9/1406242696?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/r-single/1557744841?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/b0/35/a4/b035a4c4-50b3-3fe9-6206-48f9a57428e3/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/b0/35/a4/b035a4c4-50b3-3fe9-6206-48f9a57428e3/source/100x100bb.jpg", "collectionPrice":1.99, "collectionExplicitness":"notExplicit", "trackCount":2, "copyright":"℗ 2021 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2021-03-12T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":929709668, "collectionId":929709656, "artistName":"Montessori Dads", "collectionName":"Black & White & Pink", "collectionCensoredName":"Black & White & Pink", "artistViewUrl":"https://music.apple.com/us/artist/montessori-dads/929709668?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-white-pink/929709656?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music3/v4/5a/58/63/5a5863dc-6a07-2e90-3426-4ebd6e9fd357/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music3/v4/5a/58/63/5a5863dc-6a07-2e90-3426-4ebd6e9fd357/source/100x100bb.jpg", "collectionPrice":8.99, "collectionExplicitness":"notExplicit", "trackCount":10, "copyright":"℗ 2015 Paine Group, LLC", "country":"USA", "currency":"USD", "releaseDate":"2015-02-10T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1449813048, "collectionId":1528439853, "artistName":"DooPiano", "collectionName":"The Best of BLACKPINK (Piano Album)", "collectionCensoredName":"The Best of BLACKPINK (Piano Album)", "artistViewUrl":"https://music.apple.com/us/artist/doopiano/1449813048?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-best-of-blackpink-piano-album/1528439853?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music115/v4/62/85/68/628568a0-7679-dad4-4b2f-ee28385fd043/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music115/v4/62/85/68/628568a0-7679-dad4-4b2f-ee28385fd043/source/100x100bb.jpg", "collectionPrice":9.90, "collectionExplicitness":"notExplicit", "trackCount":10, "copyright":"℗ 2020 DooPiano", "country":"USA", "currency":"USD", "releaseDate":"2020-08-19T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":459030916, "collectionId":1050941389, "artistName":"Chinatsu Yoshikawa", "collectionName":"ゆるゆり うた♪ソロ!02「ぴんぶら☆ピン -Pink★Black☆Pink-」 - EP", "collectionCensoredName":"ゆるゆり うた♪ソロ!02「ぴんぶら☆ピン -Pink★Black☆Pink-」 - EP", "artistViewUrl":"https://music.apple.com/us/artist/chinatsu-yoshikawa/459030916?uo=4",
"collectionViewUrl":"https://music.apple.com/us/album/%E3%82%86%E3%82%8B%E3%82%86%E3%82%8A-%E3%81%86%E3%81%9F-%E3%82%BD%E3%83%AD-02-%E3%81%B4%E3%82%93%E3%81%B6%E3%82%89-%E3%83%94%E3%83%B3-pink-black-pink-ep/1050941389?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music6/v4/79/91/ea/7991eacf-134a-d59e-c6ae-7d34ad3a34c1/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music6/v4/79/91/ea/7991eacf-134a-d59e-c6ae-7d34ad3a34c1/source/100x100bb.jpg", "collectionPrice":5.16, "collectionExplicitness":"notExplicit", "trackCount":4, "copyright":"℗ 2015 Pony Canyon Inc.", "country":"USA", "currency":"USD", "releaseDate":"2015-11-04T08:00:00Z", "primaryGenreName":"Anime"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":951231115, "collectionId":1467003776, "amgArtistId":3473663, "artistName":"Piano Dreamers", "collectionName":"Piano Dreamers Play Blackpink (Instrumental)", "collectionCensoredName":"Piano Dreamers Play Blackpink (Instrumental)", "artistViewUrl":"https://music.apple.com/us/artist/piano-dreamers/951231115?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/piano-dreamers-play-blackpink-instrumental/1467003776?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/51/ad/0b/51ad0b1f-f843-cf5f-f074-0e8605b7384a/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/51/ad/0b/51ad0b1f-f843-cf5f-f074-0e8605b7384a/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":12, "copyright":"℗ 2019 CC Entertainment, Inc.", "country":"USA", "currency":"USD", "releaseDate":"2019-07-05T07:00:00Z", "primaryGenreName":"Instrumental"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1482719359, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"Kill This Love (Japan Version) - EP", "collectionCensoredName":"Kill This Love (Japan Version) - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/kill-this-love-japan-version-ep/1482719359?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/86/2f/45/862f455e-8b7a-c071-b922-100f93d1efc8/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/86/2f/45/862f455e-8b7a-c071-b922-100f93d1efc8/source/100x100bb.jpg", "collectionPrice":4.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"An Interscope Records release; ℗ 2019 UNIVERSAL MUSIC LLC", "country":"USA", "currency":"USD", "releaseDate":"2019-10-16T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1482285399, "collectionId":1521352986, "artistName":"Shin Giwon Piano", "collectionName":"BLACKPINK Piano Collection", "collectionCensoredName":"BLACKPINK Piano Collection", "artistViewUrl":"https://music.apple.com/us/artist/shin-giwon-piano/1482285399?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-piano-collection/1521352986?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/76/cc/6f/76cc6ffe-62ef-f225-0d5e-4f846c463f61/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/76/cc/6f/76cc6ffe-62ef-f225-0d5e-4f846c463f61/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":17, "copyright":"℗ 2020 Shin Giwon", "country":"USA", "currency":"USD", "releaseDate":"2020-06-29T07:00:00Z", "primaryGenreName":"New Age"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":76107280, "collectionId":1416167580, "artistName":"A.B.Y.S.S.", "collectionName":"Black Suits & Pink Slips", "collectionCensoredName":"Black Suits & Pink Slips", "artistViewUrl":"https://music.apple.com/us/artist/a-b-y-s-s/76107280?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-suits-pink-slips/1416167580?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music118/v4/42/a8/2a/42a82ad9-21f1-7eae-113f-feffc24f901d/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music118/v4/42/a8/2a/42a82ad9-21f1-7eae-113f-feffc24f901d/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":13, "copyright":"℗ 2018 A.B.Y.S.S.", "country":"USA", "currency":"USD", "releaseDate":"2018-08-11T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1413680648, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"DDU-DU DDU-DU (JP Ver.) - Single", "collectionCensoredName":"DDU-DU DDU-DU (JP Ver.) - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/ddu-du-ddu-du-jp-ver-single/1413680648?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/ae/de/b9/aedeb9c8-7e83-b63d-f178-fdcfc52c3b7f/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/ae/de/b9/aedeb9c8-7e83-b63d-f178-fdcfc52c3b7f/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2018-08-22T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1474802237, "collectionId":1571958799, "artistName":"Demaklenco, DJP Montedo & Maicol", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/demaklenco/1474802237?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1571958799?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/3d/04/ae/3d04aef6-a6f1-0850-ac64-e1f087f70ec2/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/3d/04/ae/3d04aef6-a6f1-0850-ac64-e1f087f70ec2/source/100x100bb.jpg", "collectionPrice":1.98, "collectionExplicitness":"notExplicit", "trackCount":2, "copyright":"℗ 2021 Paolo Montedonico", "country":"USA", "currency":"USD", "releaseDate":"2021-06-19T07:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1496808208, "collectionId":1496813775, "amgArtistId":3699652, "artistName":"UPTOWN BOYBAND", "collectionName":"BLACKPINK - Single", "collectionCensoredName":"BLACKPINK - Single", "artistViewUrl":"https://music.apple.com/us/artist/uptown-boyband/1496808208?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1496813775?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music113/v4/b1/2f/f1/b12ff170-ba67-a3df-af6b-fb2ac0bda08d/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music113/v4/b1/2f/f1/b12ff170-ba67-a3df-af6b-fb2ac0bda08d/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":1, "copyright":"℗ 2020 CLUB UBB", "country":"USA", "currency":"USD", "releaseDate":"2020-02-03T08:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1065825050, "collectionId":1456873558, "artistName":"Royal Sadness", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/royal-sadness/1065825050?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1456873558?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/01/42/77/01427753-9a2e-403a-782c-4b296a616a72/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/01/42/77/01427753-9a2e-403a-782c-4b296a616a72/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2019 Royal Sadness", "country":"USA", "currency":"USD", "releaseDate":"2019-03-19T07:00:00Z", "primaryGenreName":"Electronic"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":331122, "collectionId":1479103847, "artistName":"Various Artists", "collectionName":"Blackpink", "collectionCensoredName":"Blackpink", "collectionViewUrl":"https://music.apple.com/us/album/blackpink/1479103847?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music123/v4/35/68/83/3568834d-3efb-0a07-456b-064a39765161/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music123/v4/35/68/83/3568834d-3efb-0a07-456b-064a39765161/source/100x100bb.jpg", "collectionPrice":8.91, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":9, "copyright":"℗ 2019 Udea Zenti", "country":"USA", "currency":"USD", "releaseDate":"2019-09-04T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1564279585, "collectionId":1531913742, "artistName":"WU", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/wu/1564279585?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1531913742?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/6c/41/c0/6c41c038-e2f6-1e35-4b9b-31dfa09e7f53/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/6c/41/c0/6c41c038-e2f6-1e35-4b9b-31dfa09e7f53/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2020 Bariswu Production", "country":"USA", "currency":"USD", "releaseDate":"2020-09-11T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1574291360, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"Lovesick Girls (Japan Version) - Single", "collectionCensoredName":"Lovesick Girls (Japan Version) - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/lovesick-girls-japan-version-single/1574291360?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/47/b9/aa/47b9aa2c-5220-32d5-46bf-fce3fec8eaf0/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/47/b9/aa/47b9aa2c-5220-32d5-46bf-fce3fec8eaf0/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"An Interscope Records release; ℗ 2021 UNIVERSAL MUSIC LLC", "country":"USA", "currency":"USD", "releaseDate":"2021-07-13T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1200899105, "collectionId":1497233316, "artistName":"Bashment YC & Kali Blanco", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/bashment-yc/1200899105?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1497233316?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/76/8f/d1/768fd1b6-08e8-f7a5-41d4-998f6db162ea/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/76/8f/d1/768fd1b6-08e8-f7a5-41d4-998f6db162ea/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2020 Electric Station Label", "country":"USA", "currency":"USD", "releaseDate":"2020-03-06T08:00:00Z", "primaryGenreName":"House"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1528237530, "collectionId":1530405192, "artistName":"Rolenbmusic", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/rolenbmusic/1528237530?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1530405192?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music114/v4/67/ff/43/67ff43e5-ca50-f2f1-4db2-a1622ecc7727/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music114/v4/67/ff/43/67ff43e5-ca50-f2f1-4db2-a1622ecc7727/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2020 RolenMusic", "country":"USA", "currency":"USD", "releaseDate":"2020-09-02T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":19810758, "collectionId":1037593355, "amgArtistId":2120823, "artistName":"Les Black's Amazing Pink Holes", "collectionName":"We're Glad We Are What We Are", "collectionCensoredName":"We're Glad We Are What We Are", "artistViewUrl":"https://music.apple.com/us/artist/les-blacks-amazing-pink-holes/19810758?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/were-glad-we-are-what-we-are/1037593355?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/81/bf/5781bf3d-6af1-7aef-29d0-e076c08415bc/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/81/bf/5781bf3d-6af1-7aef-29d0-e076c08415bc/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":25, "copyright":"℗ 2000 Smog Veil Records", "country":"USA", "currency":"USD", "releaseDate":"2000-11-03T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":211586470, "collectionId":211586462, "amgArtistId":943854, "artistName":"Little Mascara", "collectionName":"Hot Pink & Black", "collectionCensoredName":"Hot Pink & Black", "artistViewUrl":"https://music.apple.com/us/artist/little-mascara/211586470?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/hot-pink-black/211586462?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/cf/2d/57/cf2d575f-6bda-d63c-3a45-d1731efa228c/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/cf/2d/57/cf2d575f-6bda-d63c-3a45-d1731efa228c/source/100x100bb.jpg", "collectionPrice":9.90, "collectionExplicitness":"notExplicit", "trackCount":10, "copyright":"℗ 2006 Candy Darling Records", "country":"USA", "currency":"USD", "releaseDate":"2006-12-18T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1292250339, "collectionId":1436989049, "artistName":"Ferrini 41", "collectionName":"The Pink and Black Project", "collectionCensoredName":"The Pink and Black Project", "artistViewUrl":"https://music.apple.com/us/artist/ferrini-41/1292250339?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-pink-and-black-project/1436989049?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music128/v4/36/ea/0e/36ea0ec9-c398-bd3a-af1b-33b8e09b0db4/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music128/v4/36/ea/0e/36ea0ec9-c398-bd3a-af1b-33b8e09b0db4/source/100x100bb.jpg", "collectionPrice":6.21, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":9, "copyright":"℗ 2018 41 Mob", "country":"USA", "currency":"USD", "releaseDate":"2018-09-20T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1521729674, "collectionId":1538532761, "artistName":"Pianella Piano", "collectionName":"Piano Tribute to Blackpink, Vol. 1", "collectionCensoredName":"Piano Tribute to Blackpink, Vol. 1", "artistViewUrl":"https://music.apple.com/us/artist/pianella-piano/1521729674?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/piano-tribute-to-blackpink-vol-1/1538532761?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/28/50/ea/2850eaa2-5170-d0c4-a917-5b968af8549a/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/28/50/ea/2850eaa2-5170-d0c4-a917-5b968af8549a/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":16, "copyright":"℗ 2020 Pianella Piano", "country":"USA", "currency":"USD", "releaseDate":"2020-11-03T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":320714476, "collectionId":320714466, "amgArtistId":1164901, "artistName":"The Big Pink Black", "collectionName":"The Big Pink Black", "collectionCensoredName":"The Big Pink Black", "artistViewUrl":"https://music.apple.com/us/artist/the-big-pink-black/320714476?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-big-pink-black/320714466?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/40/5a/71/405a7176-6a6e-7905-a20a-551f35b0067c/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/40/5a/71/405a7176-6a6e-7905-a20a-551f35b0067c/source/100x100bb.jpg", "collectionPrice":8.91, "collectionExplicitness":"notExplicit", "trackCount":9, "copyright":"℗ 2009 The Big Pink Black", "country":"USA", "currency":"USD", "releaseDate":"2009-06-15T07:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":19810758, "collectionId":1037558837, "amgArtistId":2120823, "artistName":"Les Black's Amazing Pink Holes", "collectionName":"Breakfast With the Holes", "collectionCensoredName":"Breakfast With the Holes", "artistViewUrl":"https://music.apple.com/us/artist/les-blacks-amazing-pink-holes/19810758?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/breakfast-with-the-holes/1037558837?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music5/v4/cb/5e/97/cb5e9702-776a-b6c4-5e83-d8f99915eae0/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music5/v4/cb/5e/97/cb5e9702-776a-b6c4-5e83-d8f99915eae0/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":18, "copyright":"℗ 2008 Smog Veil Records", "country":"USA", "currency":"USD", "releaseDate":"2008-07-31T07:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":368236250, "collectionId":1087165594, "amgArtistId":2092643, "artistName":"Tex Smith", "collectionName":"Pink and Black", "collectionCensoredName":"Pink and Black", "artistViewUrl":"https://music.apple.com/us/artist/tex-smith/368236250?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-and-black/1087165594?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/ee/e6/57eee68a-5500-e3d0-b0f6-f2920de9c322/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/ee/e6/57eee68a-5500-e3d0-b0f6-f2920de9c322/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":13, "copyright":"℗ 2015 Tex Smith", "country":"USA", "currency":"USD", "releaseDate":"2015-12-11T08:00:00Z", "primaryGenreName":"Country"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1083661855, "collectionId":1484425793, "artistName":"AKAI SOLO & Pink Siifu", "collectionName":"Black Sand", "collectionCensoredName":"Black Sand", "artistViewUrl":"https://music.apple.com/us/artist/akai-solo/1083661855?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-sand/1484425793?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music114/v4/5c/f0/35/5cf03578-66a4-edb5-6a3d-9e2c7e51d707/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music114/v4/5c/f0/35/5cf03578-66a4-edb5-6a3d-9e2c7e51d707/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":15, "copyright":"℗ 2019 Field-Left", "country":"USA", "currency":"USD", "releaseDate":"2019-10-29T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1569909010, "collectionId":1569916263, "artistName":"RDQO BEATS", "collectionName":"Black Pink - Single", "collectionCensoredName":"Black Pink - Single", "artistViewUrl":"https://music.apple.com/us/artist/rdqo-beats/1569909010?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-pink-single/1569916263?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/31/d0/86/31d086d0-35c2-3fef-5170-664f5d2249ff/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/31/d0/86/31d086d0-35c2-3fef-5170-664f5d2249ff/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2021 3075302 Records DK", "country":"USA", "currency":"USD", "releaseDate":"2021-05-27T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1204917424, "collectionId":1358440377, "artistName":"BlackPink", "collectionName":"Peep Show - EP", "collectionCensoredName":"Peep Show - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1204917424?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/peep-show-ep/1358440377?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music128/v4/d6/91/77/d691770d-270b-e2fa-ce34-ad318234e22f/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music128/v4/d6/91/77/d691770d-270b-e2fa-ce34-ad318234e22f/source/100x100bb.jpg", "collectionPrice":4.95, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":5, "copyright":"℗ 2018 Black Pink", "country":"USA", "currency":"USD", "releaseDate":"2018-03-08T08:00:00Z", "primaryGenreName":"Alternative"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1445708481, "collectionId":1457441806, "artistName":"Gavin", "collectionName":"Pink and Black", "collectionCensoredName":"Pink and Black", "artistViewUrl":"https://music.apple.com/us/artist/gavin/1445708481?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-and-black/1457441806?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/96/1c/68/961c688f-216c-af37-fd34-7700fe7ac808/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/96/1c/68/961c688f-216c-af37-fd34-7700fe7ac808/source/100x100bb.jpg", "collectionPrice":7.53, "collectionExplicitness":"notExplicit", "trackCount":7, "copyright":"℗ 2019 BOVEE's PRODUCE DEPT.", "country":"USA", "currency":"USD", "releaseDate":"2019-03-28T07:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1413635617, "collectionId":1442944804, "artistName":"Latindian Style", "collectionName":"Black Pink - Single", "collectionCensoredName":"Black Pink - Single", "artistViewUrl":"https://music.apple.com/us/artist/latindian-style/1413635617?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-pink-single/1442944804?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music128/v4/5d/39/24/5d39240c-064e-feda-942d-dc3b46582d68/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music128/v4/5d/39/24/5d39240c-064e-feda-942d-dc3b46582d68/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 Hinjew Records", "country":"USA", "currency":"USD", "releaseDate":"2018-07-29T07:00:00Z", "primaryGenreName":"Techno"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1499787910, "collectionId":1553000005, "artistName":"firstclasslikealways", "collectionName":"Black Pink - Single", "collectionCensoredName":"Black Pink - Single", "artistViewUrl":"https://music.apple.com/us/artist/firstclasslikealways/1499787910?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-pink-single/1553000005?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music124/v4/2e/de/87/2ede8757-1d9d-f9ce-1cca-4e8c853d45e4/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music124/v4/2e/de/87/2ede8757-1d9d-f9ce-1cca-4e8c853d45e4/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2021 1604518 Records DK", "country":"USA", "currency":"USD", "releaseDate":"2021-02-08T08:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1472450899, "collectionId":1472865026, "artistName":"Jesus the Snake", "collectionName":"Black Acid, Pink Rain", "collectionCensoredName":"Black Acid, Pink Rain", "artistViewUrl":"https://music.apple.com/us/artist/jesus-the-snake/1472450899?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-acid-pink-rain/1472865026?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music113/v4/f3/c4/99/f3c4996b-c0ae-90a2-0bcd-64a59784ca6f/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music113/v4/f3/c4/99/f3c4996b-c0ae-90a2-0bcd-64a59784ca6f/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"℗ 2019 1363643 Records DK", "country":"USA", "currency":"USD", "releaseDate":"2019-07-11T07:00:00Z", "primaryGenreName":"Alternative"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1458647578, "collectionId":500609353, "artistName":"Black Earth", "collectionName":"Pink Champagne", "collectionCensoredName":"Pink Champagne", "artistViewUrl":"https://music.apple.com/us/artist/black-earth/1458647578?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-champagne/500609353?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music/v4/f3/c7/66/f3c766b1-7ac7-8f1e-9d53-cdfbdcd565a4/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music/v4/f3/c7/66/f3c766b1-7ac7-8f1e-9d53-cdfbdcd565a4/source/100x100bb.jpg", "collectionPrice":9.90, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":10, "copyright":"℗ 2012 Purple Kush", "country":"USA", "currency":"USD", "releaseDate":"2012-01-03T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":964320885, "collectionId":964320884, "artistName":"Lindy Vision", "collectionName":"Pink + Black - EP", "collectionCensoredName":"Pink + Black - EP", "artistViewUrl":"https://music.apple.com/us/artist/lindy-vision/964320885?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-black-ep/964320884?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music5/v4/6a/c5/5a/6ac55ade-2bd0-0f22-deae-ff468ca2419a/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music5/v4/6a/c5/5a/6ac55ade-2bd0-0f22-deae-ff468ca2419a/source/100x100bb.jpg", "collectionPrice":4.95, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":5, "copyright":"℗ 2014 Lindy Vision", "country":"USA", "currency":"USD", "releaseDate":"2014-07-18T07:00:00Z", "primaryGenreName":"Electronic"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":47793786, "collectionId":1398956234, "amgArtistId":685284, "artistName":"The Pink Spiders", "collectionName":"Black Dagger - Single", "collectionCensoredName":"Black Dagger - Single", "artistViewUrl":"https://music.apple.com/us/artist/the-pink-spiders/47793786?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-dagger-single/1398956234?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music115/v4/05/b0/24/05b0243f-b852-8ed8-8f75-3a6edd2105f3/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music115/v4/05/b0/24/05b0243f-b852-8ed8-8f75-3a6edd2105f3/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 Mean Buzz Records", "country":"USA", "currency":"USD", "releaseDate":"2017-12-05T08:00:00Z", "primaryGenreName":"Rock"}]
}
export default music_list;
\ No newline at end of file
import firebase from 'firebase/app';
import 'firebase/firestore';
//import 'firebase/auth';
//import 'firebase/storage';
//var firebase = require("firebase");
// Initialize Firebase
/*
<!-- The core Firebase JS SDK is always required and must be listed first -->
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js"></script>
<!-- TODO: Add SDKs for Firebase products that you want to use
https://firebase.google.com/docs/web/setup#available-libraries -->
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-analytics.js"></script>
<script>
// Your web app's Firebase configuration
// For Firebase JS SDK v7.20.0 and later, measurementId is optional
var firebaseConfig = {
apiKey: "AIzaSyA-dgPz2St....",
authDomain: "practical-coding.firebaseapp.com",
projectId: "practical-coding",
storageBucket: "practical-coding.appspot.com",
messagingSenderId: "1107250.....",
appId: "1:110725080091:web:d6541c24969......",
measurementId: "G-Z6V6K...."
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
firebase.analytics();
</script>
*/
// firebase 에서 WebApp을 추가하면 위와 같은 샘플을 준다.
// 그 데이터를 아래와 같이 변환한다.
var firebaseConfig = {
apiKey: "AIzaSyA-dgPz2St......",
authDomain: "practical-coding.firebaseapp.com",
projectId: "practical-coding",
storageBucket: "practical-coding.appspot.com",
messagingSenderId: "110725....",
appId: "1:110725080091:web:d6541c24969a9.....",
measurementId: "G-Z6V6K...."
};
// Initialize Firebase
firebase.initializeApp(firebaseConfig);
export default firebase;
import { createTheme } from '@material-ui/core/styles';
import { red } from '@material-ui/core/colors';
// Create a theme instance.
const theme = createTheme({
palette: {
primary: {
main: '#556cd6',
},
secondary: {
main: '#19857b',
},
error: {
main: red.A400,
},
background: {
default: '#fff',
},
},
});
export default theme;
\ No newline at end of file
const path = require('path');
module.exports = {
// enntry file
entry: './src/index.js',
// 컴파일 + 번들링된 js 파일이 저장될 경로와 이름 지정
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.js$/,
include: [
path.resolve(__dirname, 'src')
],
exclude: /node_modules/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env', '@babel/preset-react'],
plugins: ['@babel/plugin-proposal-class-properties']
}
}
}
]
},
devtool: 'source-map',
// https://webpack.js.org/concepts/mode/#mode-development
mode: 'development'
};
node_modules/
var express = require('express');
const logger = require('morgan');
const axios = require('axios');
const list = require('./data');
var app = express()
const port = 3000
app.use(express.json())
app.use(express.urlencoded({'extended' : true}));
app.use(logger('dev'));
app.use(express.static('public')); // html, image 등 정적파일 제공 폴더 지정
app.get('/', (req, res) => {
res.sendFile('index.html')
})
//curl localhost:3000/user/tommy
app.get('/user/:id', (req, res) => {
res.send(`User id is ${req.params.id}`); // Or res.send('User id is ' + req.params.id);
})
// In zsh, u should try curl "http://localhost:{port}/user?id={ur-id}" //curl "http://localhost:3000/user?id=tommy"
app.get('/user', (req, res) => {
res.send(`User id is ${req.query.id}`);
})
// curl -X POST localhost:3000/user -d '{"id" : "jyc", "name" : "Jae Young"}' -H "Content-Type: application/json"
app.post('/user', (req, res) => {
console.log(req.body.name);
res.send(req.body);
})
app.get('/music_list', (req,res) => {
res.json(list);
})
app.get('/musicSearch/:term', async (req, res) => {
const params = {
term : req.params.term,
entity : "album",
}
var response = await axios.get('https://itunes.apple.com/search', {params : params}).catch(e => console.log(e));
console.log(response.data);
res.json(response.data);
})
app.listen(port, () => {
console.log(`Example app listening at http://localhost:${port}`)
})
// In browser https://itunes.apple.com/search?term="blackpink"&entity=album
// export const music_list = {
module.exports = {
"resultCount":50,
"results": [
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1263315668, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK - EP", "collectionCensoredName":"BLACKPINK - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-ep/1263315668?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/27/a8/2d/27a82df6-aad9-a7ca-4001-ed03f9223c56/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/27/a8/2d/27a82df6-aad9-a7ca-4001-ed03f9223c56/source/100x100bb.jpg", "collectionPrice":7.74, "collectionExplicitness":"notExplicit", "trackCount":6, "copyright":"℗ 2017 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2017-08-29T07:00:00Z", "primaryGenreName":"J-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1441511506, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK IN YOUR AREA", "collectionCensoredName":"BLACKPINK IN YOUR AREA", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-in-your-area/1441511506?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music115/v4/1f/fe/d0/1ffed01b-7510-1b15-fa1e-da620bc749b9/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music115/v4/1f/fe/d0/1ffed01b-7510-1b15-fa1e-da620bc749b9/source/100x100bb.jpg", "collectionPrice":11.61, "collectionExplicitness":"notExplicit", "trackCount":9, "copyright":"℗ 2018 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2018-12-05T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1455720702, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK ARENA TOUR 2018 \"SPECIAL FINAL IN KYOCERA DOME OSAKA\"", "collectionCensoredName":"BLACKPINK ARENA TOUR 2018 \"SPECIAL FINAL IN KYOCERA DOME OSAKA\"", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-arena-tour-2018-special-final-in-kyocera/1455720702?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/d2/98/1a/d2981a24-1f59-68f6-80e9-6a882025489d/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/d2/98/1a/d2981a24-1f59-68f6-80e9-6a882025489d/source/100x100bb.jpg", "collectionPrice":12.99, "collectionExplicitness":"notExplicit", "trackCount":15, "copyright":"℗ 2019 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2019-03-13T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1533894050, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"THE ALBUM", "collectionCensoredName":"THE ALBUM", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-album/1533894050?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music115/v4/1c/40/08/1c400860-ebac-750e-d769-70452c613641/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music115/v4/1c/40/08/1c400860-ebac-750e-d769-70452c613641/source/100x100bb.jpg", "collectionPrice":7.99, "collectionExplicitness":"notExplicit", "trackCount":8, "copyright":"℗ 2020 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2020-10-02T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1570169082, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK 2021 'THE SHOW' LIVE", "collectionCensoredName":"BLACKPINK 2021 'THE SHOW' LIVE", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-2021-the-show-live/1570169082?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/b6/48/3c/b6483cb5-3b12-8fe4-51fc-29e4c9f41c81/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music125/v4/b6/48/3c/b6483cb5-3b12-8fe4-51fc-29e4c9f41c81/source/100x100bb.jpg", "collectionPrice":11.99, "collectionExplicitness":"notExplicit", "trackCount":15, "copyright":"℗ 2021 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2021-06-01T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1313151079, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"SQUARE TWO - EP", "collectionCensoredName":"SQUARE TWO - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/square-two-ep/1313151079?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/db/ea/fc/dbeafc60-c44d-115a-bac8-b1ed6b88768b/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/db/ea/fc/dbeafc60-c44d-115a-bac8-b1ed6b88768b/source/100x100bb.jpg", "collectionPrice":3.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"℗ 2016 YG Entertainment", "country":"USA", "currency":"USD", "releaseDate":"2016-11-01T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1551479990, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"SQUARE UP - EP", "collectionCensoredName":"SQUARE UP - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/square-up-ep/1551479990?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/71/ac/31/71ac31ed-61b6-e120-f504-f4c707a27a91/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/71/ac/31/71ac31ed-61b6-e120-f504-f4c707a27a91/source/100x100bb.jpg", "collectionPrice":3.99, "collectionExplicitness":"notExplicit", "trackCount":4, "copyright":"℗ 2018 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2018-06-15T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1512384089, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK 2019-2020 WORLD TOUR IN YOUR AREA - TOKYO DOME (Live)", "collectionCensoredName":"BLACKPINK 2019-2020 WORLD TOUR IN YOUR AREA - TOKYO DOME (Live)", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-2019-2020-world-tour-in-your-area-tokyo-dome-live/1512384089?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/59/12/c8/5912c802-307a-0dd8-5fc1-4deb64e36d1e/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/59/12/c8/5912c802-307a-0dd8-5fc1-4deb64e36d1e/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":12, "copyright":"An Interscope Records release; ℗ 2020 UNIVERSAL MUSIC LLC", "country":"USA", "currency":"USD", "releaseDate":"2020-05-14T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":921425189, "collectionId":1573682660, "amgArtistId":3361376, "artistName":"Ted Park & Mike Gao", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/ted-park/921425189?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1573682660?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/78/f2/4b/78f24b7c-ba68-8f36-1dd3-6c21ecee28ad/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/78/f2/4b/78f24b7c-ba68-8f36-1dd3-6c21ecee28ad/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2021 Ted Park", "country":"USA", "currency":"USD", "releaseDate":"2021-07-09T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1477390055, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"BLACKPINK 2018 TOUR 'IN YOUR AREA' SEOUL (Live)", "collectionCensoredName":"BLACKPINK 2018 TOUR 'IN YOUR AREA' SEOUL (Live)", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-2018-tour-in-your-area-seoul-live/1477390055?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/88/d6/14/88d61441-7b38-5a53-d6df-904714e6f4a2/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/88/d6/14/88d61441-7b38-5a53-d6df-904714e6f4a2/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":14, "copyright":"℗ 2019 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2019-08-30T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1359000280, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"Re: BLACKPINK - EP", "collectionCensoredName":"Re: BLACKPINK - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/re-blackpink-ep/1359000280?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music125/v4/b8/29/4e/b8294ecc-aaaa-aa94-c6fc-ec7f434856d6/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music125/v4/b8/29/4e/b8294ecc-aaaa-aa94-c6fc-ec7f434856d6/source/100x100bb.jpg", "collectionPrice":7.74, "collectionExplicitness":"notExplicit", "trackCount":6, "copyright":"℗ 2018 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2018-03-28T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1551479989, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"KILL THIS LOVE - EP", "collectionCensoredName":"KILL THIS LOVE - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/kill-this-love-ep/1551479989?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/a0/30/89/a03089c6-73d6-e758-69e0-6d821d4bc06e/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/a0/30/89/a03089c6-73d6-e758-69e0-6d821d4bc06e/source/100x100bb.jpg", "collectionPrice":4.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"℗ 2019 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2019-04-05T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1315917456, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"SQUARE ONE - Single", "collectionCensoredName":"SQUARE ONE - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/square-one-single/1315917456?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/b9/7b/1c/b97b1c40-b8a0-3de8-f3f9-92e33c92d555/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/b9/7b/1c/b97b1c40-b8a0-3de8-f3f9-92e33c92d555/source/100x100bb.jpg", "collectionPrice":1.99, "collectionExplicitness":"notExplicit", "trackCount":2, "copyright":"℗ 2016 YG Entertainment", "country":"USA", "currency":"USD", "releaseDate":"2016-08-08T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1251249729, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"As If It's Your Last - Single", "collectionCensoredName":"As If It's Your Last - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/as-if-its-your-last-single/1251249729?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music124/v4/d5/d2/a9/d5d2a927-309d-e104-11aa-51c7c54f613c/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music124/v4/d5/d2/a9/d5d2a927-309d-e104-11aa-51c7c54f613c/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2017 YG Entertainment", "country":"USA", "currency":"USD", "releaseDate":"2017-06-22T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":913944, "collectionId":1441819348, "artistName":"JENNIE (from BLACKPINK)", "collectionName":"SOLO - Single", "collectionCensoredName":"SOLO - Single", "artistViewUrl":"https://music.apple.com/us/artist/jennie/913944?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/solo-single/1441819348?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/78/18/60/7818608f-3e65-c3cd-f54a-5742dc3f3cf7/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music118/v4/78/18/60/7818608f-3e65-c3cd-f54a-5742dc3f3cf7/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2018-11-12T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":491599229, "collectionId":730855247, "amgArtistId":1088191, "artistName":"livetune", "collectionName":"Pink or Black (feat. Hatsune Miku) - Single", "collectionCensoredName":"Pink or Black (feat. Hatsune Miku) - Single", "artistViewUrl":"https://music.apple.com/us/artist/livetune/491599229?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-or-black-feat-hatsune-miku-single/730855247?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music4/v4/25/4a/1a/254a1a01-31f9-c971-11a6-d9d00e7a45f9/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music4/v4/25/4a/1a/254a1a01-31f9-c971-11a6-d9d00e7a45f9/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2013 TOY'S FACTORY", "country":"USA", "currency":"USD", "releaseDate":"2013-11-06T08:00:00Z", "primaryGenreName":"Electronic"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1406242696, "collectionId":1557744841, "artistName":"ROSÉ", "collectionName":"R - Single", "collectionCensoredName":"R - Single", "artistViewUrl":"https://music.apple.com/us/artist/ros%C3%A9/1406242696?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/r-single/1557744841?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/b0/35/a4/b035a4c4-50b3-3fe9-6206-48f9a57428e3/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/b0/35/a4/b035a4c4-50b3-3fe9-6206-48f9a57428e3/source/100x100bb.jpg", "collectionPrice":1.99, "collectionExplicitness":"notExplicit", "trackCount":2, "copyright":"℗ 2021 YG Entertainment, distributed through Interscope Records", "country":"USA", "currency":"USD", "releaseDate":"2021-03-12T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":929709668, "collectionId":929709656, "artistName":"Montessori Dads", "collectionName":"Black & White & Pink", "collectionCensoredName":"Black & White & Pink", "artistViewUrl":"https://music.apple.com/us/artist/montessori-dads/929709668?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-white-pink/929709656?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music3/v4/5a/58/63/5a5863dc-6a07-2e90-3426-4ebd6e9fd357/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music3/v4/5a/58/63/5a5863dc-6a07-2e90-3426-4ebd6e9fd357/source/100x100bb.jpg", "collectionPrice":8.99, "collectionExplicitness":"notExplicit", "trackCount":10, "copyright":"℗ 2015 Paine Group, LLC", "country":"USA", "currency":"USD", "releaseDate":"2015-02-10T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1449813048, "collectionId":1528439853, "artistName":"DooPiano", "collectionName":"The Best of BLACKPINK (Piano Album)", "collectionCensoredName":"The Best of BLACKPINK (Piano Album)", "artistViewUrl":"https://music.apple.com/us/artist/doopiano/1449813048?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-best-of-blackpink-piano-album/1528439853?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music115/v4/62/85/68/628568a0-7679-dad4-4b2f-ee28385fd043/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music115/v4/62/85/68/628568a0-7679-dad4-4b2f-ee28385fd043/source/100x100bb.jpg", "collectionPrice":9.90, "collectionExplicitness":"notExplicit", "trackCount":10, "copyright":"℗ 2020 DooPiano", "country":"USA", "currency":"USD", "releaseDate":"2020-08-19T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":459030916, "collectionId":1050941389, "artistName":"Chinatsu Yoshikawa", "collectionName":"ゆるゆり うた♪ソロ!02「ぴんぶら☆ピン -Pink★Black☆Pink-」 - EP", "collectionCensoredName":"ゆるゆり うた♪ソロ!02「ぴんぶら☆ピン -Pink★Black☆Pink-」 - EP", "artistViewUrl":"https://music.apple.com/us/artist/chinatsu-yoshikawa/459030916?uo=4",
"collectionViewUrl":"https://music.apple.com/us/album/%E3%82%86%E3%82%8B%E3%82%86%E3%82%8A-%E3%81%86%E3%81%9F-%E3%82%BD%E3%83%AD-02-%E3%81%B4%E3%82%93%E3%81%B6%E3%82%89-%E3%83%94%E3%83%B3-pink-black-pink-ep/1050941389?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music6/v4/79/91/ea/7991eacf-134a-d59e-c6ae-7d34ad3a34c1/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music6/v4/79/91/ea/7991eacf-134a-d59e-c6ae-7d34ad3a34c1/source/100x100bb.jpg", "collectionPrice":5.16, "collectionExplicitness":"notExplicit", "trackCount":4, "copyright":"℗ 2015 Pony Canyon Inc.", "country":"USA", "currency":"USD", "releaseDate":"2015-11-04T08:00:00Z", "primaryGenreName":"Anime"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":951231115, "collectionId":1467003776, "amgArtistId":3473663, "artistName":"Piano Dreamers", "collectionName":"Piano Dreamers Play Blackpink (Instrumental)", "collectionCensoredName":"Piano Dreamers Play Blackpink (Instrumental)", "artistViewUrl":"https://music.apple.com/us/artist/piano-dreamers/951231115?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/piano-dreamers-play-blackpink-instrumental/1467003776?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/51/ad/0b/51ad0b1f-f843-cf5f-f074-0e8605b7384a/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/51/ad/0b/51ad0b1f-f843-cf5f-f074-0e8605b7384a/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":12, "copyright":"℗ 2019 CC Entertainment, Inc.", "country":"USA", "currency":"USD", "releaseDate":"2019-07-05T07:00:00Z", "primaryGenreName":"Instrumental"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1482719359, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"Kill This Love (Japan Version) - EP", "collectionCensoredName":"Kill This Love (Japan Version) - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/kill-this-love-japan-version-ep/1482719359?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/86/2f/45/862f455e-8b7a-c071-b922-100f93d1efc8/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music124/v4/86/2f/45/862f455e-8b7a-c071-b922-100f93d1efc8/source/100x100bb.jpg", "collectionPrice":4.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"An Interscope Records release; ℗ 2019 UNIVERSAL MUSIC LLC", "country":"USA", "currency":"USD", "releaseDate":"2019-10-16T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1482285399, "collectionId":1521352986, "artistName":"Shin Giwon Piano", "collectionName":"BLACKPINK Piano Collection", "collectionCensoredName":"BLACKPINK Piano Collection", "artistViewUrl":"https://music.apple.com/us/artist/shin-giwon-piano/1482285399?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-piano-collection/1521352986?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/76/cc/6f/76cc6ffe-62ef-f225-0d5e-4f846c463f61/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music123/v4/76/cc/6f/76cc6ffe-62ef-f225-0d5e-4f846c463f61/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":17, "copyright":"℗ 2020 Shin Giwon", "country":"USA", "currency":"USD", "releaseDate":"2020-06-29T07:00:00Z", "primaryGenreName":"New Age"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":76107280, "collectionId":1416167580, "artistName":"A.B.Y.S.S.", "collectionName":"Black Suits & Pink Slips", "collectionCensoredName":"Black Suits & Pink Slips", "artistViewUrl":"https://music.apple.com/us/artist/a-b-y-s-s/76107280?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-suits-pink-slips/1416167580?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music118/v4/42/a8/2a/42a82ad9-21f1-7eae-113f-feffc24f901d/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music118/v4/42/a8/2a/42a82ad9-21f1-7eae-113f-feffc24f901d/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":13, "copyright":"℗ 2018 A.B.Y.S.S.", "country":"USA", "currency":"USD", "releaseDate":"2018-08-11T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1413680648, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"DDU-DU DDU-DU (JP Ver.) - Single", "collectionCensoredName":"DDU-DU DDU-DU (JP Ver.) - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/ddu-du-ddu-du-jp-ver-single/1413680648?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/ae/de/b9/aedeb9c8-7e83-b63d-f178-fdcfc52c3b7f/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/ae/de/b9/aedeb9c8-7e83-b63d-f178-fdcfc52c3b7f/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 AVEX ENTERTAINMENT INC.", "country":"USA", "currency":"USD", "releaseDate":"2018-08-22T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1474802237, "collectionId":1571958799, "artistName":"Demaklenco, DJP Montedo & Maicol", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/demaklenco/1474802237?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1571958799?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/3d/04/ae/3d04aef6-a6f1-0850-ac64-e1f087f70ec2/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music115/v4/3d/04/ae/3d04aef6-a6f1-0850-ac64-e1f087f70ec2/source/100x100bb.jpg", "collectionPrice":1.98, "collectionExplicitness":"notExplicit", "trackCount":2, "copyright":"℗ 2021 Paolo Montedonico", "country":"USA", "currency":"USD", "releaseDate":"2021-06-19T07:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1496808208, "collectionId":1496813775, "amgArtistId":3699652, "artistName":"UPTOWN BOYBAND", "collectionName":"BLACKPINK - Single", "collectionCensoredName":"BLACKPINK - Single", "artistViewUrl":"https://music.apple.com/us/artist/uptown-boyband/1496808208?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1496813775?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music113/v4/b1/2f/f1/b12ff170-ba67-a3df-af6b-fb2ac0bda08d/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music113/v4/b1/2f/f1/b12ff170-ba67-a3df-af6b-fb2ac0bda08d/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":1, "copyright":"℗ 2020 CLUB UBB", "country":"USA", "currency":"USD", "releaseDate":"2020-02-03T08:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1065825050, "collectionId":1456873558, "artistName":"Royal Sadness", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/royal-sadness/1065825050?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1456873558?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/01/42/77/01427753-9a2e-403a-782c-4b296a616a72/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/01/42/77/01427753-9a2e-403a-782c-4b296a616a72/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2019 Royal Sadness", "country":"USA", "currency":"USD", "releaseDate":"2019-03-19T07:00:00Z", "primaryGenreName":"Electronic"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":331122, "collectionId":1479103847, "artistName":"Various Artists", "collectionName":"Blackpink", "collectionCensoredName":"Blackpink", "collectionViewUrl":"https://music.apple.com/us/album/blackpink/1479103847?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music123/v4/35/68/83/3568834d-3efb-0a07-456b-064a39765161/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music123/v4/35/68/83/3568834d-3efb-0a07-456b-064a39765161/source/100x100bb.jpg", "collectionPrice":8.91, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":9, "copyright":"℗ 2019 Udea Zenti", "country":"USA", "currency":"USD", "releaseDate":"2019-09-04T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1564279585, "collectionId":1531913742, "artistName":"WU", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/wu/1564279585?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1531913742?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/6c/41/c0/6c41c038-e2f6-1e35-4b9b-31dfa09e7f53/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music124/v4/6c/41/c0/6c41c038-e2f6-1e35-4b9b-31dfa09e7f53/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2020 Bariswu Production", "country":"USA", "currency":"USD", "releaseDate":"2020-09-11T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1141774019, "collectionId":1574291360, "amgArtistId":3243151, "artistName":"BLACKPINK", "collectionName":"Lovesick Girls (Japan Version) - Single", "collectionCensoredName":"Lovesick Girls (Japan Version) - Single", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1141774019?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/lovesick-girls-japan-version-single/1574291360?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/47/b9/aa/47b9aa2c-5220-32d5-46bf-fce3fec8eaf0/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music125/v4/47/b9/aa/47b9aa2c-5220-32d5-46bf-fce3fec8eaf0/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"An Interscope Records release; ℗ 2021 UNIVERSAL MUSIC LLC", "country":"USA", "currency":"USD", "releaseDate":"2021-07-13T07:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1200899105, "collectionId":1497233316, "artistName":"Bashment YC & Kali Blanco", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/bashment-yc/1200899105?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1497233316?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/76/8f/d1/768fd1b6-08e8-f7a5-41d4-998f6db162ea/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music123/v4/76/8f/d1/768fd1b6-08e8-f7a5-41d4-998f6db162ea/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2020 Electric Station Label", "country":"USA", "currency":"USD", "releaseDate":"2020-03-06T08:00:00Z", "primaryGenreName":"House"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1528237530, "collectionId":1530405192, "artistName":"Rolenbmusic", "collectionName":"Blackpink - Single", "collectionCensoredName":"Blackpink - Single", "artistViewUrl":"https://music.apple.com/us/artist/rolenbmusic/1528237530?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/blackpink-single/1530405192?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music114/v4/67/ff/43/67ff43e5-ca50-f2f1-4db2-a1622ecc7727/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music114/v4/67/ff/43/67ff43e5-ca50-f2f1-4db2-a1622ecc7727/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2020 RolenMusic", "country":"USA", "currency":"USD", "releaseDate":"2020-09-02T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":19810758, "collectionId":1037593355, "amgArtistId":2120823, "artistName":"Les Black's Amazing Pink Holes", "collectionName":"We're Glad We Are What We Are", "collectionCensoredName":"We're Glad We Are What We Are", "artistViewUrl":"https://music.apple.com/us/artist/les-blacks-amazing-pink-holes/19810758?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/were-glad-we-are-what-we-are/1037593355?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/81/bf/5781bf3d-6af1-7aef-29d0-e076c08415bc/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/81/bf/5781bf3d-6af1-7aef-29d0-e076c08415bc/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":25, "copyright":"℗ 2000 Smog Veil Records", "country":"USA", "currency":"USD", "releaseDate":"2000-11-03T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":211586470, "collectionId":211586462, "amgArtistId":943854, "artistName":"Little Mascara", "collectionName":"Hot Pink & Black", "collectionCensoredName":"Hot Pink & Black", "artistViewUrl":"https://music.apple.com/us/artist/little-mascara/211586470?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/hot-pink-black/211586462?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/cf/2d/57/cf2d575f-6bda-d63c-3a45-d1731efa228c/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/cf/2d/57/cf2d575f-6bda-d63c-3a45-d1731efa228c/source/100x100bb.jpg", "collectionPrice":9.90, "collectionExplicitness":"notExplicit", "trackCount":10, "copyright":"℗ 2006 Candy Darling Records", "country":"USA", "currency":"USD", "releaseDate":"2006-12-18T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1292250339, "collectionId":1436989049, "artistName":"Ferrini 41", "collectionName":"The Pink and Black Project", "collectionCensoredName":"The Pink and Black Project", "artistViewUrl":"https://music.apple.com/us/artist/ferrini-41/1292250339?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-pink-and-black-project/1436989049?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music128/v4/36/ea/0e/36ea0ec9-c398-bd3a-af1b-33b8e09b0db4/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music128/v4/36/ea/0e/36ea0ec9-c398-bd3a-af1b-33b8e09b0db4/source/100x100bb.jpg", "collectionPrice":6.21, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":9, "copyright":"℗ 2018 41 Mob", "country":"USA", "currency":"USD", "releaseDate":"2018-09-20T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1521729674, "collectionId":1538532761, "artistName":"Pianella Piano", "collectionName":"Piano Tribute to Blackpink, Vol. 1", "collectionCensoredName":"Piano Tribute to Blackpink, Vol. 1", "artistViewUrl":"https://music.apple.com/us/artist/pianella-piano/1521729674?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/piano-tribute-to-blackpink-vol-1/1538532761?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/28/50/ea/2850eaa2-5170-d0c4-a917-5b968af8549a/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music124/v4/28/50/ea/2850eaa2-5170-d0c4-a917-5b968af8549a/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":16, "copyright":"℗ 2020 Pianella Piano", "country":"USA", "currency":"USD", "releaseDate":"2020-11-03T08:00:00Z", "primaryGenreName":"K-Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":320714476, "collectionId":320714466, "amgArtistId":1164901, "artistName":"The Big Pink Black", "collectionName":"The Big Pink Black", "collectionCensoredName":"The Big Pink Black", "artistViewUrl":"https://music.apple.com/us/artist/the-big-pink-black/320714476?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/the-big-pink-black/320714466?uo=4", "artworkUrl60":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/40/5a/71/405a7176-6a6e-7905-a20a-551f35b0067c/source/60x60bb.jpg", "artworkUrl100":"https://is4-ssl.mzstatic.com/image/thumb/Music/v4/40/5a/71/405a7176-6a6e-7905-a20a-551f35b0067c/source/100x100bb.jpg", "collectionPrice":8.91, "collectionExplicitness":"notExplicit", "trackCount":9, "copyright":"℗ 2009 The Big Pink Black", "country":"USA", "currency":"USD", "releaseDate":"2009-06-15T07:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":19810758, "collectionId":1037558837, "amgArtistId":2120823, "artistName":"Les Black's Amazing Pink Holes", "collectionName":"Breakfast With the Holes", "collectionCensoredName":"Breakfast With the Holes", "artistViewUrl":"https://music.apple.com/us/artist/les-blacks-amazing-pink-holes/19810758?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/breakfast-with-the-holes/1037558837?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music5/v4/cb/5e/97/cb5e9702-776a-b6c4-5e83-d8f99915eae0/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music5/v4/cb/5e/97/cb5e9702-776a-b6c4-5e83-d8f99915eae0/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":18, "copyright":"℗ 2008 Smog Veil Records", "country":"USA", "currency":"USD", "releaseDate":"2008-07-31T07:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":368236250, "collectionId":1087165594, "amgArtistId":2092643, "artistName":"Tex Smith", "collectionName":"Pink and Black", "collectionCensoredName":"Pink and Black", "artistViewUrl":"https://music.apple.com/us/artist/tex-smith/368236250?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-and-black/1087165594?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/ee/e6/57eee68a-5500-e3d0-b0f6-f2920de9c322/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music69/v4/57/ee/e6/57eee68a-5500-e3d0-b0f6-f2920de9c322/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":13, "copyright":"℗ 2015 Tex Smith", "country":"USA", "currency":"USD", "releaseDate":"2015-12-11T08:00:00Z", "primaryGenreName":"Country"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1083661855, "collectionId":1484425793, "artistName":"AKAI SOLO & Pink Siifu", "collectionName":"Black Sand", "collectionCensoredName":"Black Sand", "artistViewUrl":"https://music.apple.com/us/artist/akai-solo/1083661855?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-sand/1484425793?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music114/v4/5c/f0/35/5cf03578-66a4-edb5-6a3d-9e2c7e51d707/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music114/v4/5c/f0/35/5cf03578-66a4-edb5-6a3d-9e2c7e51d707/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":15, "copyright":"℗ 2019 Field-Left", "country":"USA", "currency":"USD", "releaseDate":"2019-10-29T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1569909010, "collectionId":1569916263, "artistName":"RDQO BEATS", "collectionName":"Black Pink - Single", "collectionCensoredName":"Black Pink - Single", "artistViewUrl":"https://music.apple.com/us/artist/rdqo-beats/1569909010?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-pink-single/1569916263?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/31/d0/86/31d086d0-35c2-3fef-5170-664f5d2249ff/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music125/v4/31/d0/86/31d086d0-35c2-3fef-5170-664f5d2249ff/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2021 3075302 Records DK", "country":"USA", "currency":"USD", "releaseDate":"2021-05-27T07:00:00Z", "primaryGenreName":"Hip-Hop/Rap"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1204917424, "collectionId":1358440377, "artistName":"BlackPink", "collectionName":"Peep Show - EP", "collectionCensoredName":"Peep Show - EP", "artistViewUrl":"https://music.apple.com/us/artist/blackpink/1204917424?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/peep-show-ep/1358440377?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music128/v4/d6/91/77/d691770d-270b-e2fa-ce34-ad318234e22f/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music128/v4/d6/91/77/d691770d-270b-e2fa-ce34-ad318234e22f/source/100x100bb.jpg", "collectionPrice":4.95, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":5, "copyright":"℗ 2018 Black Pink", "country":"USA", "currency":"USD", "releaseDate":"2018-03-08T08:00:00Z", "primaryGenreName":"Alternative"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1445708481, "collectionId":1457441806, "artistName":"Gavin", "collectionName":"Pink and Black", "collectionCensoredName":"Pink and Black", "artistViewUrl":"https://music.apple.com/us/artist/gavin/1445708481?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-and-black/1457441806?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/96/1c/68/961c688f-216c-af37-fd34-7700fe7ac808/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music113/v4/96/1c/68/961c688f-216c-af37-fd34-7700fe7ac808/source/100x100bb.jpg", "collectionPrice":7.53, "collectionExplicitness":"notExplicit", "trackCount":7, "copyright":"℗ 2019 BOVEE's PRODUCE DEPT.", "country":"USA", "currency":"USD", "releaseDate":"2019-03-28T07:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1413635617, "collectionId":1442944804, "artistName":"Latindian Style", "collectionName":"Black Pink - Single", "collectionCensoredName":"Black Pink - Single", "artistViewUrl":"https://music.apple.com/us/artist/latindian-style/1413635617?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-pink-single/1442944804?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music128/v4/5d/39/24/5d39240c-064e-feda-942d-dc3b46582d68/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music128/v4/5d/39/24/5d39240c-064e-feda-942d-dc3b46582d68/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 Hinjew Records", "country":"USA", "currency":"USD", "releaseDate":"2018-07-29T07:00:00Z", "primaryGenreName":"Techno"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1499787910, "collectionId":1553000005, "artistName":"firstclasslikealways", "collectionName":"Black Pink - Single", "collectionCensoredName":"Black Pink - Single", "artistViewUrl":"https://music.apple.com/us/artist/firstclasslikealways/1499787910?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-pink-single/1553000005?uo=4", "artworkUrl60":"https://is3-ssl.mzstatic.com/image/thumb/Music124/v4/2e/de/87/2ede8757-1d9d-f9ce-1cca-4e8c853d45e4/source/60x60bb.jpg", "artworkUrl100":"https://is3-ssl.mzstatic.com/image/thumb/Music124/v4/2e/de/87/2ede8757-1d9d-f9ce-1cca-4e8c853d45e4/source/100x100bb.jpg", "collectionPrice":0.99, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2021 1604518 Records DK", "country":"USA", "currency":"USD", "releaseDate":"2021-02-08T08:00:00Z", "primaryGenreName":"Pop"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1472450899, "collectionId":1472865026, "artistName":"Jesus the Snake", "collectionName":"Black Acid, Pink Rain", "collectionCensoredName":"Black Acid, Pink Rain", "artistViewUrl":"https://music.apple.com/us/artist/jesus-the-snake/1472450899?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-acid-pink-rain/1472865026?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music113/v4/f3/c4/99/f3c4996b-c0ae-90a2-0bcd-64a59784ca6f/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music113/v4/f3/c4/99/f3c4996b-c0ae-90a2-0bcd-64a59784ca6f/source/100x100bb.jpg", "collectionPrice":9.99, "collectionExplicitness":"notExplicit", "trackCount":5, "copyright":"℗ 2019 1363643 Records DK", "country":"USA", "currency":"USD", "releaseDate":"2019-07-11T07:00:00Z", "primaryGenreName":"Alternative"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":1458647578, "collectionId":500609353, "artistName":"Black Earth", "collectionName":"Pink Champagne", "collectionCensoredName":"Pink Champagne", "artistViewUrl":"https://music.apple.com/us/artist/black-earth/1458647578?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-champagne/500609353?uo=4", "artworkUrl60":"https://is1-ssl.mzstatic.com/image/thumb/Music/v4/f3/c7/66/f3c766b1-7ac7-8f1e-9d53-cdfbdcd565a4/source/60x60bb.jpg", "artworkUrl100":"https://is1-ssl.mzstatic.com/image/thumb/Music/v4/f3/c7/66/f3c766b1-7ac7-8f1e-9d53-cdfbdcd565a4/source/100x100bb.jpg", "collectionPrice":9.90, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":10, "copyright":"℗ 2012 Purple Kush", "country":"USA", "currency":"USD", "releaseDate":"2012-01-03T08:00:00Z", "primaryGenreName":"Rock"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":964320885, "collectionId":964320884, "artistName":"Lindy Vision", "collectionName":"Pink + Black - EP", "collectionCensoredName":"Pink + Black - EP", "artistViewUrl":"https://music.apple.com/us/artist/lindy-vision/964320885?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/pink-black-ep/964320884?uo=4", "artworkUrl60":"https://is2-ssl.mzstatic.com/image/thumb/Music5/v4/6a/c5/5a/6ac55ade-2bd0-0f22-deae-ff468ca2419a/source/60x60bb.jpg", "artworkUrl100":"https://is2-ssl.mzstatic.com/image/thumb/Music5/v4/6a/c5/5a/6ac55ade-2bd0-0f22-deae-ff468ca2419a/source/100x100bb.jpg", "collectionPrice":4.95, "collectionExplicitness":"explicit", "contentAdvisoryRating":"Explicit", "trackCount":5, "copyright":"℗ 2014 Lindy Vision", "country":"USA", "currency":"USD", "releaseDate":"2014-07-18T07:00:00Z", "primaryGenreName":"Electronic"},
{"wrapperType":"collection", "collectionType":"Album", "artistId":47793786, "collectionId":1398956234, "amgArtistId":685284, "artistName":"The Pink Spiders", "collectionName":"Black Dagger - Single", "collectionCensoredName":"Black Dagger - Single", "artistViewUrl":"https://music.apple.com/us/artist/the-pink-spiders/47793786?uo=4", "collectionViewUrl":"https://music.apple.com/us/album/black-dagger-single/1398956234?uo=4", "artworkUrl60":"https://is5-ssl.mzstatic.com/image/thumb/Music115/v4/05/b0/24/05b0243f-b852-8ed8-8f75-3a6edd2105f3/source/60x60bb.jpg", "artworkUrl100":"https://is5-ssl.mzstatic.com/image/thumb/Music115/v4/05/b0/24/05b0243f-b852-8ed8-8f75-3a6edd2105f3/source/100x100bb.jpg", "collectionPrice":1.29, "collectionExplicitness":"notExplicit", "trackCount":1, "copyright":"℗ 2018 Mean Buzz Records", "country":"USA", "currency":"USD", "releaseDate":"2017-12-05T08:00:00Z", "primaryGenreName":"Rock"}]
}
//export default music_list;
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment