Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
340 changes: 340 additions & 0 deletions ehicks8MongoDB.ipynb
Original file line number Diff line number Diff line change
@@ -0,0 +1,340 @@
{
"cells": [
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"<pymongo.results.InsertOneResult at 0x7f5858528948>"
]
},
"execution_count": 8,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"import pprint\n",
"import re\n",
"import pymongo, json\n",
"\n",
"pp = pprint.PrettyPrinter(indent=1,width=65)\n",
"\n",
"client = pymongo.MongoClient (host=\"da1.eecs.utk.edu\")\n",
"db = client ['fdac19mp2']\n",
"coll = db ['ehicks8']\n",
"# for each dataset\n",
"# coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'NA', 'license': 'NA', 'description': 'NA', 'url': 'NA' } )\n",
"\n",
"\n",
"# Paladins related Images\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Champions', 'license': 'NA', 'description': 'Collect of Champion Images/Art/Assets from the game Paladins', 'url': ' https://app.box.com/s/qzi4jn7gu0upjspab78i6pn3fsw0vvrf' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Paladins Assets', 'license': 'NA', 'description': 'A collection of image and any other assets directly from Paladins & Hi-Rez stored here for easy access.', 'url': ' https://github.com/PaladinsDev/Assets' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Icons', 'license': 'MIT', 'description': 'Collect of Champion Images/Art/Assets from the game Paladins', 'url': 'https://github.com/EthanHicks1/PaladinsAssistantBot/tree/master/icons '} )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'PaladinsAssets', 'license': 'NA', 'description': 'A repository for Paladins Assets to use.', 'url': 'https://github.com/DevilXD/PaladinsAssets' } )\n",
"\n",
"# Pokemon related Images\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Complete Pokemon Image Dataset', 'license': 'CC BY-SA 4.0', 'description': 'This dataset consists of pictures for 928 Pokémon up to the 7th Generation.', 'url': 'https://www.kaggle.com/mrgravelord/complete-pokemon-image-dataset' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Pokemon Images Dataset', 'license': 'CC0: Public Domain', 'description': 'Dataset of 819 Pokemon images', 'url': 'https://www.kaggle.com/kvpratama/pokemon-images-dataset' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Pokemon Image Dataset', 'license': 'Attribution 4.0 International (CC BY 4.0)n', 'description': 'Pokemon Image Dataset', 'url': 'https://www.kaggle.com/vishalsubbiah/pokemon-images-and-types' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'One-Shot-Pokemon Images', 'license': 'CC0: Public Domain', 'description': 'Colorful and fun dataset for one shot learning problem, gotta recognize them all', 'url': 'https://www.kaggle.com/aaronyin/oneshotpokemon' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Pokemon Images', 'license': 'CC0: Public Domain', 'description': 'A collection of 801 pokemon images', 'url': 'https://www.kaggle.com/dollarakshay/pokemon-images' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Original 151 Pokemon Image Search Results', 'license': 'GPL 2', 'description': 'A collection of images of the original 151 Pokemon obtained through Bing search', 'url': 'https://www.kaggle.com/brkurzawa/original-150-pokemon-image-search-results' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': '6036 labeled pokemon pictures', 'license': 'NA', 'description': 'colored 100x100 images, with pokemon name and strength', 'url': 'https://www.kaggle.com/hannesrosenbusch/6036-labeled-pokemon-pictures' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Pokemon Generation One', 'license': 'GPL 2', 'description': 'The dataset contains 151 folders, one for each gen 1 pokemon and each folder contains 60 image for every pokemon. In all there are over 10,000+ images', 'url': 'https://www.kaggle.com/thedagger/pokemon-generation-one' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Pokemon Images augmented', 'license': 'NA', 'description': 'NA', 'url': 'https://www.kaggle.com/ankitesh97/pokemon-images' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Pokemon Picture', 'license': 'World Bank Dataset Terms of Use', 'description': 'Some pictures of Pokemon in 48*48 format', 'url': 'https://www.kaggle.com/sharpless/pokemon-picture' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Predict\\'em All', 'license': 'NA', 'description': 'Dataset consists of roughly 293,000 pokemon sightings (historical appearances of Pokemon), having coordinates, time, weather, population density, distance to pokestops/ gyms etc. as features.', 'url': 'https://www.kaggle.com/semioniy/predictemall' } )\n",
"\n",
"# Fortnite\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'fortnite_images', 'license': 'Data files © Original Authors', 'description': 'Images of gameplay of Fortnite', 'url': 'https://www.kaggle.com/kpriyanshu256/fortnite-images' } )\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Fortnite Skins', 'license': 'NA', 'description': 'You can find a list of all the Upcoming and Leaked Fortnite skins, pickaxes, gliders, back blings and emotes that’ll be coming to the game in the near future. This list will be updated when a cosmetic has been added to the game. All cosmetics have been datamined and are currently not available.', 'url': 'https://www.fortniteskin.com/all' } )\n",
"\n",
"# OverWatch\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Overwatch Heroes Recognition', 'license': 'CC0: Public Domain', 'description': 'Can you build a computer vision algorithm to predict which overwatch hero is?', 'url': 'https://www.kaggle.com/renanmav/overwatch-heroes-recognition' } )\n",
"\n",
"# PUBG\n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'pubg_images', 'license': 'NA', 'description': 'Images of gameplay of PUBG', 'url': 'https://www.kaggle.com/kpriyanshu256/pubg-images' } )\n",
"\n",
"# Minecraft \n",
"coll.insert_one ( { 'topic':'Video Game Images/Assets', 'title': 'Minecraft skins', 'license': 'GPL 2', 'description': '7900 Minecraft player skins', 'url': 'https://www.kaggle.com/alxmamaev/minecraft-skins' } )\n"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"{'_id': ObjectId('5d88eec30fd668be052b2fa5'),\n",
" 'description': 'NA',\n",
" 'license': 'NA',\n",
" 'title': 'NA',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'NA'}\n",
"{'_id': ObjectId('5d88eec30fd668be052b2fa6'),\n",
" 'description': 'Collect of Champion Images/Art/Assets from the '\n",
" 'game Paladins',\n",
" 'license': 'NA',\n",
" 'title': 'Champions',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': ' '\n",
" 'https://app.box.com/s/qzi4jn7gu0upjspab78i6pn3fsw0vvrf'}\n",
"{'_id': ObjectId('5d88eec30fd668be052b2fa7'),\n",
" 'description': 'A collection of image and any other assets '\n",
" 'directly from Paladins & Hi-Rez stored here '\n",
" 'for easy access.',\n",
" 'license': 'NA',\n",
" 'title': 'Paladins Assets',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': ' https://github.com/PaladinsDev/Assets'}\n",
"{'_id': ObjectId('5d88eec30fd668be052b2fa8'),\n",
" 'description': 'Collect of Champion Images/Art/Assets from the '\n",
" 'game Paladins',\n",
" 'license': 'MIT',\n",
" 'title': 'Icons',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://github.com/EthanHicks1/PaladinsAssistantBot/tree/master/icons '}\n",
"{'_id': ObjectId('5d88eec30fd668be052b2fa9'),\n",
" 'description': 'A repository for Paladins Assets to use.',\n",
" 'license': 'NA',\n",
" 'title': 'PaladinsAssets',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://github.com/DevilXD/PaladinsAssets'}\n",
"{'_id': ObjectId('5d88f0540fd668be052b2fad'),\n",
" 'description': 'NA',\n",
" 'license': 'NA',\n",
" 'title': 'NA',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'NA'}\n",
"{'_id': ObjectId('5d88f0540fd668be052b2fae'),\n",
" 'description': 'Collect of Champion Images/Art/Assets from the '\n",
" 'game Paladins',\n",
" 'license': 'NA',\n",
" 'title': 'Champions',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': ' '\n",
" 'https://app.box.com/s/qzi4jn7gu0upjspab78i6pn3fsw0vvrf'}\n",
"{'_id': ObjectId('5d88f0540fd668be052b2faf'),\n",
" 'description': 'A collection of image and any other assets '\n",
" 'directly from Paladins & Hi-Rez stored here '\n",
" 'for easy access.',\n",
" 'license': 'NA',\n",
" 'title': 'Paladins Assets',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': ' https://github.com/PaladinsDev/Assets'}\n",
"{'_id': ObjectId('5d88f0540fd668be052b2fb0'),\n",
" 'description': 'Collect of Champion Images/Art/Assets from the '\n",
" 'game Paladins',\n",
" 'license': 'MIT',\n",
" 'title': 'Icons',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://github.com/EthanHicks1/PaladinsAssistantBot/tree/master/icons '}\n",
"{'_id': ObjectId('5d88f0540fd668be052b2fb1'),\n",
" 'description': 'A repository for Paladins Assets to use.',\n",
" 'license': 'NA',\n",
" 'title': 'PaladinsAssets',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://github.com/DevilXD/PaladinsAssets'}\n",
"{'_id': ObjectId('5d88f0540fd668be052b2fb2'),\n",
" 'description': 'This dataset consists of pictures for 928 '\n",
" 'Pokémon up to the 7th Generation.',\n",
" 'license': 'CC BY-SA 4.0',\n",
" 'title': 'Complete Pokemon Image Dataset',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/mrgravelord/complete-pokemon-image-dataset'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fb4'),\n",
" 'description': 'Collect of Champion Images/Art/Assets from the '\n",
" 'game Paladins',\n",
" 'license': 'NA',\n",
" 'title': 'Champions',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': ' '\n",
" 'https://app.box.com/s/qzi4jn7gu0upjspab78i6pn3fsw0vvrf'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fb5'),\n",
" 'description': 'A collection of image and any other assets '\n",
" 'directly from Paladins & Hi-Rez stored here '\n",
" 'for easy access.',\n",
" 'license': 'NA',\n",
" 'title': 'Paladins Assets',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': ' https://github.com/PaladinsDev/Assets'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fb6'),\n",
" 'description': 'Collect of Champion Images/Art/Assets from the '\n",
" 'game Paladins',\n",
" 'license': 'MIT',\n",
" 'title': 'Icons',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://github.com/EthanHicks1/PaladinsAssistantBot/tree/master/icons '}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fb7'),\n",
" 'description': 'A repository for Paladins Assets to use.',\n",
" 'license': 'NA',\n",
" 'title': 'PaladinsAssets',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://github.com/DevilXD/PaladinsAssets'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fb8'),\n",
" 'description': 'This dataset consists of pictures for 928 '\n",
" 'Pokémon up to the 7th Generation.',\n",
" 'license': 'CC BY-SA 4.0',\n",
" 'title': 'Complete Pokemon Image Dataset',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/mrgravelord/complete-pokemon-image-dataset'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fb9'),\n",
" 'description': 'Dataset of 819 Pokemon images',\n",
" 'license': 'CC0: Public Domain',\n",
" 'title': 'Pokemon Images Dataset',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/kvpratama/pokemon-images-dataset'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fba'),\n",
" 'description': 'Pokemon Image Dataset',\n",
" 'license': 'Attribution 4.0 International (CC BY 4.0)n',\n",
" 'title': 'Pokemon Image Dataset',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/vishalsubbiah/pokemon-images-and-types'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fbb'),\n",
" 'description': 'Colorful and fun dataset for one shot learning '\n",
" 'problem, gotta recognize them all',\n",
" 'license': 'CC0: Public Domain',\n",
" 'title': 'One-Shot-Pokemon Images',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/aaronyin/oneshotpokemon'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fbc'),\n",
" 'description': 'A collection of 801 pokemon images',\n",
" 'license': 'CC0: Public Domain',\n",
" 'title': 'Pokemon Images',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/dollarakshay/pokemon-images'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fbd'),\n",
" 'description': 'A collection of images of the original 151 '\n",
" 'Pokemon obtained through Bing search',\n",
" 'license': 'GPL 2',\n",
" 'title': 'Original 151 Pokemon Image Search Results',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/brkurzawa/original-150-pokemon-image-search-results'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fbe'),\n",
" 'description': 'colored 100x100 images, with pokemon name and '\n",
" 'strength',\n",
" 'license': 'NA',\n",
" 'title': '6036 labeled pokemon pictures',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/hannesrosenbusch/6036-labeled-pokemon-pictures'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fbf'),\n",
" 'description': 'The dataset contains 151 folders, one for each '\n",
" 'gen 1 pokemon and each folder contains 60 '\n",
" 'image for every pokemon. In all there are over '\n",
" '10,000+ images',\n",
" 'license': 'GPL 2',\n",
" 'title': 'Pokemon Generation One',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/thedagger/pokemon-generation-one'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc0'),\n",
" 'description': 'NA',\n",
" 'license': 'NA',\n",
" 'title': 'Pokemon Images augmented',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/ankitesh97/pokemon-images'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc1'),\n",
" 'description': 'Some pictures of Pokemon in 48*48 format',\n",
" 'license': 'World Bank Dataset Terms of Use',\n",
" 'title': 'Pokemon Picture',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/sharpless/pokemon-picture'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc2'),\n",
" 'description': 'Dataset consists of roughly 293,000 pokemon '\n",
" 'sightings (historical appearances of Pokemon), '\n",
" 'having coordinates, time, weather, population '\n",
" 'density, distance to pokestops/ gyms etc. as '\n",
" 'features.',\n",
" 'license': 'NA',\n",
" 'title': \"Predict'em All\",\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/semioniy/predictemall'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc3'),\n",
" 'description': 'Images of gameplay of Fortnite',\n",
" 'license': 'Data files © Original Authors',\n",
" 'title': 'fortnite_images',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/kpriyanshu256/fortnite-images'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc4'),\n",
" 'description': 'You can find a list of all the Upcoming and '\n",
" 'Leaked Fortnite skins, pickaxes, gliders, back '\n",
" 'blings and emotes that’ll be coming to the '\n",
" 'game in the near future. This list will be '\n",
" 'updated when a cosmetic has been added to the '\n",
" 'game. All cosmetics have been datamined and '\n",
" 'are currently not available.',\n",
" 'license': 'NA',\n",
" 'title': 'Fortnite Skins',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.fortniteskin.com/all'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc5'),\n",
" 'description': 'Can you build a computer vision algorithm to '\n",
" 'predict which overwatch hero is?',\n",
" 'license': 'CC0: Public Domain',\n",
" 'title': 'Overwatch Heroes Recognition',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/renanmav/overwatch-heroes-recognition'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc6'),\n",
" 'description': 'Images of gameplay of PUBG',\n",
" 'license': 'NA',\n",
" 'title': 'pubg_images',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/kpriyanshu256/pubg-images'}\n",
"{'_id': ObjectId('5d88ff570fd668be052b2fc7'),\n",
" 'description': '7900 Minecraft player skins',\n",
" 'license': 'GPL 2',\n",
" 'title': 'Minecraft skins',\n",
" 'topic': 'Video Game Images/Assets',\n",
" 'url': 'https://www.kaggle.com/alxmamaev/minecraft-skins'}\n"
]
}
],
"source": [
"import pprint\n",
"import pymongo, json\n",
"client = pymongo.MongoClient (host=\"da1.eecs.utk.edu\")\n",
"db = client ['fdac19mp2']\n",
"coll = db ['ehicks8']\n",
"pp = pprint.PrettyPrinter(indent=1,width=65)\n",
"for r in coll. find():\n",
" print(pp .pformat (r)) "
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"collapsed": true
},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Python 3",
"language": "python",
"name": "python3"
},
"language_info": {
"codemirror_mode": {
"name": "ipython",
"version": 3
},
"file_extension": ".py",
"mimetype": "text/x-python",
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.6.7"
}
},
"nbformat": 4,
"nbformat_minor": 1
}