LoginSignup
4
0

More than 3 years have passed since last update.

テクノロジーとD2Cブランドの甘い関係 (導入)

Last updated at Posted at 2019-12-12

この記事は、JSL (日本システム技研) Advent Calendar 2019 - Qiita の12日目の記事です

やったこと

インターネットサービスを軸にしている企業は有名なリポジトリが多くあります。
小売業の新たな潮流を担っているD2Cブランドたちは、テクノロジー※をどう捉えているか、どのようにテクノロジーを社会に届けているのか、と思い調査してみました。

※ ここでのテクノロジーとはWEBに関するものとします。

D2Cブランドとは

もともとは「Direct to Consumer」の略。
Direct to Consumer (D2C) とはその名前の通り、自ら企画、製造した商品をどこの店舗にも介すことなく販売する、小売業の新しいビジネスモデルのこと。

ただ定義はアップデートされており、『ユニークな商品・顧客体験のある、データとテクノロジーを活用したライフスタイルブランド』(Digitally Native Vertical Brand(DNVB))をD2Cブランドと呼んだりするようです。

新しい小売業のブランド、と思っていただければと。
興味があるかたは以下をご参考になさってください。

DNVB / Future of Retailへ(D2Cの過去・現在・未来) | Takram Cast
100社を超える米国D2C Brands Listを公開:D2C Brands.com vol.03|D2C Brands.com|note

調査対象

Githubリポジトリのデータを対象に調査したいと思います。

D2Cブランド

ブランド名 商材 オフィシャルサイト Githubリポジトリ
Glossier 化粧品 http://www.glossier.com https://github.com/glossier
Bonobos 衣料品 https://bonobos.com https://github.com/bonobos
Warby Parker メガネ https://www.warbyparker.com https://github.com/WarbyParker
Everlane 衣料品 https://www.everlane.com https://github.com/Everlane
Away スーツケース https://www.awaytravel.com https://github.com/Away-Travel
Casper マットレス https://www.casper.com https://github.com/CasperSleep
THIRDLOVE 女性用下着 https://www.thirdlove.com/ https://github.com/mecommerce
FABRIC TOKYO 衣料品 https://corp.fabric-tokyo.com https://github.com/lifestyledesign

テック業界に愛されているAllBirdsにはリポジトリはなく、また、創業が新しいthearrivalsobjcts.ioなどもGithubリポジトリはありませんでした。

調査方法

まずはGithub REST API v3で見てみます。

import requests
import pandas as pd
import json

headers = {
    'Accept': 'application/json',
}
lst = ["glossier", "bonobos", "WarbyParker", "Everlane", "Away-Travel", "CasperSleep", "mecommerce","lifestyledesign"]
dict_array = []

for i in lst:
  url = f'https://api.github.com/orgs/{i}'
  response = requests.get(url,headers)
  data = response.json()
  dict_array.append(data)
some_df = pd.DataFrame([], columns=data.keys())
some_df = pd.concat([some_df, pd.DataFrame.from_dict(dict_array)])

一部ですが以下のような結果が見れます。

id public_gists
glossier 35
bonobos 27
WarbyParker 38
Everlane 38
Away-Travel 0
CasperSleep 51
mecommerce 5
lifestyledesign 2

すみません。力つきました。
後半に続く。

4
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
0