├── .gitignore ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── WORKSPACE ├── google └── protobuf │ ├── BUILD │ └── any.proto ├── hypebot ├── BUILD ├── basebot.py ├── commands │ ├── bash_commands.py │ ├── bash_commands_test.py │ ├── bling_commands.py │ ├── coffee_commands.py │ ├── coffee_commands_test.py │ ├── command_factory.py │ ├── command_lib.py │ ├── deploy_commands.py │ ├── hypecoin_commands.py │ ├── hypestack_commands.py │ ├── hypetest.py │ ├── interface_commands.py │ ├── inventory_commands.py │ ├── league │ │ ├── lcs_commands.py │ │ ├── lol_commands.py │ │ ├── summoner_commands.py │ │ └── trivia_commands.py │ ├── minigame_commands.py │ ├── preference_commands.py │ ├── public_commands.py │ ├── remote_commands.py │ └── simple_commands.py ├── core │ ├── activity_tracker.py │ ├── async_lib.py │ ├── cache_lib.py │ ├── factory_lib.py │ ├── inflect_lib.py │ ├── name_complete_lib.py │ ├── params_lib.py │ ├── schedule_lib.py │ ├── util_lib.py │ ├── util_lib_test.py │ └── zombie_lib.py ├── data │ ├── coffee_badges.textproto │ ├── league │ │ ├── client_vars.py │ │ ├── messages.py │ │ └── nicknames.py │ └── messages.py ├── hype_types.py ├── hypecore.py ├── interfaces │ ├── capture_interface.py │ ├── discord_interface.py │ ├── interface_factory.py │ ├── interface_lib.py │ └── terminal_interface.py ├── lolbot.py ├── news │ ├── news_factory.py │ ├── news_lib.py │ └── nytimes_news.py ├── plugins │ ├── alias_lib.py │ ├── coffee_lib.py │ ├── coin_lib.py │ ├── deploy_lib.py │ ├── hypejack_lib.py │ ├── hypestack_lib.py │ ├── inventory_lib.py │ ├── league │ │ ├── esports_lib.py │ │ ├── game_lib.py │ │ ├── items_lib.py │ │ ├── rito_lib.py │ │ ├── summoner_lib.py │ │ └── trivia_lib.py │ ├── playing_cards_lib.py │ ├── population_lib.py │ ├── vegas_game_lib.py │ └── weather_lib.py ├── protos │ ├── BUILD │ ├── bank.proto │ ├── bet.proto │ ├── channel.proto │ ├── coffee.proto │ ├── esports.proto │ ├── message.proto │ ├── riot │ │ ├── BUILD │ │ ├── platform.proto │ │ ├── v3 │ │ │ ├── BUILD │ │ │ └── static_data.proto │ │ └── v4 │ │ │ ├── BUILD │ │ │ ├── champion_mastery.proto │ │ │ ├── constants.proto │ │ │ ├── league.proto │ │ │ ├── match.proto │ │ │ └── summoner.proto │ ├── stock.proto │ ├── tournament │ │ └── tournament.proto │ ├── user.proto │ └── weather.proto ├── proxies │ ├── empty_proxy.py │ ├── proxy_factory.py │ ├── proxy_lib.py │ └── requests_proxy.py ├── requirements.txt ├── stocks │ ├── iex_stock.py │ ├── stock_factory.py │ └── stock_lib.py └── storage │ ├── memstore_lib.py │ ├── redis_lib.py │ ├── storage_factory.py │ ├── storage_lib.py │ └── storage_lib_test.py ├── riot ├── BUILD └── riot_api_server.py └── third_party ├── mock.BUILD └── six.BUILD /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/README.md -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/WORKSPACE -------------------------------------------------------------------------------- /google/protobuf/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/google/protobuf/BUILD -------------------------------------------------------------------------------- /google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/google/protobuf/any.proto -------------------------------------------------------------------------------- /hypebot/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/BUILD -------------------------------------------------------------------------------- /hypebot/basebot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/basebot.py -------------------------------------------------------------------------------- /hypebot/commands/bash_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/bash_commands.py -------------------------------------------------------------------------------- /hypebot/commands/bash_commands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/bash_commands_test.py -------------------------------------------------------------------------------- /hypebot/commands/bling_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/bling_commands.py -------------------------------------------------------------------------------- /hypebot/commands/coffee_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/coffee_commands.py -------------------------------------------------------------------------------- /hypebot/commands/coffee_commands_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/coffee_commands_test.py -------------------------------------------------------------------------------- /hypebot/commands/command_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/command_factory.py -------------------------------------------------------------------------------- /hypebot/commands/command_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/command_lib.py -------------------------------------------------------------------------------- /hypebot/commands/deploy_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/deploy_commands.py -------------------------------------------------------------------------------- /hypebot/commands/hypecoin_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/hypecoin_commands.py -------------------------------------------------------------------------------- /hypebot/commands/hypestack_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/hypestack_commands.py -------------------------------------------------------------------------------- /hypebot/commands/hypetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/hypetest.py -------------------------------------------------------------------------------- /hypebot/commands/interface_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/interface_commands.py -------------------------------------------------------------------------------- /hypebot/commands/inventory_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/inventory_commands.py -------------------------------------------------------------------------------- /hypebot/commands/league/lcs_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/league/lcs_commands.py -------------------------------------------------------------------------------- /hypebot/commands/league/lol_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/league/lol_commands.py -------------------------------------------------------------------------------- /hypebot/commands/league/summoner_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/league/summoner_commands.py -------------------------------------------------------------------------------- /hypebot/commands/league/trivia_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/league/trivia_commands.py -------------------------------------------------------------------------------- /hypebot/commands/minigame_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/minigame_commands.py -------------------------------------------------------------------------------- /hypebot/commands/preference_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/preference_commands.py -------------------------------------------------------------------------------- /hypebot/commands/public_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/public_commands.py -------------------------------------------------------------------------------- /hypebot/commands/remote_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/remote_commands.py -------------------------------------------------------------------------------- /hypebot/commands/simple_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/commands/simple_commands.py -------------------------------------------------------------------------------- /hypebot/core/activity_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/activity_tracker.py -------------------------------------------------------------------------------- /hypebot/core/async_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/async_lib.py -------------------------------------------------------------------------------- /hypebot/core/cache_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/cache_lib.py -------------------------------------------------------------------------------- /hypebot/core/factory_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/factory_lib.py -------------------------------------------------------------------------------- /hypebot/core/inflect_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/inflect_lib.py -------------------------------------------------------------------------------- /hypebot/core/name_complete_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/name_complete_lib.py -------------------------------------------------------------------------------- /hypebot/core/params_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/params_lib.py -------------------------------------------------------------------------------- /hypebot/core/schedule_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/schedule_lib.py -------------------------------------------------------------------------------- /hypebot/core/util_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/util_lib.py -------------------------------------------------------------------------------- /hypebot/core/util_lib_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/util_lib_test.py -------------------------------------------------------------------------------- /hypebot/core/zombie_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/core/zombie_lib.py -------------------------------------------------------------------------------- /hypebot/data/coffee_badges.textproto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/data/coffee_badges.textproto -------------------------------------------------------------------------------- /hypebot/data/league/client_vars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/data/league/client_vars.py -------------------------------------------------------------------------------- /hypebot/data/league/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/data/league/messages.py -------------------------------------------------------------------------------- /hypebot/data/league/nicknames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/data/league/nicknames.py -------------------------------------------------------------------------------- /hypebot/data/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/data/messages.py -------------------------------------------------------------------------------- /hypebot/hype_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/hype_types.py -------------------------------------------------------------------------------- /hypebot/hypecore.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/hypecore.py -------------------------------------------------------------------------------- /hypebot/interfaces/capture_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/interfaces/capture_interface.py -------------------------------------------------------------------------------- /hypebot/interfaces/discord_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/interfaces/discord_interface.py -------------------------------------------------------------------------------- /hypebot/interfaces/interface_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/interfaces/interface_factory.py -------------------------------------------------------------------------------- /hypebot/interfaces/interface_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/interfaces/interface_lib.py -------------------------------------------------------------------------------- /hypebot/interfaces/terminal_interface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/interfaces/terminal_interface.py -------------------------------------------------------------------------------- /hypebot/lolbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/lolbot.py -------------------------------------------------------------------------------- /hypebot/news/news_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/news/news_factory.py -------------------------------------------------------------------------------- /hypebot/news/news_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/news/news_lib.py -------------------------------------------------------------------------------- /hypebot/news/nytimes_news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/news/nytimes_news.py -------------------------------------------------------------------------------- /hypebot/plugins/alias_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/alias_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/coffee_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/coffee_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/coin_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/coin_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/deploy_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/deploy_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/hypejack_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/hypejack_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/hypestack_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/hypestack_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/inventory_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/inventory_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/league/esports_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/league/esports_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/league/game_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/league/game_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/league/items_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/league/items_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/league/rito_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/league/rito_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/league/summoner_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/league/summoner_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/league/trivia_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/league/trivia_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/playing_cards_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/playing_cards_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/population_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/population_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/vegas_game_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/vegas_game_lib.py -------------------------------------------------------------------------------- /hypebot/plugins/weather_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/plugins/weather_lib.py -------------------------------------------------------------------------------- /hypebot/protos/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/BUILD -------------------------------------------------------------------------------- /hypebot/protos/bank.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/bank.proto -------------------------------------------------------------------------------- /hypebot/protos/bet.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/bet.proto -------------------------------------------------------------------------------- /hypebot/protos/channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/channel.proto -------------------------------------------------------------------------------- /hypebot/protos/coffee.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/coffee.proto -------------------------------------------------------------------------------- /hypebot/protos/esports.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/esports.proto -------------------------------------------------------------------------------- /hypebot/protos/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/message.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/BUILD -------------------------------------------------------------------------------- /hypebot/protos/riot/platform.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/platform.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/v3/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v3/BUILD -------------------------------------------------------------------------------- /hypebot/protos/riot/v3/static_data.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v3/static_data.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/v4/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v4/BUILD -------------------------------------------------------------------------------- /hypebot/protos/riot/v4/champion_mastery.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v4/champion_mastery.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/v4/constants.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v4/constants.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/v4/league.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v4/league.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/v4/match.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v4/match.proto -------------------------------------------------------------------------------- /hypebot/protos/riot/v4/summoner.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/riot/v4/summoner.proto -------------------------------------------------------------------------------- /hypebot/protos/stock.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/stock.proto -------------------------------------------------------------------------------- /hypebot/protos/tournament/tournament.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/tournament/tournament.proto -------------------------------------------------------------------------------- /hypebot/protos/user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/user.proto -------------------------------------------------------------------------------- /hypebot/protos/weather.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/protos/weather.proto -------------------------------------------------------------------------------- /hypebot/proxies/empty_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/proxies/empty_proxy.py -------------------------------------------------------------------------------- /hypebot/proxies/proxy_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/proxies/proxy_factory.py -------------------------------------------------------------------------------- /hypebot/proxies/proxy_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/proxies/proxy_lib.py -------------------------------------------------------------------------------- /hypebot/proxies/requests_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/proxies/requests_proxy.py -------------------------------------------------------------------------------- /hypebot/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/requirements.txt -------------------------------------------------------------------------------- /hypebot/stocks/iex_stock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/stocks/iex_stock.py -------------------------------------------------------------------------------- /hypebot/stocks/stock_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/stocks/stock_factory.py -------------------------------------------------------------------------------- /hypebot/stocks/stock_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/stocks/stock_lib.py -------------------------------------------------------------------------------- /hypebot/storage/memstore_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/storage/memstore_lib.py -------------------------------------------------------------------------------- /hypebot/storage/redis_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/storage/redis_lib.py -------------------------------------------------------------------------------- /hypebot/storage/storage_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/storage/storage_factory.py -------------------------------------------------------------------------------- /hypebot/storage/storage_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/storage/storage_lib.py -------------------------------------------------------------------------------- /hypebot/storage/storage_lib_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/hypebot/storage/storage_lib_test.py -------------------------------------------------------------------------------- /riot/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/riot/BUILD -------------------------------------------------------------------------------- /riot/riot_api_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/riot/riot_api_server.py -------------------------------------------------------------------------------- /third_party/mock.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/third_party/mock.BUILD -------------------------------------------------------------------------------- /third_party/six.BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/hypebot/HEAD/third_party/six.BUILD --------------------------------------------------------------------------------