diff --git a/your-code/.ipynb_checkpoints/web_project-checkpoint.ipynb b/your-code/.ipynb_checkpoints/web_project-checkpoint.ipynb new file mode 100644 index 0000000..072a29b --- /dev/null +++ b/your-code/.ipynb_checkpoints/web_project-checkpoint.ipynb @@ -0,0 +1,1303 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Proyecto web (Semana 3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para este proyecto nos fue solicitado que realizaramos dos tareas:\n", + "1. Hacer uso de un API para generar un dataset.\n", + "2. Aplicar web scraping para generar un dataset.\n", + "\n", + "Estas dos tareas deben resultar en los siguientes archivos:\n", + "1. Un archivo \".csv\" en el cual tengamos el dataset generado via API.\n", + "2. Un archivo \".csv\" en el cual tengamos el dataset generado via API, aplicando labores de limpieza y manipulación.\n", + "3. Un archivo \".csv\" en el cual tengamos el dataset generado via web scraping.\n", + "4. Un archivo \".csv\" en el cual tengamos el dataset generado via web scraping, aplicando labores de limpieza y manipulación." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Ideas para el proyecto." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Considerando que los datos son la materia prima para proyectos de analitica, decidí utilizar el API de un gran sitio (Kaggle) que contiene datasets sobre diferentes temas, la gran mayoria de manera pública.\n", + "\n", + "En el caso del web scraping decidí tomar una página que contiene un gran número de modelos en 3D, y obtener información acerca de cada uno de ellos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# API " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lo primero que realice para el uso del API, fue instalar un wrapper que ofrece el API de Kaggle." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "#import sys\n", + "#!{sys.executable} -m pip install mdutils kaggle " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Continue con una celda para realizar todos los imports que se vayan requiriendo a lo largo del proyecto." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "import requests\n", + "from kaggle.api.kaggle_api_extended import KaggleApi\n", + "import time\n", + "import pandas as pd\n", + "import json\n", + "import operator\n", + "from bs4 import BeautifulSoup\n", + "import re" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "El wrapper del API de Kaggle realiza la autentificación con los siguientes comandos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "api = KaggleApi({\"username\":\"\",\"key\":\"\"})\n", + "api.authenticate()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En este momento estamos autorizados para utilizar el API a partir de todos los métodos que provee el wrapper. En teoría el API de kaggle es más fácil de usar desde un shell, y su documentación (https://github.com/Kaggle/kaggle-api) esta redactada para su uso en shell. Pero es completamente factible traducir todos sus comandos al metodo incluido en el wrapper. Algunos de los comandos disponibles se enlistan a continuación:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "| Comando | Parametros | Descripción |\n", + "|--------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n", + "| dataset_list() | sort_by: how to sort the result, see valid_dataset_sort_bys for options size: the size of the dataset, see valid_dataset_sizes for string options file_type: the format, see valid_dataset_file_types for string options license_name: string descriptor for license, see valid_dataset_license_names tag_ids: tag identifiers to filter the search search: a search term to use (default is empty string) user: username to filter the search to mine: boolean if True, group is changed to \"my\" to return personal page: the page to return (default is 1) | Comando para realizar búsqueda de datasets, los parámetros extra permiten ordenarlos, filtrar por tags, página que obtener, buscar datasets por usuario y otras caracteristicas. |\n", + "| dataset_view() | :param str owner_slug: Dataset owner (required) :param str dataset_slug: Dataset name (required) | Ver metadatos de un dataset. |\n", + "| dataset_metadata() | dataset: name dataset path: its obtain with the name of the dataset. | Ver metadatos de un dataset. |\n", + "| dataset_list_files() | dataset: the string identified of the dataset should be in format [owner]/[dataset-name] | Lista los archivos presentes en el dataset. |\n", + "| dataset_download_file() | dataset: the string identified of the dataset should be in format [owner]/[dataset-name] file_name: the dataset configuration file path: if defined, download to this location force: force the download if the file already exists (default False) quiet: suppress verbose output (default is True) | Descarga un archivo presente en un dataset. |\n", + "| dataset_download_files() | dataset: the string identified of the dataset should be in format [owner]/[dataset-name] path: the path to download the dataset to force: force the download if the file already exists (default False) quiet: suppress verbose output (default is True) unzip: if True, unzip files upon download (default is False) | Descacarga todos los archivos de un dataset. |\n", + "| download_file() | response: the response to download outfile: the output file to download to quiet: suppress verbose output (default is True) chunk_size: the size of the chunk to stream | También descarga un archivo. |" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Extraer data." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para mi proyecto me interesa obtener datasets que tengan relación palabras clave que yo seleccione, para esto construyo una lista con dichas palabras, en ella preferentemente hay que agregar palabras en inglés." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "intereses = ['currencies','currency','forex','finance','exchanges','tweets','news','fake news']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Continue realizando una búsqueda en la API con cada interes, decidí agregar una pausa entre cada solicitud a la API de un 1.5s." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "datasets_category = pd.DataFrame()\n", + "result_busqueda_list = []\n", + "categoria_list = []\n", + "\n", + "for interes in intereses:\n", + " time.sleep(1.5)\n", + " response = api.dataset_list(search=interes)\n", + " if len(response) != 0:\n", + " result_busqueda_list.extend(response)\n", + " categoria_list.extend(((interes+',')*len(response)).split(',')[:-1])\n", + " \n", + "datasets_category['Dataset'] = result_busqueda_list\n", + "datasets_category['Category'] = categoria_list" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "print('Se obtuvieron %i datasets en la busqueda sobre los interes seleccionados.' % len(datasets_category))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Revisamos si existen repeticiones en los resultados de busqueda." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "if len(set(datasets_category['Dataset'])) != len(datasets_category):\n", + " print('Existen datasets repetidos')\n", + "else:\n", + " print('No hay datasets repetidos')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para cada uno de los datasets encontrados en la búsqueda descargaremos sus metadatos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_datasets_list = []\n", + "for dataset in datasets_category['Dataset']:\n", + " time.sleep(1)\n", + " owner_name = str(dataset).split('/')[0]\n", + " name = str(dataset).split('/')[1]\n", + " metadata_datasets_list.append(api.datasets_view(owner_name,name))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_keys = ['id', 'ref', 'subtitle', 'tags', 'creatorName', 'creatorUrl',\n", + " 'totalBytes', 'url', 'lastUpdated', 'downloadCount', 'isPrivate',\n", + " 'isReviewed', 'isFeatured', 'licenseName', 'description', 'ownerName',\n", + " 'ownerRef', 'kernelCount', 'title', 'topicCount', 'viewCount', 'voteCount',\n", + " 'currentVersionNumber', 'files', 'versions', 'usabilityRating']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_df = pd.DataFrame(metadata_datasets_list)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Guardamos el dataset sin limpiar" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_df.to_csv('dataset_api.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Selección de columnas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Seleccioné las columnas que considero útiles." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "useful_key_metadata = ['title','subtitle','description','lastUpdated','ref','totalBytes','url','tags','downloadCount','licenseName',\n", + " 'kernelCount','versions','usabilityRating'] " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset = metadata_df[useful_key_metadata]\n", + "dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Identificando valores nulos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Buscamos datos que no sean un valor." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "missing_values = dataset.isna().sum()\n", + "missing_values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "No se encontraron valores nulos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Manipulación del dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Agregamos la columna de categoría de búsqueda con la que iniciamos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "dataset['category'] = categoria_list" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Columna total bytes." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Modificamos el valor base de la columna de \"Bytes\" a \"Mega bytes\" " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "byte_to_gb = lambda x: x/1000000\n", + "dataset[\"totalBytes\"] = dataset[\"totalBytes\"].apply(byte_to_gb)\n", + "dataset = dataset.rename(columns = {\"totalBytes\":\"totalGigaBytes\"})\n", + "dataset.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna Tags." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En la columna \"tags\" encontramos referencias a los grupos en los cuales se encuentra clasificado el dataset.\n", + "Esta columna varia de dataset a dataset. Sin embargo nos permite tener aún más grupos sobre los cuales realizar\n", + "busquedas con resultados que puedan ser de interes al usuario." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para esta columna realizaremos una extracción de todas las etiquetas y obtenemos la frecuencia de un set para evitar repeticiones,además de que presentaremos las tres más frecuentes al usuario de manera que este pueda usarlas en una búsqueda de intereses aún mayor." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "suggest_interest = [element['ref'] for tag in dataset['tags'] for element in tag]\n", + "set_suggest = set(suggest_interest)\n", + "dict_freq_suggest = {k:suggest_interest.count(k) for k in set_suggest}\n", + "sorted_tups = sorted(dict_freq_suggest.items(), key=operator.itemgetter(1))\n", + "print(sorted_tups[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Estas sugerencias se pueden interpretar como los hashtag que contiene el dataset, por tanto hay que ser cuidadosos al seleccionar nuevos intereses de la lista." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Así también tenemos valores vacios para la columna etiquetas, así que sustituiremos la columna tags\n", + "por \"number of tags\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "num_tags = lambda x: len(x)\n", + "dataset[\"tags\"] = dataset[\"tags\"].apply(num_tags)\n", + "dataset = dataset.rename(columns = {\"tags\":\"numberOfTags\"})\n", + "dataset.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna Versions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "La columna versions contiene al menos una versión para el dataset, sin embargo en caso de que tenga más solo sería\n", + "de nuestro interes la última versión y su fecha." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset[\"versions\"][0][0]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "last_version = lambda x: str(x[0]['status']) + ' version: ' + str(x[0]['versionNumber']) + ', ' + str(x[0]['creationDate'])\n", + "dataset[\"versions\"] = dataset[\"versions\"].apply(last_version)\n", + "dataset = dataset.rename(columns = {\"versions\":\"lastVersion\"})\n", + "dataset.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Análisis." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finalmente por ahora, podemos utilizar cada una de las columnas disponibles para realizar algunos filtros con los cuales obtener información interesante." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Mejor score de utilidad." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.sort_values(['usabilityRating'],ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Mayor tamaño" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.sort_values(['totalGigaBytes'],ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### El más utilizado." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.sort_values(['kernelCount'],ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Guardamos el dataset limpio." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.to_csv('dataset_api_clean.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Web scraping." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Algo que siempre me ha gustado son los modelos 3D, estos pueden ser útiles para empresas de videojuegos, para la industria de la animación y algunos otros sectores.\n", + "\n", + "La primera página que encontre con cientos de modelos de pago y gratuitos para descargar fue: https://www.turbosquid.com/\n", + "\n", + "Mi objetivo será hacer web scraping a su sitio y obtener información útil para cada uno de los modelos 3D diponibles." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Generé la clase que utilizaré para realizar el scraping tomando como base el trabajo en el lab de web scraping avanzado." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "class WebSpider:\n", + " \"\"\"\n", + " This is the constructor class to which you can pass a bunch of parameters. \n", + " These parameters are stored to the class instance variables so that the\n", + " class functions can access them later.\n", + " \n", + " url_pattern: the regex pattern of the web urls to scape\n", + " pages_to_scrape: how many pages to scrape\n", + " sleep_interval: the time interval in seconds to delay between requests. If <0, requests will not be delayed.\n", + " content_parser: a function reference that will extract the intended info from the scraped content.\n", + " \"\"\"\n", + " def __init__(self, url_pattern, pages_to_scrape=10, sleep_interval=-1, content_parser=None):\n", + " self.url_pattern = url_pattern\n", + " self.pages_to_scrape = pages_to_scrape\n", + " self.sleep_interval = sleep_interval\n", + " self.content_parser = content_parser\n", + " self.output = []\n", + " \"\"\"\n", + " Scrape the content of a single url.\n", + " \"\"\"\n", + " def scrape_url(self, url):\n", + " response = requests.get(url)\n", + " if str(response) != '':\n", + " print('Error en la respuesta del servidor',response)\n", + " elif str(response) == '':\n", + " print('Error en el limite de tiempo de respuesta del servidor')\n", + " elif str(response) == '':\n", + " print('Error demasiadas peticiones')\n", + " # I didn't find the SSL error but I add a 404 error catching.\n", + " elif str(response) == '':\n", + " print('No se encontro el contenido')\n", + " else:\n", + " result = self.content_parser(response.content)\n", + " self.output_results(result)\n", + " \n", + " \"\"\"\n", + " Export the scraped content. Right now it simply print out the results.\n", + " But in the future you can export the results into a text file or database.\n", + " \"\"\"\n", + " def output_results(self, r):\n", + " self.output.extend(r)\n", + " print('Se agregaron %i url a la lista' % (len(r)))\n", + " \"\"\"\n", + " After the class is instantiated, call this function to start the scraping jobs.\n", + " This function uses a FOR loop to call `scrape_url()` for each url to scrape.\n", + " \"\"\"\n", + " def kickstart(self):\n", + " for i in range(1, self.pages_to_scrape+1):\n", + " if self.sleep_interval > 0:\n", + " time.sleep(self.sleep_interval)\n", + " self.scrape_url(self.url_pattern % i)\n", + " else:\n", + " self.scrape_url(self.url_pattern % i)\n", + " return self.output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "La estructura del sítio resulto ser no tan mala, sin duda una más que utiliza los div de manera impulsiva pero encontramos el url del modelo en los \"div\" de clase \"thumbnail thumbnail-md\".\n", + "\n", + "La estructura para el paginado es la siguiente:\n", + "\n", + "\"https://www.turbosquid.com/Search/3D-Models?page_num=2&sort_column=a5&sort_order=asc\"\n", + "\n", + "Ya que he utilizado sus herramientas de filtrado para ordenar de menor a mayor costo, y tener los modelos gratuitos al inicio.\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Hacemos una prueba para la página 0\n", + "response = requests.get('https://www.turbosquid.com/Search/3D-Models?sort_column=a5&sort_order=asc')\n", + "print(response)\n", + "content = response.content\n", + "soup_prueba = BeautifulSoup(content,'html')\n", + "divs_modelos = soup_prueba.find_all('div',{'class':'thumbnail thumbnail-md'})\n", + "divs_modelos" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Para obtener el url del modelo necesitamos llegar a:\n", + "divs_modelos[0].select('a')[0]['href']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Aplicando esto a toda la página de prueba:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "urls_modelos = [div.select('a')[0]['href'] for div in divs_modelos]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print('Tenemos %i modelos por página' % len(urls_modelos))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print('Dentro de la página hay %i modelos' % (100*7668) )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Por lo tanto la función para el scraping de las url de los modelos queda de la siguiente forma:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def web_parser(content):\n", + " soup_prueba = BeautifulSoup(content,'html')\n", + " divs_modelos = soup_prueba.find_all('div',{'class':'thumbnail thumbnail-md'})\n", + " urls_modelos = [div.select('a')[0]['href'] for div in divs_modelos]\n", + " return urls_modelos" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# 3D models\n", + "# https://www.turbosquid.com/Search/3D-Models?sort_column=a5&sort_order=asc\n", + "URL_PATTERN = 'https://www.turbosquid.com/Search/3D-Models?page_num=%i&sort_column=a5&sort_order=asc' # regex pattern for the urls to scrape\n", + "PAGES_TO_SCRAPE = 10 # how many webpages to scrapge\n", + "SLEEP_INTERVAL = 1\n", + "\n", + "# Instantiate the IronhackSpider class\n", + "project_spider = WebSpider(URL_PATTERN,PAGES_TO_SCRAPE,SLEEP_INTERVAL, content_parser = web_parser)\n", + "\n", + "# Start scraping jobs\n", + "urls_modelos_pages = project_spider.kickstart()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Un siguiente paso es obtener información sobre cada uno de los modelos entrando a la url obtenida y realizar scraping de nuevo, en este caso nos interesa obtener la siguiente información:\n", + "\n", + "1. Nombre del modelo, div class productTitle\n", + "2. Dueño del modelo, div class productArtist\n", + "3. Precio del modelo, div class priceSection price\n", + "4. Licencia de uso, div class LicenseUses\n", + "5. Fecha de publicación\n", + "6. Formatos incluidos, tabla clase exchange\n", + "7. Categorias agregadas al modelo, accediendo al div class categorySection\n", + "8. Tags agragados al modelo, accediendo al div class tagSection\n", + "9. Descripción del modelo, accediendo al div class descriptionSection\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Definimos una nueva clase de Spider." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "class ModelsSpider:\n", + " \"\"\"\n", + " This is the constructor class to which you can pass a bunch of parameters. \n", + " These parameters are stored to the class instance variables so that the\n", + " class functions can access them later.\n", + " \n", + " url_pattern: the regex pattern of the web urls to scape\n", + " pages_to_scrape: how many pages to scrape\n", + " sleep_interval: the time interval in seconds to delay between requests. If <0, requests will not be delayed.\n", + " content_parser: a function reference that will extract the intended info from the scraped content.\n", + " \"\"\"\n", + " def __init__(self, urls_pages, sleep_interval=-1, content_parser=None):\n", + " self.urls_pages = urls_pages\n", + " self.sleep_interval = sleep_interval\n", + " self.content_parser = content_parser\n", + " self.output = []\n", + " \"\"\"\n", + " Scrape the content of a single url.\n", + " \"\"\"\n", + " def scrape_url(self, url):\n", + " response = requests.get(url)\n", + " if str(response) != '':\n", + " print('Error en la respuesta del servidor',response)\n", + " elif str(response) == '':\n", + " print('Error en el limite de tiempo de respuesta del servidor')\n", + " elif str(response) == '':\n", + " print('Error demasiadas peticiones')\n", + " # I didn't find the SSL error but I add a 404 error catching.\n", + " elif str(response) == '':\n", + " print('No se encontro el contenido')\n", + " else:\n", + " result = self.content_parser(response.content)\n", + " self.output_results(result)\n", + " \n", + " \"\"\"\n", + " Export the scraped content. Right now it simply print out the results.\n", + " But in the future you can export the results into a text file or database.\n", + " \"\"\"\n", + " def output_results(self, r):\n", + " self.output.append(r)\n", + " \"\"\"\n", + " After the class is instantiated, call this function to start the scraping jobs.\n", + " This function uses a FOR loop to call `scrape_url()` for each url to scrape.\n", + " \"\"\"\n", + " def kickstart(self):\n", + " for i in self.urls_pages:\n", + " if self.sleep_interval > 0:\n", + " time.sleep(self.sleep_interval)\n", + " self.scrape_url(i)\n", + " else:\n", + " self.scrape_url(i)\n", + " return self.output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Definimos un nuevo parser para extraer los datos de cada página." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "def model_parser(content):\n", + " check_content = lambda x: True if x != [] else False\n", + " soup_prueba = BeautifulSoup(content,'html')\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'productTitle'})[0].select('h1')[0]['content'])\n", + " nombre = soup_prueba.find_all('div',{'class':'productTitle'})[0].select('h1')[0]['content']\n", + " except:\n", + " nombre = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'productArtist'})[0].text[3:])\n", + " dueño = soup_prueba.find_all('div',{'class':'productArtist'})[0].text[3:]\n", + " except:\n", + " dueño = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'priceSection price'})[0].text)\n", + " precio = soup_prueba.find_all('div',{'class':'priceSection price'})[0].text\n", + " except:\n", + " precio = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'LicenseUses'})[0].text)\n", + " licencia = soup_prueba.find_all('div',{'class':'LicenseUses'})[0].text\n", + " except:\n", + " licencia = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('table',{'class':'SpecificationTable'})[0].select('time')[0]['datetime'])\n", + " fecha_pub = soup_prueba.find_all('table',{'class':'SpecificationTable'})[0].select('time')[0]['datetime']\n", + " except:\n", + " fecha_pub = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('table',{'class':'exchange'})[0].text)\n", + " formatos = soup_prueba.find_all('table',{'class':'exchange'})[0].text\n", + " except:\n", + " formatos = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'FeatureGraphCategories'})[0].select('a'))\n", + " categorias = soup_prueba.find_all('div',{'class':'FeatureGraphCategories'})[0].select('a')\n", + " links_categorias = [categoria['href'] for categoria in categorias]\n", + " list_categorias = [categoria.text for categoria in categorias]\n", + " except:\n", + " links_categorias = []\n", + " list_categorias = []\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'tagSection'})[0].select('a'))\n", + " tags = soup_prueba.find_all('div',{'class':'tagSection'})[0].select('a')\n", + " links_tags = [tag['href'] for tag in tags]\n", + " list_tags = [tag.text for tag in tags]\n", + " except:\n", + " links_tags = []\n", + " list_tags = []\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'descriptionSection'})[0].select('.descriptionContentParagraph')[0].text)\n", + " descripcion = soup_prueba.find_all('div',{'class':'descriptionSection'})[0].select('.descriptionContentParagraph')[0].text\n", + " except:\n", + " descripcion = ''\n", + " row_dataset = [nombre,dueño,precio,licencia,fecha_pub,formatos,list_categorias,links_categorias,list_tags,links_tags,descripcion]\n", + " return row_dataset" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "SLEEP_INTERVAL = 0.5\n", + "\n", + "# Instantiate the IronhackSpider class\n", + "project_spider_models = ModelsSpider(urls_modelos_pages,SLEEP_INTERVAL, content_parser = model_parser)\n", + "\n", + "# Start scraping jobs\n", + "rows_dataset = project_spider_models.kickstart()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "rows_dataset[0]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping = pd.DataFrame(rows_dataset)\n", + "dataset_scraping.columns = [['name_model','owner','price','license','published_date','formats_available','list_categories','links_categories','list_tags','links_tags','description']]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Por el momento he realizado el scraping a 10 páginas del sitio, con cien modelos, lo que representa 1000 requests. He mantenido este número por la posibilidad de que bloquen la dirección IP, sin embargo puede modificarse el parametro del primer Spider y tratar de obtener los url de todos los modelos disponibles." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Guardamos en archivo csv los resultados obtenidos.\n", + "dataset_scraping.to_csv('dataset_scraping.csv',index=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Limpieza de datos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Es necesario aplicar una limpieza a los datos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Revisamos la cantida de valores vacios" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "missing_values_scraping = dataset_scraping.isna()\n", + "missing_values_scraping = missing_values_scraping.sum()\n", + "missing_values_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna name_model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En este caso podemos darle un formato más limpio a los nombres (capitalize) y eliminar palabras que son innecesarias." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "With the name we now that all are 3D models, so we remove this word for all the names." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping.columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here I had a problem because I got a multiindex dataframe, so I had to apply some extra steps each time I wanted to modify a column." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "nombres = dataset_scraping['name_model']\n", + "nombres = [nombres.loc[[i]].values[0][0] for i in range(len(nombres))]\n", + "nombres = [nombre.replace('3D ','').replace('model ','').replace('3D','').replace('model','').capitalize() for nombre in nombres]\n", + "dataset_scraping['name_model'] = nombres" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna price." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Primero nos damos una idea de la variedad de precios en esta columna." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "prices = dataset_scraping['price']\n", + "prices = [prices.loc[[i]].values[0][0] for i in range(len(prices))]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Parece que dentro de los primeros 1000 modelos todos son gratuitos, por lo que solo limpiamos un poco el string." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping['price'] = [re.sub(r'\\n','',price) for price in prices]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna formats_available" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para esta columna necesitamos un formao similar a la columna price, solo que generamos una lista de formatos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "formatos = dataset_scraping['formats_available']\n", + "formatos = [formatos.loc[[i]].values[0][0] for i in range(len(formatos))]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping['formats_available'] = [re.findall(r'\\b\\w+\\s(?:\\w+)?',str(formato)) for formato in formatos]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finalmente podemos hacer un reordenamiento de las columnas." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "orden_columnas = ['name_model', 'description','owner','price','license','published_date',\n", + " 'formats_available','list_categories','links_categories','list_tags','links_tags']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping = dataset_scraping[orden_columnas]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ahora sustituimos los valores nulos y listas vacias por la cadena \"Unknown\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping.fillna('No disponible')\n", + "change_to_unknown = lambda x: 'Unknown' if x == [] else x\n", + "for i in dataset_scraping.columns:\n", + " dataset_scraping[i] = dataset_scraping[i].apply(change_to_unknown)\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Guardamos el dataset limpio." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping.to_csv('datase_scraping_clean.csv',index=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Análisis." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ahora podemos obtener las categorias o etiquetas más frecuentes." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lista_categorias = dataset_scraping['list_categories']\n", + "lista_categorias = [lista_categorias.loc[[i]].values[0][0] for i in range(len(lista_categorias))]\n", + "lista_categorias_total = [categoria for lista in lista_categorias for categoria in lista]\n", + "set_categorias = set(lista_categorias_total)\n", + "dict_freq_categories = {k:lista_categorias_total.count(k) for k in set_categorias}\n", + "freq_categories_order = sorted(dict_freq_categories.items(), key=operator.itemgetter(1))\n", + "print('Categorias más frecuentes en orden ascendente:')\n", + "print(freq_categories_order[-10:])" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "lista_etiquetas = dataset_scraping['list_tags']\n", + "lista_etiquetas = [lista_etiquetas.loc[[i]].values[0][0] for i in range(len(lista_etiquetas))]\n", + "lista_etiquetas_total = [etiqueta for lista in lista_etiquetas for etiqueta in lista]\n", + "set_etiquetas = set(lista_etiquetas_total)\n", + "dict_freq_tags = {k:lista_etiquetas_total.count(k) for k in set_etiquetas}\n", + "freq_tags_order = sorted(dict_freq_tags.items(), key=operator.itemgetter(1))\n", + "print('Categorias más frecuentes en orden ascendente:')\n", + "print(freq_tags_order[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Buscar los \"dueños\" más frecuentes." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dueños = dataset_scraping['owner']\n", + "dueños = [dueños.loc[[i]].values[0][0] for i in range(len(dueños))]\n", + "len(set(dueños))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dueños_dict = {k:dueños.count(k) for k in set(dueños)}\n", + "freq_dueños_order = sorted(dueños_dict.items(), key=operator.itemgetter(1))\n", + "print('Los dueños con más modelos en orden ascendente:')\n", + "print(freq_dueños_order[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "La posibilidad de filtrar para encontrar información relevante sobre que dueño es el más activo con base en la fecha de publicación de sus modelos y el número de modelos es posible calcularla con base en el dataset limpio.\n", + "\n", + "Ahora bien como podemos ver tambien sería interesante analizar información sobre los modelos de pago que desgrciadamente no alcanzamos a obtener debido a la inmensa cantidad de modelos que hay en la página. Por ahora se han prácticado las habilidades de uso de APIs y web scraping." + ] + } + ], + "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.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/your-code/datase_scraping_clean.csv b/your-code/datase_scraping_clean.csv new file mode 100644 index 0000000..9fcc1c0 --- /dev/null +++ b/your-code/datase_scraping_clean.csv @@ -0,0 +1,501 @@ +name_model,description,owner,price,license,published_date,formats_available,list_categories,links_categories,list_tags,links_tags +Free base male anatomy,Free model. You can use for base anatomy/proportion. ztl and obj files included.,niyoo,Free, - All Extended Uses,2019-07-21,['OBJ '],"['3D Model', 'characters', 'people', 'man']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man']","['characters', 'man', 'male', 'human', 'zbrush', 'ztl', 'obj', 'head', 'face', 'body', 'torso', 'people', 'free']","['https://www.turbosquid.com/Search/3D-Models/characters', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/ztl', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/face', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/torso', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/free']" +Minecraft grass block,,Render at Night,Free, - Editorial Uses Only,2019-07-21,['OBJ '],"['3D Model', 'nature', 'plants', 'grasses', 'ornamental grass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/grasses', 'https://www.turbosquid.com/3d-model/ornamental-grass']","['minecraft', 'grass', 'block', 'cube']","['https://www.turbosquid.com/Search/3D-Models/minecraft', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/cube']" +Diving helmet ,This is a helmet I made.CC0 License,NotJerd,Free, - All Extended Uses,2019-07-20,['OBJ '],"['3D Model', 'sports', 'outdoor sports', 'scuba', 'diving helmet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/outdoor-sports', 'https://www.turbosquid.com/3d-model/scuba', 'https://www.turbosquid.com/3d-model/diving-helmet']","['Helmet', 'Undersea']","['https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/undersea']" +Dominoes,"Models of 5 different dominoes.Polygons/Vertices (5 dominoes combined):- Low Poly: 5,324/5,398- High Poly: 85,696/85,706Available File variants:- BLEND (Modifiers not applied + Modifiers applied); Modifiers include Subdivison- OBJ (Low Poly + High Poly)*All photos were rendered in Blender with Cycles Render engine.",Render at Night,Free, - All Extended Uses,2019-07-20,['OBJ '],"['3D Model', 'toys and games', 'games', 'dominos']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dominos']","['domino', 'dominoes', 'black', 'white', 'tile']","['https://www.turbosquid.com/Search/3D-Models/domino', 'https://www.turbosquid.com/Search/3D-Models/dominoes', 'https://www.turbosquid.com/Search/3D-Models/black', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/tile']" +Prototyping polygons ,"I was starting work on a new game in unity and needed placeholder objects, and found that there were no free packages on the unity asset store. After making some myself I decided to upload them to the Unity Asset Store, but as it turns out, there is a clause explicitly banning 3d primitives for prototyping . So I'm sharing them here.",HyperChromatica,Free, - All Extended Uses,2019-07-20,"['FBX 1', '0\n']","['3D Model', 'symbols']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes']","['primitives', 'prototyping', 'blender', 'unity', 'geometric', 'simple']","['https://www.turbosquid.com/Search/3D-Models/primitives', 'https://www.turbosquid.com/Search/3D-Models/prototyping', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/geometric', 'https://www.turbosquid.com/Search/3D-Models/simple']" +Counter and bar stools,counter and bar stools Are the same specifications as the real materials Used in exhibitionsThe component of octanorm systemThe wooden materials are decorated in the same style as the real exhibits,ESalem,Free, - All Extended Uses,2019-07-20,"['3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'furnishings', 'cupboard', 'showcase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/cupboard', 'https://www.turbosquid.com/3d-model/showcase']","['counter', 'and', 'bar', 'stools', 'Are', 'same', 'specifications', 'as', 'the', 'real', 'Used', 'in', 'exhibitions', 'The', 'component', 'of', 'octanorm', 'system', 'The', 'wooden', 'materials']","['https://www.turbosquid.com/Search/3D-Models/counter', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/stools', 'https://www.turbosquid.com/Search/3D-Models/are', 'https://www.turbosquid.com/Search/3D-Models/same', 'https://www.turbosquid.com/Search/3D-Models/specifications', 'https://www.turbosquid.com/Search/3D-Models/as', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/real', 'https://www.turbosquid.com/Search/3D-Models/used', 'https://www.turbosquid.com/Search/3D-Models/in', 'https://www.turbosquid.com/Search/3D-Models/exhibitions', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/component', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/octanorm', 'https://www.turbosquid.com/Search/3D-Models/system', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/materials']" +Cabin shop,Small low poly shop cabin.,MarkoffIN,Free, - All Extended Uses,2019-07-20,['FBX '],"['3D Model', 'architecture', 'building', 'commercial building', 'restaurant', 'coffee shop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/restaurant-building', 'https://www.turbosquid.com/3d-model/coffee-shop']","['House', 'shop', 'store', 'stall', 'depot', 'trade', 'cabin.']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/store', 'https://www.turbosquid.com/Search/3D-Models/stall', 'https://www.turbosquid.com/Search/3D-Models/depot', 'https://www.turbosquid.com/Search/3D-Models/trade', 'https://www.turbosquid.com/Search/3D-Models/cabin.']" +Viper sniper rifle,"Game ready model, low poly can used as a game object or props object, all texture have 2 sets 4096x4096 and 2048x2048 ( normal, basecolor, metallic, roughness, AO) And same texture sets for unity ( normal, basecolor, metallic with roughness alpha, AO) Good work with unreal and unity. In .blend file 2.8 version all texture pack into this file and all texture set up for scene All texture pbr I model that model from concept of mass effect",Young_Wizard,Free, - All Extended Uses,2019-07-20,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sniper rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/sniper-rifle']","['weapon', 'sci-fi', 'low-poly', 'game-ready', 'sniper-rifle', 'mass-effect']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/sci-fi', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/sniper-rifle', 'https://www.turbosquid.com/Search/3D-Models/mass-effect']" +Atom ,"3D model for the atom. The whole project was made in Blender 3D. The renders and wireframe views in the photos of this product are with no Subdivision .. only smooth shading The Project has these formats: blend, fbx, obj, mtl",Abdo Ashraf,Free, - All Extended Uses,2019-07-20,Unknown,"['3D Model', 'science', 'chemistry', 'atom']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/chemistry', 'https://www.turbosquid.com/3d-model/atom']","['atom', 'science', 'chemistry', 'chemical', 'scientific', 'nuclear', 'radiation', 'molecule', 'atomic', 'electron', 'nucleus', 'proton', 'neutron', 'models', 'various', 'orbit', 'other']","['https://www.turbosquid.com/Search/3D-Models/atom', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/chemistry', 'https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/scientific', 'https://www.turbosquid.com/Search/3D-Models/nuclear', 'https://www.turbosquid.com/Search/3D-Models/radiation', 'https://www.turbosquid.com/Search/3D-Models/molecule', 'https://www.turbosquid.com/Search/3D-Models/atomic', 'https://www.turbosquid.com/Search/3D-Models/electron', 'https://www.turbosquid.com/Search/3D-Models/nucleus', 'https://www.turbosquid.com/Search/3D-Models/proton', 'https://www.turbosquid.com/Search/3D-Models/neutron', 'https://www.turbosquid.com/Search/3D-Models/models', 'https://www.turbosquid.com/Search/3D-Models/various', 'https://www.turbosquid.com/Search/3D-Models/orbit', 'https://www.turbosquid.com/Search/3D-Models/other']" +Fan,Vintage fan,Akumax Maxime,Free, - All Extended Uses,2019-07-19,['OBJ '],"['3D Model', 'interior design', 'housewares', 'fan', 'box fan']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/fan', 'https://www.turbosquid.com/3d-model/box-fan']","['Fan', 'ventilateur']","['https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/ventilateur']" +Pouf stool ,"This model was created for an art challenge and employment program.Includes textures, PBR materials, HDRI lighting.Textures are from: texturehavenHDRI: hdrihaven",folkvangr,Free, - All Extended Uses,2019-07-19,Unknown,Unknown,Unknown,"['leather', 'furniture', 'seat', 'decor', 'stool', 'other']","['https://www.turbosquid.com/Search/3D-Models/leather', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/other']" +Indoor test ,"Indoors test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects and a rigged/animated character.Textures are from: texturehavenHDRI: hdrihaven",folkvangr,Free, - All Extended Uses,2019-07-19,Unknown,Unknown,Unknown,"['indoors', 'room', 'furniture', 'seat', 'wood', 'chair', 'minimalist', 'comfort', 'contemporary', 'rig', 'architectural', 'other']","['https://www.turbosquid.com/Search/3D-Models/indoors', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/minimalist', 'https://www.turbosquid.com/Search/3D-Models/comfort', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/rig', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/other']" +Apartment basic floor plan,"This is a simple architecture test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects, unique glass material.Textures are from: texturehavenHDRI: hdrihaven",folkvangr,Free, - All Extended Uses,2019-07-19,Unknown,Unknown,Unknown,"['flat', 'apartment', 'household', 'building', 'kitchen', 'bathroom', 'bedroom', 'living-room', 'floor', 'window']","['https://www.turbosquid.com/Search/3D-Models/flat', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/bathroom', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/living-room', 'https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/window']" +Coffee cup,- Ceramic coffee cup with plate -This model consists of a high-detailed ceramic coffee cup with plate.Blender zip (.blend):- Version v2.80.74- 1 complete scene- Cycles render versionObj zip:- Object with simple materials- Subdivision (exported at Level 3)Collada zip:- Object with simple materials- No subdivision (exported at Level 0)Fbx zip:- Object with simple materials- Subdivision (exported at Level 3),OemThr,Free, - All Extended Uses,2019-07-19,"['OBJ ', 'FBX ', 'Collada ']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['coffee', 'dinner', 'breakfast', 'cup', 'plate', 'porcelain', 'bavaria', 'tea', 'home', 'furniture', 'furnishing', 'pot', 'ceramic', 'milk']","['https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/dinner', 'https://www.turbosquid.com/Search/3D-Models/breakfast', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/porcelain', 'https://www.turbosquid.com/Search/3D-Models/bavaria', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/furnishing', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/ceramic', 'https://www.turbosquid.com/Search/3D-Models/milk']" +Man headsculpt ,Just a sculpting/texturing practice I did.,Vertici,Free, - All Extended Uses,2019-07-19,Unknown,Unknown,Unknown,"['Head', 'man', 'male', 'human']","['https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/human']" +Blue low poly car ,"free 3d obj and Maya please give me. feedback, was made with a lot of love",Andres_R26,Free, - All Extended Uses,2019-07-19,['Other '],Unknown,Unknown,"['low', 'poly', 'car', 'blue']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/blue']" +Bath house architecture test ,"This is a simple architecture test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects, physics affected grass and fluid simulation.Textures are from: texturehavenHDRI: hdrihaven",folkvangr,Free, - All Extended Uses,2019-07-18,Unknown,Unknown,Unknown,"['column', 'architecture', 'marble', 'bedrock', 'roman', 'bath', 'classic', 'architectural', 'other']","['https://www.turbosquid.com/Search/3D-Models/column', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/marble', 'https://www.turbosquid.com/Search/3D-Models/bedrock', 'https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/bath', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/other']" +Motorola moto g7 plus blue and red ,"Detailed High definition model Xiaomi Redmi 7A Matte Gold.The main format is 3ds max 2011.max, also available in many formats.And click on my username ES_3D And See More Quality Models And Collections .Available in the following file formats:- 3ds Max with mental ray materials (.max)- 3ds Max with V-Ray materials (.max)- 3ds Max with Scanline materials (.max)- 3D Studio (.3ds)- FBX (.fbx)- Geometry: 3ds Max version (For Each)- In formats 3ds Max 2011 , 3ds , OBJ, FBX , VMRL , Mental ray, Default Scanline Renderer, - model exported to standard materials (textures), not contain V-Ray shaders.In these formats, shaders need to be edited for the new studio for the final rendering.- High quality textures,and high resolution renders.- fbx formats contains medium high-poly.- 3ds and obj format comes from low poly.- Every part of the model is named properly- Model is placed to 0,0,0 scene coordinates.- 3ds Max 2011 and all higher versions.- all textures included separately for all formats into each zipped folder.- Other formats may vary slightly depending on your software.- You can make the poly count higher by the MeshSmooth and TurboSmooth level.- Includes V-Ray materials and textures only in 3ds Max format.- A file without V-Ray shader is included with standard materials.- The .3ds and .obj formats are geometry with texture mapping coordinates. No materials attached.- Textures format JPEG.- No object missing,- 3ds Max files included Standard materials and V-Ray materials.- This 3d model objects have the correct names and stripped the texture paths.- NOTE: V-Ray is required for the V-Ray 3ds Max scene and Studio setup is not included.- I hope you will like all my products. Thanks for buying.",ES_3D,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-18,"['3D Studio', '2011\n', 'FBX 2011', 'OBJ 2011', 'VRML 2011']","['3D Model', 'technology', 'phone', 'cellphone', 'smartphone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/phone', 'https://www.turbosquid.com/3d-model/cellphone', 'https://www.turbosquid.com/3d-model/smartphone']","['3d', 'model', '3ds', 'max', 'Motorola', 'Moto', 'G7', 'Plus', 'Blue', 'And', 'Red', 'electronic', 'phone', 'cellular', 'computer', 'pda', 'andriod', 'best', 'top', 'rated', 'vray', 'hdr', 'studio', 'download', 'ES_3D']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/motorola', 'https://www.turbosquid.com/Search/3D-Models/moto', 'https://www.turbosquid.com/Search/3D-Models/g7', 'https://www.turbosquid.com/Search/3D-Models/plus', 'https://www.turbosquid.com/Search/3D-Models/blue', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/red', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/phone', 'https://www.turbosquid.com/Search/3D-Models/cellular', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pda', 'https://www.turbosquid.com/Search/3D-Models/andriod', 'https://www.turbosquid.com/Search/3D-Models/best', 'https://www.turbosquid.com/Search/3D-Models/top', 'https://www.turbosquid.com/Search/3D-Models/rated', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/hdr', 'https://www.turbosquid.com/Search/3D-Models/studio', 'https://www.turbosquid.com/Search/3D-Models/download', 'https://www.turbosquid.com/Search/3D-Models/es_3d']" +Lighting,,w1050263,Free, - All Extended Uses,2019-07-18,"['3D Studio', 'OBJ ', 'FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'home spotlight']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/spotlight-home']","['#lighting', '#light', 'bulb', '#firelight']","['https://www.turbosquid.com/Search/3D-Models/%23lighting', 'https://www.turbosquid.com/Search/3D-Models/%23light', 'https://www.turbosquid.com/Search/3D-Models/bulb', 'https://www.turbosquid.com/Search/3D-Models/%23firelight']" +Office chair ,"**office chair** with vray material ready to put in scene , with vray materials ready to render in the scene and with vray light polygons almost equal 344vertices almost equal 286",Esraa abdelsalam2711,Free, - All Extended Uses,2019-07-17,"['3D Studio', 'Collada ', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'seating', 'chair', 'office chair', 'conference room chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/office-chair', 'https://www.turbosquid.com/3d-model/conference-room-chair']","['#chair', '#office', '#modern', '#3dsmax', '#3dmodeling', '#blue', '#smooth', '#lowvertices', '#render', '#vray', '#vraymtl', '#light']","['https://www.turbosquid.com/Search/3D-Models/%23chair', 'https://www.turbosquid.com/Search/3D-Models/%23office', 'https://www.turbosquid.com/Search/3D-Models/%23modern', 'https://www.turbosquid.com/Search/3D-Models/%233dsmax', 'https://www.turbosquid.com/Search/3D-Models/%233dmodeling', 'https://www.turbosquid.com/Search/3D-Models/%23blue', 'https://www.turbosquid.com/Search/3D-Models/%23smooth', 'https://www.turbosquid.com/Search/3D-Models/%23lowvertices', 'https://www.turbosquid.com/Search/3D-Models/%23render', 'https://www.turbosquid.com/Search/3D-Models/%23vray', 'https://www.turbosquid.com/Search/3D-Models/%23vraymtl', 'https://www.turbosquid.com/Search/3D-Models/%23light']" +Free garden urn planter,"* This Urn is a high quality polygonal model with reel scale and placed in the center. It's suitable for high-quality close-up renders.* The model and the textures are properly named.* The model is correctly uv unwrapped with well hidden seams fully textured and properly named.* Three textures are included marble, concrete and grunge in png format.* Each texture is associate with a color, roughness and normal map in 4096 resolution.* The model is made with blender and rendered in eevee.* The model is ready for import into any project and ready to render as seen in previews.* No special plugin needed to open scene.Product dimensions:Height: 30cm Width: 32.7cm Length: 37.5cm File Formats:- blender- OBJ- FBX- COLLADA-Feel free to browse my other models by clicking on my user name.I hope it meets your expectations.",wave design,Free, - All Extended Uses,2019-07-17,"['OBJ ', 'FBX ', 'Collada ']","['3D Model', 'interior design', 'housewares', 'general decor', 'planter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/planter']","['Urn', 'Planter', 'Vase', 'Garden', 'pot', 'decor', 'Decoration', 'plant', 'Classic', 'Marble', 'concrete', 'grunge', 'Vintage', 'Antique', 'Outdoor']","['https://www.turbosquid.com/Search/3D-Models/urn', 'https://www.turbosquid.com/Search/3D-Models/planter', 'https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/marble', 'https://www.turbosquid.com/Search/3D-Models/concrete', 'https://www.turbosquid.com/Search/3D-Models/grunge', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/outdoor']" +Table,"OBJ, FBX, DAE files of an unwrapped 3D object with materials already on it. Feel free to change the material to whatever you like.",shara_d,Free, - All Extended Uses,2019-07-14,"['FBX ', 'Collada ', 'OBJ ']","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['Table', 'Home', 'Decor', 'Kitchen', 'TableLegs', 'Unwrapped']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/tablelegs', 'https://www.turbosquid.com/Search/3D-Models/unwrapped']" +Metal containers,Metal Containers3D Model Ready for Games. PBR Materials.Textures in 4KUV Map.Formats:3Ds MaxLightWaveBlenderObj+MtlBest Regards.Adrian,Adrian Kulawik,Free, - All Extended Uses,2019-07-17,['OBJ 2019'],"['3D Model', 'industrial', 'industrial container', 'cargo container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/cargo-container']","['metal', 'container', 'mars', 'kitbash', 'modular', 'procedural', 'art', 'design', 'pbr', 'materials', '3d', 'lightwave', '3ds', 'max', 'blender', 'modo', 'maya', 'arch', 'viz', 'game', 'ready', '4k', 'uv']","['https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/mars', 'https://www.turbosquid.com/Search/3D-Models/kitbash', 'https://www.turbosquid.com/Search/3D-Models/modular', 'https://www.turbosquid.com/Search/3D-Models/procedural', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/materials', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/lightwave', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/modo', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/arch', 'https://www.turbosquid.com/Search/3D-Models/viz', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/uv']" +Coffee machine,"Saved as 3ds max 2015 version file.As you work in 3D, the input image source and HDRI are attached as additional files.I used a v-ray renderer.Thank you for your interest. thank you.-------------------------------------------------- -------------* coffee machine 2015.max (3ds max)* coffee machine.3DS* coffee machine.obj* coffee machine.fbx* source (image and HDRI folder) .zip",w1050263,Free, - All Extended Uses,2019-07-17,"['OBJ ', '3D Studio', 'FBX ', 'Other ']","['3D Model', 'interior design', 'appliance', 'commercial appliance', 'vending machine', 'coffee vending machine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/commercial-appliance', 'https://www.turbosquid.com/3d-model/vending-machine', 'https://www.turbosquid.com/3d-model/coffee-vending-machine']","['#coffee', '#machine', '#vending', 'machine']","['https://www.turbosquid.com/Search/3D-Models/%23coffee', 'https://www.turbosquid.com/Search/3D-Models/%23machine', 'https://www.turbosquid.com/Search/3D-Models/%23vending', 'https://www.turbosquid.com/Search/3D-Models/machine']" +Sink,#sink #Kitchen #tap #faucet #bibcock,w1050263,Free, - All Extended Uses,2019-07-17,"['3D Studio', 'OBJ ', 'FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'sink', 'kitchen sink']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/sink', 'https://www.turbosquid.com/3d-model/kitchen-sink']","['#sink', '#Kitchen', '#tap', '#faucet', '#bibcock']","['https://www.turbosquid.com/Search/3D-Models/%23sink', 'https://www.turbosquid.com/Search/3D-Models/%23kitchen', 'https://www.turbosquid.com/Search/3D-Models/%23tap', 'https://www.turbosquid.com/Search/3D-Models/%23faucet', 'https://www.turbosquid.com/Search/3D-Models/%23bibcock']" +Building 002,"This is a simple house model. Except for the curtains, it was made with very few polygons and textures. It might have some tris in the topology, but almost all of the polygons are quads.The .obj and .mtl files were exported from 3dsmax-scanline with Cinema 4D presets.The .fbx file are ready to import in Unreal Engine, unless you want to make some aditional configuration in the export settings, such as checking the 'preserve edge orientation' etc.Please, rate my model! This is the only way I can know if I'm doing a great work.",vini3dmodels,Free, - All Extended Uses,2019-07-15,"['FBX 2016', 'OBJ 2016', 'Other 2016']","['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']","['architecture', 'house', 'home', 'building', 'suburb', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/suburb', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Table ,"* Saved as 3ds max 2015 version file.Nowadays, it is difficult for a family to gather at the table to eat. My childhood past with my parents is like a new one.As you work in 3D, the input image source and HDRI are attached as additional files.I used a v-ray renderer.Thank you for your interest. thank you.-------------------------------------------------- -------------* table 2015.max (3ds max)* table.3DS* table.obj* table.fbx* table.mtl* source (image and HDRI folder) .zip",w1050263,Free, - All Extended Uses,2019-07-15,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['table', 'Kitchen', 'cooktable', 'Breakfast', 'Lunch', 'Dinner']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/cooktable', 'https://www.turbosquid.com/Search/3D-Models/breakfast', 'https://www.turbosquid.com/Search/3D-Models/lunch', 'https://www.turbosquid.com/Search/3D-Models/dinner']" +Cpu case fan,A CPU fan.Low poly and mid poly includedBlend file and obj file availableThumbnails also includedCompletely free for any use!,DevmanModels,Free, - All Extended Uses,2019-07-14,['Other '],"['3D Model', 'technology', 'computer equipment', 'computer components', 'cpu cooler']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-components', 'https://www.turbosquid.com/3d-model/cpu-cooler']","['3d', 'cpu', 'fan', 'Fan', 'Cooler', 'fan', 'Cpu', 'cooler']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/cpu', 'https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/cooler', 'https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/cpu', 'https://www.turbosquid.com/Search/3D-Models/cooler']" +Canister,Low poly fuel canister.,MarkoffIN,Free, - All Extended Uses,2019-07-13,['FBX '],"['3D Model', 'industrial', 'industrial container', 'fuel container', 'oil can']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/fuel-container', 'https://www.turbosquid.com/3d-model/oil-can']","['Canister', 'vessel', 'vial', 'container', 'fuel', 'green']","['https://www.turbosquid.com/Search/3D-Models/canister', 'https://www.turbosquid.com/Search/3D-Models/vessel', 'https://www.turbosquid.com/Search/3D-Models/vial', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/fuel', 'https://www.turbosquid.com/Search/3D-Models/green']" +Road spikes,Low poly road obstacle with texture.,MarkoffIN,Free, - All Extended Uses,2019-07-13,['FBX '],"['3D Model', 'architecture', 'urban design', 'street elements', 'traffic barrier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/traffic-barrier']","['Spikes', 'Road', 'Obstacle', 'Hazard']","['https://www.turbosquid.com/Search/3D-Models/spikes', 'https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/obstacle', 'https://www.turbosquid.com/Search/3D-Models/hazard']" +Chair ,Models:ChairFormats:max,ferhatkose,Free, - Editorial Uses Only,2019-07-12,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', 'office chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/office-chair']",['Chair'],['https://www.turbosquid.com/Search/3D-Models/chair'] +Chemical bottle,"Chemical bottle with generic hazards label. Used in lab environments or science experiment kits. Normally found in an industrial setting but could also be in a high school lab, college lab or even a meth lab.",filburn,Free, - All Extended Uses,2019-07-12,"['FBX ', 'OBJ ', 'STL ', '3D Studio', 'Windows Bitmap']","['3D Model', 'food and drink', 'food container', 'bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food-container', 'https://www.turbosquid.com/3d-model/bottle']","['chemical', 'bottle', 'glass', 'hazard', 'label', 'lab', 'chemistry', 'liquid', 'pH', 'acid', 'container', 'science', 'flask', 'petri', 'dish']","['https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/hazard', 'https://www.turbosquid.com/Search/3D-Models/label', 'https://www.turbosquid.com/Search/3D-Models/lab', 'https://www.turbosquid.com/Search/3D-Models/chemistry', 'https://www.turbosquid.com/Search/3D-Models/liquid', 'https://www.turbosquid.com/Search/3D-Models/ph', 'https://www.turbosquid.com/Search/3D-Models/acid', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/flask', 'https://www.turbosquid.com/Search/3D-Models/petri', 'https://www.turbosquid.com/Search/3D-Models/dish']" +Galaxy plate set ,A simple plate and cup set decorated with gold trim and a glossy galaxy finish.,MikaelaDWilliams,Free, - All Extended Uses,2019-07-12,['OBJ '],"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'tableware', 'bowl']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/tableware', 'https://www.turbosquid.com/3d-model/bowl']","['Plates', 'Galaxy', 'Dinner', 'Food', 'Tableware']","['https://www.turbosquid.com/Search/3D-Models/plates', 'https://www.turbosquid.com/Search/3D-Models/galaxy', 'https://www.turbosquid.com/Search/3D-Models/dinner', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/tableware']" +Japanese bridge,this a japanese future bridge. because of my poor english i can't write description,nahidhassan881,Free, - All Extended Uses,2019-07-12,Unknown,"['3D Model', 'architecture', 'urban design', 'infrastructure', 'bridge']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/infrastructure', 'https://www.turbosquid.com/3d-model/bridge']","['bridge', 'city', 'fantasy', 'future', 'highway']","['https://www.turbosquid.com/Search/3D-Models/bridge', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/highway']" +Night sky,this is a sky environment . that come's with lot's of good staff,nahidhassan881,Free, - All Extended Uses,2019-07-12,Unknown,"['3D Model', 'nature', 'weather and atmosphere', 'sky']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/weather-and-atmosphere', 'https://www.turbosquid.com/3d-model/sky']","['environment', 'night', 'sky', 'cloud', 'Beautiful', 'Bridge']","['https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/night', 'https://www.turbosquid.com/Search/3D-Models/sky', 'https://www.turbosquid.com/Search/3D-Models/cloud', 'https://www.turbosquid.com/Search/3D-Models/beautiful', 'https://www.turbosquid.com/Search/3D-Models/bridge']" +Spillfyter,SpillFyter chemical test strips which is used in lab experiments to detect the acidity or alkalinity of a liquid as well as other information regarding a liquids chemical composition. Commonly used in any lab environment and can also be found in Hazmat safety kits. It may also be found in a nurses station in the event of an unintentional chemical exposure.,filburn,Free, - Editorial Uses Only,2019-07-12,"['FBX ', 'OBJ ', 'STL ', '3D Studio', 'Windows Bitmap']","['3D Model', 'science', 'lab equipment', 'ph meter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/lab-equipment', 'https://www.turbosquid.com/3d-model/ph-meter']","['ph', 'science', 'experiment', 'lab', 'chemical', 'test', 'Litmus', 'hydrion', 'paper', 'strips', 'universal', 'indicator', 'potential', 'hydrogen', 'acid', 'hazmat', 'liquid', 'flouride', 'organic', 'solvent']","['https://www.turbosquid.com/Search/3D-Models/ph', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/experiment', 'https://www.turbosquid.com/Search/3D-Models/lab', 'https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/test', 'https://www.turbosquid.com/Search/3D-Models/litmus', 'https://www.turbosquid.com/Search/3D-Models/hydrion', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/strips', 'https://www.turbosquid.com/Search/3D-Models/universal', 'https://www.turbosquid.com/Search/3D-Models/indicator', 'https://www.turbosquid.com/Search/3D-Models/potential', 'https://www.turbosquid.com/Search/3D-Models/hydrogen', 'https://www.turbosquid.com/Search/3D-Models/acid', 'https://www.turbosquid.com/Search/3D-Models/hazmat', 'https://www.turbosquid.com/Search/3D-Models/liquid', 'https://www.turbosquid.com/Search/3D-Models/flouride', 'https://www.turbosquid.com/Search/3D-Models/organic', 'https://www.turbosquid.com/Search/3D-Models/solvent']" +Umbridge,Umbrdige model,AzDm,Free, - Editorial Uses Only,2019-07-12,['FBX 2016'],"['3D Model', 'characters', 'people', 'woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman']","['female', 'woman', 'umbridge', 'human']","['https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/umbridge', 'https://www.turbosquid.com/Search/3D-Models/human']" +Traffic light ,* Saved as 3ds max 2015 version file.It is a signal that we must obey while living the world. Traffic lights are a common sight when you walk the road or walk through the city.The image source and HDRI that I enter while working in 3D are attached as additional files.I used a v-ray renderer.Note The scanline version is not ready for rendering.Thank you for your interest. Thank you.--------------------------------------*Traffic Light 2015.max (3ds max)*Traffic Light.3DS*Traffic Light.OBJ*Traffic Light.FBX*Traffic Light_Image source (and HDRI folder).zip,w1050263,Free, - All Extended Uses,2019-07-11,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'architecture', 'urban design', 'street elements', 'stop light']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/traffic-light']","['#Traffic', 'Light', '#road', '#crosswalk', '#Red', '#Green', '#Electric', 'pole', '#city', '#signal', '#method', '#rule', '#Street', 'lamp']","['https://www.turbosquid.com/Search/3D-Models/%23traffic', 'https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/%23road', 'https://www.turbosquid.com/Search/3D-Models/%23crosswalk', 'https://www.turbosquid.com/Search/3D-Models/%23red', 'https://www.turbosquid.com/Search/3D-Models/%23green', 'https://www.turbosquid.com/Search/3D-Models/%23electric', 'https://www.turbosquid.com/Search/3D-Models/pole', 'https://www.turbosquid.com/Search/3D-Models/%23city', 'https://www.turbosquid.com/Search/3D-Models/%23signal', 'https://www.turbosquid.com/Search/3D-Models/%23method', 'https://www.turbosquid.com/Search/3D-Models/%23rule', 'https://www.turbosquid.com/Search/3D-Models/%23street', 'https://www.turbosquid.com/Search/3D-Models/lamp']" +Barrier,A simple white and red low poly barrier with texture.,MarkoffIN,Free, - All Extended Uses,2019-07-11,['FBX '],"['3D Model', 'architecture', 'urban design', 'street elements', 'crowd barrier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/crowd-barrier']","['Barrier', 'obstacle', 'hurdle', 'roadblock', 'bar', 'division', 'divider', 'fence', 'rail', 'striped', 'railing', 'obstruction', 'white', 'and', 'red.']","['https://www.turbosquid.com/Search/3D-Models/barrier', 'https://www.turbosquid.com/Search/3D-Models/obstacle', 'https://www.turbosquid.com/Search/3D-Models/hurdle', 'https://www.turbosquid.com/Search/3D-Models/roadblock', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/division', 'https://www.turbosquid.com/Search/3D-Models/divider', 'https://www.turbosquid.com/Search/3D-Models/fence', 'https://www.turbosquid.com/Search/3D-Models/rail', 'https://www.turbosquid.com/Search/3D-Models/striped', 'https://www.turbosquid.com/Search/3D-Models/railing', 'https://www.turbosquid.com/Search/3D-Models/obstruction', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/red.']" +[animated]lowpoly trash can ,- SPECS -Total Polygons: 1116Total Vertices: 637,wehbn,Free, - All Extended Uses,2019-07-11,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'industrial', 'industrial container', 'garbage container', 'dustbin', 'pedal trash bin']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/garbage-container', 'https://www.turbosquid.com/3d-model/dustbin', 'https://www.turbosquid.com/3d-model/pedal-trash-bin']","['trash', 'can', 'trashcan']","['https://www.turbosquid.com/Search/3D-Models/trash', 'https://www.turbosquid.com/Search/3D-Models/can', 'https://www.turbosquid.com/Search/3D-Models/trashcan']" +Kitchen sink ,Kitchen sink Blanco Metra 6S Compact with mixer Blanco Mida from a cast stone (artificial granite) with the mixer Blanco MidaAll 9 colors. Sink size (WxDxH) 720x500x190 mm Mixer size (WxDxH) 50x190x320 mm Renderers VRay and Corona,Ukkka,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-11,Unknown,"['3D Model', 'interior design', 'fixtures', 'sink', 'kitchen sink']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/sink', 'https://www.turbosquid.com/3d-model/kitchen-sink']","['kitchen', 'sink', 'blanco', 'metra', '6s', 'compact', 'mixer', 'mida', 'household', 'kitchenware']","['https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/sink', 'https://www.turbosquid.com/Search/3D-Models/blanco', 'https://www.turbosquid.com/Search/3D-Models/metra', 'https://www.turbosquid.com/Search/3D-Models/6s', 'https://www.turbosquid.com/Search/3D-Models/compact', 'https://www.turbosquid.com/Search/3D-Models/mixer', 'https://www.turbosquid.com/Search/3D-Models/mida', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/kitchenware']" +School assets,"School assets includeSchool bus, fifteen books, bookshelf, school desk, teachers desk, teachers desk, projector board, projector, monitor, desk for chemistry classroom, schoolchildren of five colors, starter with first-aid kit, ordinary cabinet, columnar with glass, column, mat , keyboard, system unit, bookcase, blinds, window wall, wall, wall with door, wall with large door, food tray, dining table, showcase.",Mr.Jarst,Free, - All Extended Uses,2019-07-11,['FBX '],"['3D Model', 'vehicles', 'bus', 'school bus']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/bus', 'https://www.turbosquid.com/3d-model/school-bus']","['Cinema', '4', 'd', 'Aset', 'a', 'laptop', '3d', 'school', 'desk', 'projector', 'board', 'book', 'shelving']","['https://www.turbosquid.com/Search/3D-Models/cinema', 'https://www.turbosquid.com/Search/3D-Models/4', 'https://www.turbosquid.com/Search/3D-Models/d', 'https://www.turbosquid.com/Search/3D-Models/aset', 'https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/school', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/projector', 'https://www.turbosquid.com/Search/3D-Models/board', 'https://www.turbosquid.com/Search/3D-Models/book', 'https://www.turbosquid.com/Search/3D-Models/shelving']" +Ph test strips ,Litmus paper (or pH strips) which is used in lab experiments to detect the acidity or alkalinity of a liquid. Commonly used in any lab environment and can also be found in safety kits. It may also be found in a nurses station in the event of an unintentional exposure.,filburn,Free, - Editorial Uses Only,2019-07-09,"['OBJ ', 'FBX ', '3D Studio', 'Windows Bitmap']","['3D Model', 'science', 'lab equipment', 'ph meter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/lab-equipment', 'https://www.turbosquid.com/3d-model/ph-meter']","['ph', 'science', 'experiment', 'lab', 'chemical', 'test', 'Litmus', 'hydrion', 'paper', 'strips', 'universal', 'indicator', 'mcolorphast', 'potential', 'hydrogen']","['https://www.turbosquid.com/Search/3D-Models/ph', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/experiment', 'https://www.turbosquid.com/Search/3D-Models/lab', 'https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/test', 'https://www.turbosquid.com/Search/3D-Models/litmus', 'https://www.turbosquid.com/Search/3D-Models/hydrion', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/strips', 'https://www.turbosquid.com/Search/3D-Models/universal', 'https://www.turbosquid.com/Search/3D-Models/indicator', 'https://www.turbosquid.com/Search/3D-Models/mcolorphast', 'https://www.turbosquid.com/Search/3D-Models/potential', 'https://www.turbosquid.com/Search/3D-Models/hydrogen']" +Audio connectors ,"Big Jack (6,35mm), Mini Jack (3,5mm) and RCA connectors.Models have real size dimensions.Models do not have textures. Blend file contains simple materials.In the Blend file, cables are made of curves and can change bends.Polygons: 22430Vertices: 20558",evilvoland,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-09,"['Collada ', 'FBX ', 'OBJ ']","['3D Model', 'technology', 'electrical accessories', 'a/v connector', 'rca jack']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/electrical-accessories', 'https://www.turbosquid.com/3d-model/av-connector', 'https://www.turbosquid.com/3d-model/rca-jack']","['audio', 'jack', 'guitar', 'stereo', 'mono', 'connector', 'cable', 'chrome', 'TRS', 'mini-jack', 'input', 'output', 'adapter', 'plug', 'music', 'signal', 'interface', 'electronic', 'rca', 'RF']","['https://www.turbosquid.com/Search/3D-Models/audio', 'https://www.turbosquid.com/Search/3D-Models/jack', 'https://www.turbosquid.com/Search/3D-Models/guitar', 'https://www.turbosquid.com/Search/3D-Models/stereo', 'https://www.turbosquid.com/Search/3D-Models/mono', 'https://www.turbosquid.com/Search/3D-Models/connector', 'https://www.turbosquid.com/Search/3D-Models/cable', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/trs', 'https://www.turbosquid.com/Search/3D-Models/mini-jack', 'https://www.turbosquid.com/Search/3D-Models/input', 'https://www.turbosquid.com/Search/3D-Models/output', 'https://www.turbosquid.com/Search/3D-Models/adapter', 'https://www.turbosquid.com/Search/3D-Models/plug', 'https://www.turbosquid.com/Search/3D-Models/music', 'https://www.turbosquid.com/Search/3D-Models/signal', 'https://www.turbosquid.com/Search/3D-Models/interface', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/rca', 'https://www.turbosquid.com/Search/3D-Models/rf']" +Game of thrones helmet ,"Game of thrones helmetformats : .obj , .ma Textures : Arnold Texture images , 2D texture image",Waleed_K3452,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-09,"['OBJ ', 'Other ']","['3D Model', 'weaponry', 'armour', 'helmet', 'military helmet', 'combat helmet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/helmet', 'https://www.turbosquid.com/3d-model/military-helmet', 'https://www.turbosquid.com/3d-model/combat-helmet']","['game', 'of', 'thrones', 'helmet', 'history', 'head', 'metal', 'war', 'armor', 'weapon', 'shield']","['https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/thrones', 'https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/history', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/shield']" +Lowpoly trees,"Another small Low Poly assets I've created.You can use it to create beautiful low poly environment,Enjoy and please remember to rate it and leave a review.Thank you",Nellecter,Free, - All Extended Uses,2019-07-09,"['OBJ ', 'Other ']","['3D Model', 'nature', 'tree', 'fantasy tree', 'cartoon tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/fantasy-tree', 'https://www.turbosquid.com/3d-model/cartoon-tree']","['tree', 'trees', 'plant', 'plants', 'nature', 'green', 'albero', 'alberi', 'natura', 'verde']","['https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/trees', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/plants', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/albero', 'https://www.turbosquid.com/Search/3D-Models/alberi', 'https://www.turbosquid.com/Search/3D-Models/natura', 'https://www.turbosquid.com/Search/3D-Models/verde']" +Low poly sword 08 ,Fantasy low poly sword! Mobile and game ready.,akifotti,Free, - All Extended Uses,2019-07-08,"['FBX 1', '0\n', 'Other 1', '0\n']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'fantasy sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/fantasy-sword']","['lowpoly', 'fantasy', 'medieval', 'sword', 'low', 'poly']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly']" +Stalagmites,"Another model I made a long time ago in Sculptris. I lost the original textures, but I have included some 2048x2048 jpeg textures in 4 color options. Hope you find it useful.;P",wernie,Free, - All Extended Uses,2019-07-08,"['3D Studio', 'Collada ', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'nature', 'landscapes', 'terrain', 'cave', 'stalagmite']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/ground', 'https://www.turbosquid.com/3d-model/cave', 'https://www.turbosquid.com/3d-model/stalagmite']","['Rock', 'Lava', 'Desert', 'Cave', 'Stalagmite', 'Environment']","['https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/lava', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/cave', 'https://www.turbosquid.com/Search/3D-Models/stalagmite', 'https://www.turbosquid.com/Search/3D-Models/environment']" +Thermometer ,Simple textured thermometer. Use it for free. Please rate it 5 if you dowload.,epicentre,Free, - All Extended Uses,2019-07-08,"['OBJ ', 'FBX ', 'Other ']","['3D Model', 'science', 'medicine', 'medical equipment', 'medical instruments', 'thermometer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/medicine-and-science', 'https://www.turbosquid.com/3d-model/medical-equipment', 'https://www.turbosquid.com/3d-model/medical-instruments', 'https://www.turbosquid.com/3d-model/thermometer']","['Thermometer', 'temperature', 'degree', 'heat', 'cold', 'celsius', 'scale', 'domestic', 'indoor', 'outdoor', 'glass', 'sauna']","['https://www.turbosquid.com/Search/3D-Models/thermometer', 'https://www.turbosquid.com/Search/3D-Models/temperature', 'https://www.turbosquid.com/Search/3D-Models/degree', 'https://www.turbosquid.com/Search/3D-Models/heat', 'https://www.turbosquid.com/Search/3D-Models/cold', 'https://www.turbosquid.com/Search/3D-Models/celsius', 'https://www.turbosquid.com/Search/3D-Models/scale', 'https://www.turbosquid.com/Search/3D-Models/domestic', 'https://www.turbosquid.com/Search/3D-Models/indoor', 'https://www.turbosquid.com/Search/3D-Models/outdoor', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/sauna']" +Rock ,"Low poly model of the surface of the rock for the game engine. - Polycount (tris):Rock - 116,Rock-LOD1 - 58,Rock-LOD2 - 2. - Textures(.jpg, 4096x4096): Diffuse,Normal,Specular.The model was created in the program Blender 2.79. Native files are in archive BLEND. Also in the corresponding archives there are files for import: 3DS, FBX, OBJ. Textures can be found in archives TEXTURES and BONUS (additional textures that can be useful to someone in the work).",4Engine,Free, - All Extended Uses,2019-07-08,"['3D Studio', 'Other ', 'FBX ', 'OBJ ']","['3D Model', 'nature', 'landscapes', 'mineral', 'rock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/mineral', 'https://www.turbosquid.com/3d-model/rock']","['rock', 'nature', 'low-poly', 'game-ready', 'environment', 'stone', 'exterior', 'outdoors', 'realistic', 'mountain', 'cliff', 'landscape', 'ground', 'tileable']","['https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/outdoors', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/mountain', 'https://www.turbosquid.com/Search/3D-Models/cliff', 'https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/tileable']" +Plant ,Modeled and textured in Blender 3D 2.8This plant is created and textured with realistic images.I hope you like it.,georgeg3g3g3,Free, - All Extended Uses,2019-07-07,['FBX '],"['3D Model', 'nature', 'plants']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants']","['Plant', 'flower', 'pot', 'leaves', 'leaf']","['https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/leaves', 'https://www.turbosquid.com/Search/3D-Models/leaf']" +Defend tower ,"Verts 16,805Faces 16,316Uv MappedNon Textures",BekirFreelan,Free, - All Extended Uses,2019-07-07,"['FBX ', 'OBJ ']","['3D Model', 'architecture', 'building', 'skyscraper', 'tower']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/skyscraper', 'https://www.turbosquid.com/3d-model/tower']","['model', 'free', '3d', 'game', 'asset', 'download', 'building']","['https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/download', 'https://www.turbosquid.com/Search/3D-Models/building']" +Simple bar stool ,Just a simple bar stool LOW POLYFile is for Cinema4D but of course can be used in any other 3D software as well.Exchange files and a wood texture (Teak wood) for the legs are included.,winzmuc,Free, - All Extended Uses,2019-07-07,"['3D Studio', 'Collada 1', '5\n', 'DXF ', 'FBX 7', '3\n', 'OBJ ', 'STL ', 'VRML 2']","['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool', 'https://www.turbosquid.com/3d-model/bar-stool']","['Bar', 'stool', 'barstool', 'wood', 'metal', 'leather', 'interior', 'restaurant', 'simple', 'legs', 'bars', 'seat', 'club']","['https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/barstool', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/leather', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/legs', 'https://www.turbosquid.com/Search/3D-Models/bars', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/club']" +Mars globe 1 ,"Globe from my first tutorial.Map to 3D globe.The ultimate goal of the method is to combine several pieces of the map into one, without stitches and distortions. The globe itself is only an intermediate.The end result is a rendered map of any part of the globe.",Kessler_Protus,Free, - All Extended Uses,2019-07-07,Unknown,"['3D Model', 'science', 'astronomy', 'planets', 'mars']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/astronomy', 'https://www.turbosquid.com/3d-model/planets', 'https://www.turbosquid.com/3d-model/mars']","['globe', 'tutorial', 'Mars', '3DGlobe', 'planet', 'blend', 'lowpoly', 'cartography', 'astrography', 'furniture', 'geography', 'map', 'mapping']","['https://www.turbosquid.com/Search/3D-Models/globe', 'https://www.turbosquid.com/Search/3D-Models/tutorial', 'https://www.turbosquid.com/Search/3D-Models/mars', 'https://www.turbosquid.com/Search/3D-Models/3dglobe', 'https://www.turbosquid.com/Search/3D-Models/planet', 'https://www.turbosquid.com/Search/3D-Models/blend', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/cartography', 'https://www.turbosquid.com/Search/3D-Models/astrography', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/geography', 'https://www.turbosquid.com/Search/3D-Models/map', 'https://www.turbosquid.com/Search/3D-Models/mapping']" +Lowpoly sawed-off shotgun,Just a Simple sawed-off shotgun i designed in order to use in a game i'm developing. It's rigged so you can easily create your reload animation.Really hope you'll like it...If you like it please rate it =)=)=),Nellecter,Free, - All Extended Uses,2019-07-06,"['OBJ ', 'Other ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/shotgun']","['lowpoly', 'low', 'poly', 'gun', 'rifle', 'western', 'weapon', 'free', 'mobile', 'sawed-off', 'shotgun']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/western', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/mobile', 'https://www.turbosquid.com/Search/3D-Models/sawed-off', 'https://www.turbosquid.com/Search/3D-Models/shotgun']" +Free models,Some free stuff.Only ztl file included.Zbrush Version 2019.1.2,niyoo,Free, - All Extended Uses,2019-07-06,Unknown,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures']","['characters', 'female', 'anatomy', 'torso', 'head', 'face', 'people', 'creatures', 'free', 'zbrush', 'sculpting', 'ztl']","['https://www.turbosquid.com/Search/3D-Models/characters', 'https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/torso', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/face', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/creatures', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/sculpting', 'https://www.turbosquid.com/Search/3D-Models/ztl']" +Creature head,"Model is including head, eyes and ear rings. Free to use.Hope you like it.Uzay.Instagram: caliskanuzayartArtstation: caliskanuzay",caliskanuzay,Free, - All Extended Uses,2019-07-05,Unknown,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures']","['creature', 'head', 'alien', 'cute', 'animal', 'monster', 'eyes', 'green', 'baby', 'character', 'cartoon']","['https://www.turbosquid.com/Search/3D-Models/creature', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/alien', 'https://www.turbosquid.com/Search/3D-Models/cute', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/eyes', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/baby', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/cartoon']" +Wooden chair ,"Low Poly Wooden Chair---------------------------------Texture 2048*2048PBR_Metal_Rough_Textures( BaseColor,Metallic,Normal,Roughness)PBR _SpecGloss_Textures( Diffuse,Specular,Normal,Glossiness)Vray_Textures(Diffuse,Glossiness,ior,Normal,Reflection)---------------------------------Rendered in vray next---------------------------------Units: CM---------------------------------File Formats::3dsMax_20203dsMax_2018FBXOBJ---------------------------------",moARTy,Free, - All Extended Uses,2019-07-05,"['FBX ', 'OBJ ']","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['chair', 'wooden', 'gameready', 'pbr', 'furniture', 'lowpoly', 'vray']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/vray']" +Dragon jaw portal ,"A model I made a while back in Sculptris that can be used as a portal or some other element to add interest to your scene. Model is available in various formats. Textures are available in .png and .jpeg and include Diffuse, Normal and Spec maps.",wernie,Free, - All Extended Uses,2019-07-05,"['3D Studio', 'Collada ', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'vehicles', 'spacecraft', 'science fiction spacecraft', 'stargate']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/science-fiction-spacecraft', 'https://www.turbosquid.com/3d-model/stargate']","['Rock', 'Dragon', 'Fantasy', 'Portal', 'Lava', 'Dark', 'Game']","['https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/dragon', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/portal', 'https://www.turbosquid.com/Search/3D-Models/lava', 'https://www.turbosquid.com/Search/3D-Models/dark', 'https://www.turbosquid.com/Search/3D-Models/game']" +French style queen size metal bars bed free ,"This is an Elegant French style Queen size bed with ancient metal bars and its 2 bedside tables. It has been made with Cinema4d R15. So 3DS, OBJ and FBX formats are just exports from the c4d software without visualization, then you may have to revamp / remap textures.All objects are separate (and primitive-based for c4d users), so you can modify / move them around as needed. Materials are included.",artsnbytes,Free, - All Extended Uses,2019-07-03,"['Other ', '3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'furnishings', 'bed', 'bedroom set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bed', 'https://www.turbosquid.com/3d-model/bedroom-set']","['furniture', 'room', 'indoors', 'table', 'interior', 'bedroom', 'bed', 'queenside', 'kingsize', 'double', 'hotel', 'sleep', 'rest', 'apartment', 'condominium', 'lodge', 'French', 'style']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/indoors', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/queenside', 'https://www.turbosquid.com/Search/3D-Models/kingsize', 'https://www.turbosquid.com/Search/3D-Models/double', 'https://www.turbosquid.com/Search/3D-Models/hotel', 'https://www.turbosquid.com/Search/3D-Models/sleep', 'https://www.turbosquid.com/Search/3D-Models/rest', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/condominium', 'https://www.turbosquid.com/Search/3D-Models/lodge', 'https://www.turbosquid.com/Search/3D-Models/french', 'https://www.turbosquid.com/Search/3D-Models/style']" +Ka-bar army combat knife ,"Hi there, This asset contains AAA-quality KA-BAR knife model. The package provides with 2 variants of model: - HighPoly for AAA computer projects - LowPoly for small mobile gamesI did it so you'll be able to choose the one you need for your project. Besides, you can use it in any commercial purpose!Main features:- Game ready Unity prefab for both High/Low poly model- Realistic textures for blade & handle- 100% accurate scale & overall dimensions - Perfect polycount solution- Exact Ka-Bar design",andriybobchuk,Free, - All Extended Uses,2019-07-03,Unknown,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'combat knife', 'ka-bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/combat-knife', 'https://www.turbosquid.com/3d-model/ka-bar']","['knife', 'ka-bar', 'combat', 'war', 'apocalypse', 'army', 'bladed', 'weapon', 'conflict', 'warfare']","['https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/ka-bar', 'https://www.turbosquid.com/Search/3D-Models/combat', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/apocalypse', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/bladed', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/conflict', 'https://www.turbosquid.com/Search/3D-Models/warfare']" +Cyberpunk flying car delorean ,"High Quality Cyberpunk Flying DeLorean!Features:- Native and Optimized for Max 2017.- Maya conversion.- Clean FBX and OBJ interchange.- Clean topology.- Main Body Unwrapped with 4096x4096 map.- Clean naming (for meshes, textures, shaders).Notes:- Rendering Setting and Lightning not included.",Chaosmonger Studio,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-03,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'vehicles', 'spacecraft', 'flying car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/flying-car']","['cyberpunk', 'car', 'flying', 'scifi', 'sci', 'fi', 'delorean', 'cars', 'led', 'engines', 'futuristic', 'future', 'science', 'fiction', 'vehicle', 'fly', 'antigravity', 'cyber', 'tech', 'concept', 'design']","['https://www.turbosquid.com/Search/3D-Models/cyberpunk', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/flying', 'https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/delorean', 'https://www.turbosquid.com/Search/3D-Models/cars', 'https://www.turbosquid.com/Search/3D-Models/led', 'https://www.turbosquid.com/Search/3D-Models/engines', 'https://www.turbosquid.com/Search/3D-Models/futuristic', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/fiction', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/fly', 'https://www.turbosquid.com/Search/3D-Models/antigravity', 'https://www.turbosquid.com/Search/3D-Models/cyber', 'https://www.turbosquid.com/Search/3D-Models/tech', 'https://www.turbosquid.com/Search/3D-Models/concept', 'https://www.turbosquid.com/Search/3D-Models/design']" +Eric rigged 001 ,"Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS:10-15k polycount (retopologized quads)8k high-resolution texturesDiffuse, Normal, Gloss, and Alpha mapsIncludes skinned skeletonReady-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter",Renderpeople,Free, - All Extended Uses,2019-07-03,['FBX 2014'],"['3D Model', 'characters', 'people', 'man', 'businessman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/businessman']","['human', '3d', 'people', 'realistic', 'photorealistic', 'scan', 'architectural', 'visualization', 'renderpeople', 'business', 'man', 'standing', 'white']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photorealistic', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/visualization', 'https://www.turbosquid.com/Search/3D-Models/renderpeople', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/standing', 'https://www.turbosquid.com/Search/3D-Models/white']" +Claudia rigged 002,"Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS: 10-15k polycount (retopologized quads) 8k high-resolution textures Diffuse, Normal, Gloss, and Alpha maps Includes skinned skeleton Ready-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter",Renderpeople,Free, - All Extended Uses,2019-07-03,['FBX 2014'],"['3D Model', 'characters', 'people', 'woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman']","['human', 'people', 'realistic', 'photorealistic', '3d', 'scan', 'architectural', 'visualization', 'renderpeople', 'business', 'men', 'standing', 'white']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photorealistic', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/visualization', 'https://www.turbosquid.com/Search/3D-Models/renderpeople', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/men', 'https://www.turbosquid.com/Search/3D-Models/standing', 'https://www.turbosquid.com/Search/3D-Models/white']" +Carla rigged 001 ,"Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS: 10-15k polycount (retopologized quads) 8k high-resolution textures Diffuse, Normal, Gloss, and Alpha maps Includes skinned skeleton Ready-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter",Renderpeople,Free, - All Extended Uses,2019-07-03,['FBX 2013'],"['3D Model', 'characters', 'people', 'woman', 'businesswoman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman', 'https://www.turbosquid.com/3d-model/businesswoman']","['human', 'people', 'realistic', 'photorealistic', '3d', 'scan', 'architectural', 'visualization', 'renderpeople', 'business', 'women', 'standing']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photorealistic', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/visualization', 'https://www.turbosquid.com/Search/3D-Models/renderpeople', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/women', 'https://www.turbosquid.com/Search/3D-Models/standing']" +Linux penguin ,Linux PenguinLinux Penguin is based on the Linux official logo.It was created with the open source software Blender. The 3D model keeps an UV open mapwith its respective texture. All its pieces are divided as different objects. It has possibility of being articulated through the Blender software.,Jose Torres Adelantado,Free, - Editorial Uses Only,2019-07-02,"['OBJ ', 'Collada ', '3D Studio']","['3D Model', 'nature', 'animal', 'bird', 'aquatic bird', 'penguin', 'cartoon penguin']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/birds', 'https://www.turbosquid.com/3d-model/aquatic-bird', 'https://www.turbosquid.com/3d-model/penguin', 'https://www.turbosquid.com/3d-model/cartoon-penguin']","['penguin', 'penguins', 'animal', 'not', 'flying', 'bird', 'linux', 'pole', 'polar', 'animals', 'south', 'hemisphere', 'ice', 'free', 'without', 'cost']","['https://www.turbosquid.com/Search/3D-Models/penguin', 'https://www.turbosquid.com/Search/3D-Models/penguins', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/not', 'https://www.turbosquid.com/Search/3D-Models/flying', 'https://www.turbosquid.com/Search/3D-Models/bird', 'https://www.turbosquid.com/Search/3D-Models/linux', 'https://www.turbosquid.com/Search/3D-Models/pole', 'https://www.turbosquid.com/Search/3D-Models/polar', 'https://www.turbosquid.com/Search/3D-Models/animals', 'https://www.turbosquid.com/Search/3D-Models/south', 'https://www.turbosquid.com/Search/3D-Models/hemisphere', 'https://www.turbosquid.com/Search/3D-Models/ice', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/without', 'https://www.turbosquid.com/Search/3D-Models/cost']" +Building 001 ,This 3D model resembles to a simple office building. It was made with few polygons and textures. All materials and objects are named properly.,vini3dmodels,Free, - All Extended Uses,2019-07-02,Unknown,"['3D Model', 'architecture', 'building', 'commercial building', 'office building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/office-building']","['office', 'architecture', 'background', 'brick', 'building']","['https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/background', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/building']" +Low poly nature,"A small collection of lowpoly models i've used in a game i developed.Perfect for make a lowpoly nature environment.Material use a single image texure for all the models, perfect if you want to make a really light mobile game in term of size. Hope you'll like it.Nellecter",Nellecter,Free, - All Extended Uses,2019-07-02,"['OBJ 1', '0\n', 'Other 1', '0\n']","['3D Model', 'architecture', 'site components', 'fence', 'wooden fence']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fence', 'https://www.turbosquid.com/3d-model/wooden-fence']","['Lowpoly', 'nature', 'tree', 'rock', 'fence', 'log']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/fence', 'https://www.turbosquid.com/Search/3D-Models/log']" +Modern table ,"Modern TableSuitable for realistic work PBR, real world movies and videos, Interiors and professional cartoons. It includes Materials.It is high poly design, and very high quality Modern Table Design with 83,845 vertices and 73,962 polygons.It's for free..Hope you like it.",3D.ERA,Free, - All Extended Uses,2019-07-02,"['Collada ', 'FBX ', 'OBJ ', 'Other ', 'STL ']","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['modern', 'table', 'furniture', 'realistic', 'room', 'living', 'interior', 'design', 'PBR', 'beautiful', 'tableware', 'bedroom', 'livingroom', 'house', 'houseware', 'elements']","['https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/beautiful', 'https://www.turbosquid.com/Search/3D-Models/tableware', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/livingroom', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/houseware', 'https://www.turbosquid.com/Search/3D-Models/elements']" +Pki ,comics,cilio01,Free, - All Extended Uses,2019-07-01,Unknown,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'bear', 'cartoon bear']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/bears', 'https://www.turbosquid.com/3d-model/cartoon-bear']",['comics'],['https://www.turbosquid.com/Search/3D-Models/comics'] +Glass cup ,Simple hexagonal glass cup,pchekurkov,Free, - All Extended Uses,2019-07-01,Unknown,"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'water glass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/water-glass']","['glass', 'cup', 'equipment', 'houseware', 'kitchen', 'household', 'other']","['https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/equipment', 'https://www.turbosquid.com/Search/3D-Models/houseware', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/other']" +Old antique standing globe,"**Standing Globe High Quality 3D Model ( Ready for Games AR/VR and Visualization)** **MODEL** Standing Globe is made from 1 polygonal objects... Model is not triangulated. Polycount:Poly - 9 528Verts - 9 464**MATERIALS**Materials are prepared for Unity and Marmoset renderers. Scanline and FBX has only basic materials and will NOT render the same as in preview images.OBJ file has no materials, but has UVW coordinates intact.**TEXTURES**Model has 1 sets of high quality PBR textures.Maps - Base_colour, Ambient_occlusion, Roughness,Metallic,Resolution - 2048 x 2048.Format - PNG. Textures are collected in one archive and are delivered in separate file.**SCENE**Model is scaled to accurate real world dimensions.Objects, materials and textures has meaningful and matching names.Transformations has been reset and model is placed at scene origin [0, 0, 0 XYZ].All texture paths are set to relative.**FILE FORMATS** Maya - Standart Renderer 3ds Max - Scanline RendererFBX OBJUnityPacakge**GENERAL**Modeled in Maya.                      Preview images are rendered with Marmoset Toolbag.Images are straight from rendering apps. No post processing were applied.Render scenes are not included.***Please contact me if you have questions or need assistance with the models.",MovART,Free, - All Extended Uses,2019-07-01,"['FBX 2018', 'OBJ 2018']","['3D Model', 'interior design', 'housewares', 'general decor', 'globe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/globe-decor']","['antique', 'old', 'retro', 'wood', 'wooden', 'decorative', 'vintage', 'globe', 'unity', 'unreal', 'game', 'pbr', 'presentation', 'worldmap', 'free', 'stanging', 'earth', 'orbit', 'exploration', 'geography']","['https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/decorative', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/globe', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/presentation', 'https://www.turbosquid.com/Search/3D-Models/worldmap', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/stanging', 'https://www.turbosquid.com/Search/3D-Models/earth', 'https://www.turbosquid.com/Search/3D-Models/orbit', 'https://www.turbosquid.com/Search/3D-Models/exploration', 'https://www.turbosquid.com/Search/3D-Models/geography']" +Low poly dungeon scene ,"Just made a little something, you can use it wherever you want! I'd like to see your stuff so do send me where you use it.",zephyrextreme,Free, - All Extended Uses,2019-07-01,['FBX '],"['3D Model', 'interior design', 'interior', 'industrial spaces', 'dungeon']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/industrial-spaces', 'https://www.turbosquid.com/3d-model/dungeon']","['low', 'poly', 'dungeon', 'blender', '3d', 'free', 'download']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/dungeon', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/download']" +Hot dog g06 ,Created with BlenderTexture Formats : 512 x 512File Formats : FBX / OBJ,OHOW,Free, - All Extended Uses,2019-06-30,"['FBX ', 'OBJ 1', '0\n', 'PNG 1', '0\n']","['3D Model', 'food and drink', 'food', 'snack food and fast food', 'hot dog']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/snack-food-and-fast-food', 'https://www.turbosquid.com/3d-model/hot-dog']","['hotdog', 'game', 'lowpoly', 'pbr', 'unity', 'unreal', 'food']","['https://www.turbosquid.com/Search/3D-Models/hotdog', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/food']" +Machine gun low poly,Machine gun 3d model,vuoriov4,Free, - All Extended Uses,2019-06-30,"['Other ', 'PNG ', 'OBJ ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'machine gun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/machine-gun']","['machine', 'gun']","['https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/gun']" +Demon of the foundry ,Hi it's Mr.NousagiTo this day I propose a model of Demon of the Foundry for printing :),Mr_Nousagi,Free, - Editorial Uses Only,2019-06-30,['STL '],"['3D Model', 'art', 'sculpture', 'statue', 'statuette', 'figurine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/statuette', 'https://www.turbosquid.com/3d-model/figurine']","['demon', 'monstre', 'monster', 'cratures', 'fantasy', '3dprint', 'statue', 'Jewelry', 'sculpture', 'people', 'portrait', 'baroque', 'gold', 'silver', 'decoration', 'print', 'art', 'nou']","['https://www.turbosquid.com/Search/3D-Models/demon', 'https://www.turbosquid.com/Search/3D-Models/monstre', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/cratures', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/3dprint', 'https://www.turbosquid.com/Search/3D-Models/statue', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/portrait', 'https://www.turbosquid.com/Search/3D-Models/baroque', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/nou']" +House destroyed,"This is a little House, that I made for one of my Games. I hope somebody finds it useful, enjoy!",InsectOnWorx,Free, - All Extended Uses,2019-06-29,"['3D Studio', '1\n']","['3D Model', 'architecture', 'building', 'destroyed building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/destroyed-building']","['House', 'Destroyed', 'Little', 'Wall', 'Designer']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/destroyed', 'https://www.turbosquid.com/Search/3D-Models/little', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/designer']" +Flat screen television,If you like the model please leave a rating and let me know what you did and/or did not like about it.Thank you for downloading! I hope you enjoy.,shara_d,Free, - All Extended Uses,2019-06-29,"['FBX ', 'OBJ ']","['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/flatscreen-television']","['television', '3DModel', 'Cheap', 'flatscreen', 'materials', 'unwrapped', 'electronics', 'video', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/3dmodel', 'https://www.turbosquid.com/Search/3D-Models/cheap', 'https://www.turbosquid.com/Search/3D-Models/flatscreen', 'https://www.turbosquid.com/Search/3D-Models/materials', 'https://www.turbosquid.com/Search/3D-Models/unwrapped', 'https://www.turbosquid.com/Search/3D-Models/electronics', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Surveyor,Mesh : 1Textures : 0Polygons : 860 Vertex : 1167,AdrienJ,Free, - All Extended Uses,2019-06-29,Unknown,"['3D Model', 'industrial', 'tools', 'forestry tools', 'survey level']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/forestry-tools', 'https://www.turbosquid.com/3d-model/survey-level']","['Surveyor', 'construction', 'building', 'architecture']","['https://www.turbosquid.com/Search/3D-Models/surveyor', 'https://www.turbosquid.com/Search/3D-Models/construction', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/architecture']" +Old anvil (low poly),Game ready low poly 3D model of the anvil.512x512 normal map1024x1024 albedo,wther,Free, - All Extended Uses,2019-06-29,"['FBX ', 'PNG ']","['3D Model', 'industrial', 'tools', 'industrial tools', 'anvil']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/industrial-tools', 'https://www.turbosquid.com/3d-model/anvil']","['anvil', 'iron', 'smith', 'metalwork', 'forge']","['https://www.turbosquid.com/Search/3D-Models/anvil', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/smith', 'https://www.turbosquid.com/Search/3D-Models/metalwork', 'https://www.turbosquid.com/Search/3D-Models/forge']" +Turkish tea glass - rc ,"==============================Turkish Tea Glass - RC (Game Ready)All models have fully textured and was originally modeled in 3ds Max 2014Nice, High resolution!! 2048x2048 px (png 16) textures==============================Features:---- Each Model in folder separately , you can use each of them one by one* _ ( thumbnail is for show the set)-Low polygonal models, correctly scaled for an accurate representation of the original object.-Easily subdividable for more realism. It depends on you-Models resolutions are optimized for polygon efficiency.-No cleaning up necessary just drop your models into the scene and start rendering.-No special plugin needed to open scene.-Models does not include any backgrounds or scenes-All unwrapped UV s are non-overlapping-No lights or HDRI mapping-Display Unit Scale = Centimeters (cm)==============================Game Ready ( Unity or Unreal Engine ect. )MAPS INCLUDEDPBRBase ColorHeightMetallicNormalRoughnessUnityAlbedoMetallic SmoothnessNormalUnreal EngineBase ColorNormalOcclusion Roughness Metallic==============================File Formats:3ds Max 2014FBXOBJ (Multi Format)ColladaTextures (2048X2048 png)===============================Warning: Depending on which software package you are using, the exchange formats (.obj, .3ds and .fbx) may not match the preview images exactly. Due to the nature of these formats, there may be some textures that have to be loaded by hand and possibly triangulated geometry.==============================Rendered in Marmoset Toolbagand you can notice difference on thumbnails , because rendered in several different light setup and sceneThanks!Also check out my other models",RcAnimationStudios,Free, - All Extended Uses,2019-06-28,"['3D Studio', 'FBX ', 'Other ', 'OBJ ', 'Collada ', 'STL ']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup', 'teacup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup', 'https://www.turbosquid.com/3d-model/teacup']","['tea', 'glass', 'turkish', 'low', 'poly', 'game', 'ready', 'free', 'metal', 'traditional', 'drink', 'hot', 'unity', 'unreal', 'kitchen', 'table', 'spoon', 'home', '3d', 'pbr', 'vray']","['https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/turkish', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/hot', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/spoon', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/vray']" +Water bottle,The water bottle is free to use for whatever you need.If you have any questions contact support,Joshua Kolby,Free, - All Extended Uses,2019-06-27,"['FBX ', 'OBJ ', 'STL ', 'Other ']","['3D Model', 'food and drink', 'food container', 'bottle', 'water bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food-container', 'https://www.turbosquid.com/3d-model/bottle', 'https://www.turbosquid.com/3d-model/water-bottle']","['water', 'bottle', 'metal', 'blender']","['https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/blender']" +Motorola one vision bronze gradient and sapphire gradient ,"Detailed High definition model of Motorola One Vision Bronze gradient And Sapphire gradient.The main format is 3ds max 2011.max, also available in many formats.And click on my username ES_3D And See More Quality Models And Collections .Available in the following file formats:- 3ds Max with mental ray materials (.max)- 3ds Max with V-Ray materials (.max)- 3ds Max with Scanline materials (.max)- 3D Studio (.3ds)- FBX (.fbx)- Geometry: 3ds Max version (For Each)- In formats 3ds Max 2011 , 3ds , OBJ, FBX , VMRL , Mental ray, Default Scanline Renderer, - model exported to standard materials (textures), not contain V-Ray shaders.In these formats, shaders need to be edited for the new studio for the final rendering.- High quality textures,and high resolution renders.- fbx formats contains medium high-poly.- 3ds and obj format comes from low poly.- Every part of the model is named properly- Model is placed to 0,0,0 scene coordinates.- 3ds Max 2011 and all higher versions.- all textures included separately for all formats into each zipped folder.- Other formats may vary slightly depending on your software.- You can make the poly count higher by the MeshSmooth and TurboSmooth level.- Includes V-Ray materials and textures only in 3ds Max format.- A file without V-Ray shader is included with standard materials.- The .3ds and .obj formats are geometry with texture mapping coordinates. No materials attached.- Textures format JPEG.- No object missing,- 3ds Max files included Standard materials and V-Ray materials.- This 3d model objects have the correct names and stripped the texture paths.- NOTE: V-Ray is required for the V-Ray 3ds Max scene and Studio setup is not included.- I hope you will like all my products. Thanks for buying",ES_3D,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-27,"['3D Studio', '2011\n', 'FBX 2011', 'OBJ 2011', 'VRML 2011']","['3D Model', 'technology', 'phone', 'cellphone', 'smartphone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/phone', 'https://www.turbosquid.com/3d-model/cellphone', 'https://www.turbosquid.com/3d-model/smartphone']","['3d', 'model', '3ds', 'max', 'Motorola', 'One', 'Vision', 'Bronze', 'And', 'Sapphire', 'gradient', 'electronic', 'phone', 'cellular', 'computer', 'pda', 'andriod', 'best', 'top', 'rated', 'vray', 'studio']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/motorola', 'https://www.turbosquid.com/Search/3D-Models/one', 'https://www.turbosquid.com/Search/3D-Models/vision', 'https://www.turbosquid.com/Search/3D-Models/bronze', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/sapphire', 'https://www.turbosquid.com/Search/3D-Models/gradient', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/phone', 'https://www.turbosquid.com/Search/3D-Models/cellular', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pda', 'https://www.turbosquid.com/Search/3D-Models/andriod', 'https://www.turbosquid.com/Search/3D-Models/best', 'https://www.turbosquid.com/Search/3D-Models/top', 'https://www.turbosquid.com/Search/3D-Models/rated', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/studio']" +Ak-47 ,"3ds Max 20113ds max 2014FBXOBJTexture size for body -4096x4096 (Albedo, Occlusion, Normal, Metalness and Roughness)The main and supporting renders are done using Marmoset 3.0",Maga Batukaev,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-27,"['3D Studio', '2014\n']","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'automatic rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/automatic-rifle']","['Riffle', 'AK', '74', 'AKS', '74M', 'AKM', 'kalashnikov', 'machinegun', 'gun', 'weapon', 'Russian', 'army', 'automatic', 'carbine', 'firearm', 'soviet', 'terrorist']","['https://www.turbosquid.com/Search/3D-Models/riffle', 'https://www.turbosquid.com/Search/3D-Models/ak', 'https://www.turbosquid.com/Search/3D-Models/74', 'https://www.turbosquid.com/Search/3D-Models/aks', 'https://www.turbosquid.com/Search/3D-Models/74m', 'https://www.turbosquid.com/Search/3D-Models/akm', 'https://www.turbosquid.com/Search/3D-Models/kalashnikov', 'https://www.turbosquid.com/Search/3D-Models/machinegun', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/russian', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/automatic', 'https://www.turbosquid.com/Search/3D-Models/carbine', 'https://www.turbosquid.com/Search/3D-Models/firearm', 'https://www.turbosquid.com/Search/3D-Models/soviet', 'https://www.turbosquid.com/Search/3D-Models/terrorist']" +Fence and gate ,The Fence and Gate is good for games and simple architecture scenes.You can download the fence and gate separate if you need to.If you have any questions contact support.,Joshua Kolby,Free, - All Extended Uses,2019-06-27,"['Other ', 'FBX ', 'OBJ ', 'STL ']","['3D Model', 'architecture', 'site components', 'fence', 'wrought iron fence']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fence', 'https://www.turbosquid.com/3d-model/wrought-iron-fence']","['fence', 'gate', 'blender', 'architecture', 'house', 'outside', 'nature']","['https://www.turbosquid.com/Search/3D-Models/fence', 'https://www.turbosquid.com/Search/3D-Models/gate', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/outside', 'https://www.turbosquid.com/Search/3D-Models/nature']" +Clarinet ,Clarinet- editable in blender- free to use in any sceneIf you have any questions contact support,Joshua Kolby,Free, - All Extended Uses,2019-06-27,"['FBX ', 'OBJ ', 'STL ']","['3D Model', 'music', 'woodwind', 'clarinet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/musical-instrument', 'https://www.turbosquid.com/3d-model/woodwind', 'https://www.turbosquid.com/3d-model/clarinet']","['clarinet', 'musical', 'instrument', 'blender', 'woodwind', 'reed']","['https://www.turbosquid.com/Search/3D-Models/clarinet', 'https://www.turbosquid.com/Search/3D-Models/musical', 'https://www.turbosquid.com/Search/3D-Models/instrument', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/woodwind', 'https://www.turbosquid.com/Search/3D-Models/reed']" +Coffee maker ,"Simple Coffee Maker-Cord and Cordless versions, download your preference.-Cord only editable in blender. If not using blender you probably want to download a NoCord version.-Game-ready. Low polygon count so it doesn't lag games.-Free to useIf you have any questions contact support.",Joshua Kolby,Free, - All Extended Uses,2019-06-26,"['FBX ', 'OBJ ', 'STL ']","['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'coffee maker']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/coffee-maker']","['coffee', 'maker', 'simple', 'lowpoly', 'cup', 'pot', 'blender', 'model']","['https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/maker', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/model']" +Old wood chair ,"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support.",Marc Mons,Free, - All Extended Uses,2019-06-26,"['FBX 2016', 'OBJ 2016']","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['chair', 'bench', 'cartoon', 'art', 'videogame', 'town', 'city', 'eat', 'granite', 'stone', 'architecture', 'garden', 'decoration', 'toon', 'park', 'unity3d', 'seat', '3d', 'maya', 'obj', 'fbx', 'free', 'freechair']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/bench', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/videogame', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/eat', 'https://www.turbosquid.com/Search/3D-Models/granite', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/unity3d', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/freechair']" +Falling - male anatomy ,"Hi, This is the anatomy project I did when learning at DauPhaiGiaiPhau References are from Bodiesinmotion. Files include: - .obj files & textures. - Substance painter files. - Maya file with Redshift rendering setup. - Zbrush file with subdivisions. Free to download and use. Cheers, Truong Cg Artist",cvbtruong,Free, - All Extended Uses,2019-06-26,"['OBJ ', 'Other ']","['3D Model', 'art', 'sculpture', 'statue']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue']","['male', 'sculpture', 'anatomy', 'statue', 'classical', 'man', 'sculpt', 'abstract', 'anatomical']","['https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/statue', 'https://www.turbosquid.com/Search/3D-Models/classical', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/sculpt', 'https://www.turbosquid.com/Search/3D-Models/abstract', 'https://www.turbosquid.com/Search/3D-Models/anatomical']" +Lowpoly old car ,"This car is free to use in games and scenes, it is also very easy to edit the model to your liking. It is game ready for engines such as unity or unreal.",Joshua Kolby,Free, - All Extended Uses,2019-06-25,"['FBX 1', '0\n', 'OBJ 1', '0\n', 'STL 1', '0\n']","['3D Model', 'vehicles', 'car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car']","['Lowpoly', 'Car', 'Old', 'Blender']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/blender']" +Gas cylinder,3d model of a gas cylinder,rahulwarrier96,Free, - All Extended Uses,2019-06-25,['FBX '],"['3D Model', 'industrial', 'industrial container', 'fuel container', 'gas cylinder', 'home propane tank']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/fuel-container', 'https://www.turbosquid.com/3d-model/gas-cylinder', 'https://www.turbosquid.com/3d-model/home-propane-tank']","['gas', 'cylinder']","['https://www.turbosquid.com/Search/3D-Models/gas', 'https://www.turbosquid.com/Search/3D-Models/cylinder']" +Submarines of the project 671,The submarines of the project 671 'Yorsh' - a series of Soviet nuclear torpedo submarines.27911 Vertices27824 Polygons- forms and proportions of The 3D model most similar to the real object- detailed enough for close-up renders,CoFate,Free, - All Extended Uses,2019-06-25,"['FBX ', '3D Studio']","['3D Model', 'vehicles', 'vessel', 'military vessel', 'submarine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/military-vessel', 'https://www.turbosquid.com/3d-model/submarine']","['of', 'the', 'project', '671', 'Submarines']","['https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/project', 'https://www.turbosquid.com/Search/3D-Models/671', 'https://www.turbosquid.com/Search/3D-Models/submarines']" +Free ghost ,"Hello friends this is a free ghost model. I have got some premium quality models in my portfolio So, feel free to checkout my other models as well. Feel free to use this product in your projects and do not forget to provide your valuable feedback.-----------------| General Features |----------------- Relative texture paths- Subdividable and clean geometry- Real world scale- Units: cm- Comes with PBR textures- Completely UV mapped & UVs unwrapped- Native scene with all Vray settings- Model is fully textured with all materials applied.- Model does not include lights and cameras- Faces   = 4234 (subdivison level 0) & 16936 (subdivison level 1)- Vertices=4296 (subdivison level 0) & 17061 (subdivison level 1)-----------------| Textures |--------------Native file has 3 textures of 4096x4096 and Texture sets are also available:- PBR (Metalness)- PBR (Specular)- PNG Displacement Map-----------------| Requirements |----------------- Ghost-MB (V-ray).zip requires V-Ray 2.39- Rest of the files do not require any third party pluginIf you liked the product then dont forget to check out other models in my portfolio and provide your valuable feed back",A_Akhtar,Free, - All Extended Uses,2019-06-25,"['FBX ', 'OBJ ']","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'ghost']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/ghoul']","['free', 'ghost', '3d', 'scary', 'funny', 'carton', 'cartoonish', 'cloth', 'horror', 'phantom', 'fear', 'flying']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/ghost', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scary', 'https://www.turbosquid.com/Search/3D-Models/funny', 'https://www.turbosquid.com/Search/3D-Models/carton', 'https://www.turbosquid.com/Search/3D-Models/cartoonish', 'https://www.turbosquid.com/Search/3D-Models/cloth', 'https://www.turbosquid.com/Search/3D-Models/horror', 'https://www.turbosquid.com/Search/3D-Models/phantom', 'https://www.turbosquid.com/Search/3D-Models/fear', 'https://www.turbosquid.com/Search/3D-Models/flying']" +Low poly fire pit,Low poly fire pit made in Blender 2.8All of the lighting is baked into the texture.,Vertici,Free, - All Extended Uses,2019-06-24,Unknown,"['3D Model', 'architecture', 'site components', 'fireplace', 'fire pit']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fireplace', 'https://www.turbosquid.com/3d-model/fire-pit']","['Fire', 'campfire', 'camp', 'roast', 'pit']","['https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/campfire', 'https://www.turbosquid.com/Search/3D-Models/camp', 'https://www.turbosquid.com/Search/3D-Models/roast', 'https://www.turbosquid.com/Search/3D-Models/pit']" +Sony playstation 4 low poly free ,Like it if you liked the model. Thank you. Features:                Low poly model                Optimized for the highest performance                Colors can be easily modified(Last Image for Example)                Original model optimized for Cycles Blender                Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview),cesarfrias31,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-24,"['Other ', 'FBX ']","['3D Model', 'technology', 'video devices', 'video games', 'game console']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/video-games', 'https://www.turbosquid.com/3d-model/game-console']","['playstation', 'play', 'ps4', 'video-game', 'video', 'game', 'ps4controller', 'controller', 'sony', 'playstation4', 'console', 'videoconsole', 'blender']","['https://www.turbosquid.com/Search/3D-Models/playstation', 'https://www.turbosquid.com/Search/3D-Models/play', 'https://www.turbosquid.com/Search/3D-Models/ps4', 'https://www.turbosquid.com/Search/3D-Models/video-game', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ps4controller', 'https://www.turbosquid.com/Search/3D-Models/controller', 'https://www.turbosquid.com/Search/3D-Models/sony', 'https://www.turbosquid.com/Search/3D-Models/playstation4', 'https://www.turbosquid.com/Search/3D-Models/console', 'https://www.turbosquid.com/Search/3D-Models/videoconsole', 'https://www.turbosquid.com/Search/3D-Models/blender']" +Hand cartoon,"Simples Hand - Rig - Cartoon style, All Free",Roger William,Free, - All Extended Uses,2019-06-22,Unknown,"['3D Model', 'science', 'anatomy', 'superficial anatomy', 'arms', 'hand', 'cartoon hand']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/superficial-anatomy', 'https://www.turbosquid.com/3d-model/arms', 'https://www.turbosquid.com/3d-model/hand', 'https://www.turbosquid.com/3d-model/cartoon-hand']","['Hand', 'cartoon', 'rig']","['https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/rig']" +School chair and desk ,"3D School Chair and Desk modelAVAILABLE FILE FORMATS:- FBX- OBJ- DAE- STLThese are quick models I made for BlenderFiftyTwo challenge. I decided to share it with everyone for free, since the poly count isn't as low as it should be. It has 3,869 Verticis and 2,838 Faces. Wood Textures are included! Enjoy!",Shermadini,Free, - All Extended Uses,2019-06-24,"['Collada ', 'FBX ', 'OBJ ', 'STL ', 'Other Textures']","['3D Model', 'furnishings', 'desk', 'school desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/school-desk']","['3d', 'wood', 'wooden', 'school', 'chair', 'desk', 'red', 'table', 'metal', 'furniture', 'interior', 'children', 'kids', 'other']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/school', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/red', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/children', 'https://www.turbosquid.com/Search/3D-Models/kids', 'https://www.turbosquid.com/Search/3D-Models/other']" +Grail ,"This is a Holy Grail from Christian Mythology. Used to hold Jesus' blood at the crucifixion and used at the last supper, perfect for religious and medieval themes.Contains 5 PBR 2K Textures.Base ColorHeightmapMetallicNormalRoughness14,590 Triangles7,431 VerticesNo N-Gons",Reddler,Free, - All Extended Uses,2019-06-23,"['OBJ ', 'FBX ', 'Other ']","['3D Model', 'symbols', 'religious objects', 'holy grail']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes', 'https://www.turbosquid.com/3d-model/religious-objects', 'https://www.turbosquid.com/3d-model/holy-grail']","['grail', 'holy', 'jesus', 'christ', 'christianity', 'christian', 'jew', 'jewish', 'judaism', 'catholic', 'moses', 'solomon', 'cup', 'drink', 'sacred', 'blood', 'last', 'supper', 'medieval', 'wine', 'goblet']","['https://www.turbosquid.com/Search/3D-Models/grail', 'https://www.turbosquid.com/Search/3D-Models/holy', 'https://www.turbosquid.com/Search/3D-Models/jesus', 'https://www.turbosquid.com/Search/3D-Models/christ', 'https://www.turbosquid.com/Search/3D-Models/christianity', 'https://www.turbosquid.com/Search/3D-Models/christian', 'https://www.turbosquid.com/Search/3D-Models/jew', 'https://www.turbosquid.com/Search/3D-Models/jewish', 'https://www.turbosquid.com/Search/3D-Models/judaism', 'https://www.turbosquid.com/Search/3D-Models/catholic', 'https://www.turbosquid.com/Search/3D-Models/moses', 'https://www.turbosquid.com/Search/3D-Models/solomon', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/sacred', 'https://www.turbosquid.com/Search/3D-Models/blood', 'https://www.turbosquid.com/Search/3D-Models/last', 'https://www.turbosquid.com/Search/3D-Models/supper', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/wine', 'https://www.turbosquid.com/Search/3D-Models/goblet']" +Telephone,3D model of landline telephone,rahulwarrier96,Free, - All Extended Uses,2019-06-22,['Other '],"['3D Model', 'technology', 'phone', 'office phone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/phone', 'https://www.turbosquid.com/3d-model/office-phone']","['phone', 'telephone', 'landline']","['https://www.turbosquid.com/Search/3D-Models/phone', 'https://www.turbosquid.com/Search/3D-Models/telephone', 'https://www.turbosquid.com/Search/3D-Models/landline']" +Free foot highpoly ,"Hi guys, check this out. Here is free sample of Foot with high poly 3D model.Available formats: OBJ (highpoly) -ztl (high poly)You can import this foot you like in zbrush and attached to your model, then dynamesh it! Or either way, u can manually add more detail to this foot 3D model as you like.Repacking or selling by other persons is strictly not allowed! Feel free to use this to speed up your process of creation. Thank you!Cheers!",patrickart90,Free, - All Extended Uses,2019-06-22,['OBJ '],"['3D Model', 'science', 'anatomy', 'superficial anatomy', 'legs', 'foot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/superficial-anatomy', 'https://www.turbosquid.com/3d-model/legs', 'https://www.turbosquid.com/3d-model/foot']","['foot', 'feet', 'leg', 'human', 'body', 'male', 'female', 'realistic', 'shape', 'anatomy', 'highpoly', 'sculpt', 'character', '3D', 'toes', 'toenail', 'heel', 'ankle', 'tool']","['https://www.turbosquid.com/Search/3D-Models/foot', 'https://www.turbosquid.com/Search/3D-Models/feet', 'https://www.turbosquid.com/Search/3D-Models/leg', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/shape', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/highpoly', 'https://www.turbosquid.com/Search/3D-Models/sculpt', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/toes', 'https://www.turbosquid.com/Search/3D-Models/toenail', 'https://www.turbosquid.com/Search/3D-Models/heel', 'https://www.turbosquid.com/Search/3D-Models/ankle', 'https://www.turbosquid.com/Search/3D-Models/tool']" +Fat tony ,"Fat Tony base mesh.File formats: .fbx, .obj, .stlGeometry: 914566 triangles, 457309 vertices",Zerg3d,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-21,"['OBJ ', 'FBX ', 'STL ']","['3D Model', 'characters', 'people', 'man', 'cartoon man', 'cartoon boss']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/cartoon-man', 'https://www.turbosquid.com/3d-model/cartoon-boss']","['human', 'character', 'anime', 'cartoon', 'man', 'Fat', 'Tony', 'Simpsons', 'mob', 'boss', 'sculptris', 'basemesh']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/anime', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/fat', 'https://www.turbosquid.com/Search/3D-Models/tony', 'https://www.turbosquid.com/Search/3D-Models/simpsons', 'https://www.turbosquid.com/Search/3D-Models/mob', 'https://www.turbosquid.com/Search/3D-Models/boss', 'https://www.turbosquid.com/Search/3D-Models/sculptris', 'https://www.turbosquid.com/Search/3D-Models/basemesh']" +House with pool ,A typical L.A house with pool,gabryx82,Free, - All Extended Uses,2019-06-21,Unknown,"['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']","['House', 'Pool']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/pool']" +Decorative sphere ,"Decorative sphere with hexagonal holes.All preview images shown are rendered in Octane Render. Plus some extra screenshots at the end so you can see how the model looks in the UI of some of the exchange formats. Environments and lighting setups are not included, but let me know if you want them aswell. The phone is just for scale, and is not included. But if you want it too, check my profile.    Model Dimensions: 10.6 cm * 10.6 cm * 10.6 cm.    All geometry is subdivision ready (Rendered at Subdiv Lv. 1).    Fully unwrapped, non-overlapping UV's.    8K PBR Textures.    No N-gons, Isolated Vertices, or Complex Poles.    Water tight geometry, you can displace it by the Height map, if you want to print it with the bump detail.Files include:_SPP - Substance Painter Project file. You can edit the textures for all the formats._DAE - Collada exported from Substance Painter. Embeded textures are 4K jpg files (Metal/Rough PBR)._TEX - Textures exported from Substance Painter and used for all the files bellow. Unpack in the root folder. Textures are 4K 8bit png files (Spec/Gloss PBR). All files point to the 4K texture paths by default._TEX_8K - Textures exported from Substance Painter and used for all the files bellow. Unpack in the root folder. Textures are 8K 8bit png files (Spec/Gloss PBR). You dont need to download the 8K textures if you dont need as much detail.Polycount for all files bellow: 14,400._C4D_Octane - Cinema 4D project file with Octane shaders using the pbr textures. This is where all the renders come from. Screenshot attached._ORBX - Octane Standalone Package. Can be unpacked into OCS, or imported._FBX - Autodesk FBX. You may need to re-tweak the shaders abit, depending on the program you open it in, but all pbr textures should maintain link._C4D - Cinema 4D project file with Physical/Standard shaders, using the PBR textures in the texture pack. Screnshot attached._E3D - Ready to use in Video Copilot's Element 3D, plus an After Effects project file with the model already loaded. You may need to re-link the model/textures upon opening it for the first time, so just point to the root folder, where you extracted the pbr texture pack. Screnshot attached._OBJ - OBJ/MTL exported from Cinema 4D._MAX - 3ds Max project file with default shaders, using the PBR textures. May need adjustments.All files are zipped.",outofourlives,Free, - All Extended Uses,2019-06-21,"['3D Studio', 'Other abc', 'Collada ', 'Other e3d', 'FBX 7', '4\n', 'OBJ ', 'Other orbx', 'Other spp', 'STL ', 'Other textures4K', 'Other textures8K']","['3D Model', 'interior design', 'housewares', 'general decor', 'home decor']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/home-decor']","['gold', 'brass', 'decor', 'decoration', 'decorative', 'design', 'element', 'scifi', 'fantasy', 'sculpture', 'bathroom', 'vase', 'office', 'old', 'bedroom', 'art', 'lamp', 'pendant', 'jewel', 'props']","['https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/decorative', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/element', 'https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/bathroom', 'https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/pendant', 'https://www.turbosquid.com/Search/3D-Models/jewel', 'https://www.turbosquid.com/Search/3D-Models/props']" +Heart pendant with beads ,"Indian Style Heart pendant for wedding and Casual use. Preferred Metal: Gold and silver. Gemsize: 1.85mm Thickness: 1.00mmPictures Contains Model Weight If you Want to customize this model before purchasing, Increasing or decreasing Thickness andSize of the piece. Please contact me. i will be happy to obliged.*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review",KhatriCad,Free, - All Extended Uses,2019-06-21,"['STL ', 'FBX ', 'OBJ ']","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'necklace', 'pendant necklace', 'heart necklace']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/necklace', 'https://www.turbosquid.com/3d-model/pendant-necklace', 'https://www.turbosquid.com/3d-model/heart-necklace']","['3d', 'model', 'fashion', 'beauty', 'apparel', 'jewelry', 'stl', 'printable', 'print', 'pendant', 'heart', 'beads', 'gold', 'silver', 'indian', 'necklace', 'love', 'pendants']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/pendant', 'https://www.turbosquid.com/Search/3D-Models/heart', 'https://www.turbosquid.com/Search/3D-Models/beads', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/indian', 'https://www.turbosquid.com/Search/3D-Models/necklace', 'https://www.turbosquid.com/Search/3D-Models/love', 'https://www.turbosquid.com/Search/3D-Models/pendants']" +Barrel ,Single Barrel made on blander and textured on substance painter.verts:336edges:620faces:285Mesh .fbx + uv + material for unreal,iShad,Free, - All Extended Uses,2019-06-21,['FBX '],"['3D Model', 'industrial', 'industrial container', 'barrel', 'steel barrel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/barrel', 'https://www.turbosquid.com/3d-model/steel-barrel']","['Barrel', 'FBX', 'Unreal', 'Blender', 'Substance']","['https://www.turbosquid.com/Search/3D-Models/barrel', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/substance']" +Free sample of 3 ears with high poly and low poly ,"Hi guys, check this out. Here is free sample of 3 ears with high poly and low poly 3D model.Available formats: OBJ (3 separated high poly and low poly ears) -FBX (3 separated high poly and low poly ears)You can import these ears you like in zbrush and attached to your model, then dynamesh it! Or either way, u can manually connect the low poly mesh to your model as well.Repacking or selling by other persons is strictly not allowed!Feel free to use this collection of ears to speed up your process of creation. Thank you!Cheers!",patrickart90,Free, - All Extended Uses,2019-06-21,"['Other obj', 'Other fbx']","['3D Model', 'science', 'anatomy', 'superficial anatomy', 'ear']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/superficial-anatomy', 'https://www.turbosquid.com/3d-model/ear']","['anatomy', 'character', 'human', 'tribe', 'native', 'ears', 'earring', 'girl', 'male', 'realistic', 'facial', 'face', 'head', 'person', '3d', 'game', 'shape', 'creation', 'tool']","['https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/tribe', 'https://www.turbosquid.com/Search/3D-Models/native', 'https://www.turbosquid.com/Search/3D-Models/ears', 'https://www.turbosquid.com/Search/3D-Models/earring', 'https://www.turbosquid.com/Search/3D-Models/girl', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/facial', 'https://www.turbosquid.com/Search/3D-Models/face', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/person', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/shape', 'https://www.turbosquid.com/Search/3D-Models/creation', 'https://www.turbosquid.com/Search/3D-Models/tool']" +Waste recycling building ,"GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Waste Recycling Building.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 9 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 11911 polygons- 13725 verticesTEXTURE INFORMATION:-- 7 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 5 JPG file.- 1018x1024 - 1 JPG file.- 1024x1021 - 1 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 11 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included.",arch_3d,Free, - All Extended Uses,2019-06-20,"['3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'architecture', 'building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building']","['waste', 'recycling', 'building', 'recycle', 'block', 'modern', 'house', 'trash', 'apartment', 'brick', 'architecture', 'exterior', 'simple', 'urban', 'city', 'American', 'LA', 'European', 'England']","['https://www.turbosquid.com/Search/3D-Models/waste', 'https://www.turbosquid.com/Search/3D-Models/recycling', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/recycle', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/trash', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/american', 'https://www.turbosquid.com/Search/3D-Models/la', 'https://www.turbosquid.com/Search/3D-Models/european', 'https://www.turbosquid.com/Search/3D-Models/england']" +Hobs collection ,"This is a collection of medium-detailed 3d models of hobs, made using 3ds max, rendered via Corona renderer.Textures are 1024px by wide sideEnvironment/lights setup includedYou can get it for free now! And please, don't forget to check my other productsThanks!",DDD_Artist,Free, - Editorial Uses Only,2019-06-20,"['FBX ', 'OBJ ']","['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'cooktop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/cooktop']","['cooktop', 'ceramic', 'glass', 'induction', 'hob', 'cooker', 'stove', 'heater', 'built-in', 'panel', 'plate', 'surface', 'top', 'zone', 'home', 'kitchen', 'interior', 'appliance', 'appliances', 'cooking', 'cook']","['https://www.turbosquid.com/Search/3D-Models/cooktop', 'https://www.turbosquid.com/Search/3D-Models/ceramic', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/induction', 'https://www.turbosquid.com/Search/3D-Models/hob', 'https://www.turbosquid.com/Search/3D-Models/cooker', 'https://www.turbosquid.com/Search/3D-Models/stove', 'https://www.turbosquid.com/Search/3D-Models/heater', 'https://www.turbosquid.com/Search/3D-Models/built-in', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/surface', 'https://www.turbosquid.com/Search/3D-Models/top', 'https://www.turbosquid.com/Search/3D-Models/zone', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/appliance', 'https://www.turbosquid.com/Search/3D-Models/appliances', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/cook']" +Building 14 ,"GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Building 14.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 8 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 25331 polygons- 33896 verticesTEXTURE INFORMATION:-- 4 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 4 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 9 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included.",arch_3d,Free, - All Extended Uses,2019-06-20,"['3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'architecture', 'building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building']","['building', 'block', 'modern', 'house', 'home', 'apartment', 'brick', 'architecture', 'exterior', 'office', 'simple', 'urban', 'city', 'beach', 'American', 'LA', 'design', 'European', 'England']","['https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/beach', 'https://www.turbosquid.com/Search/3D-Models/american', 'https://www.turbosquid.com/Search/3D-Models/la', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/european', 'https://www.turbosquid.com/Search/3D-Models/england']" +Cartoon character_1,"FREE TO THE END OF THE WEEK !!!Low poly cartoon man model. Attention!!! All movements of the model and additional objects in the form of weapons in the photo are made as an example! Only a character model with bones and no animation will be present in the project!The project includes:- Model of low poly character (vert - 1082 edges -2147 faces - 1078) in format blend,FBX, OBJ.- Textures for the model with a resolution of 2048x2048 pixels in png format.Made UV scan without intersections. The name of the material corresponds to the name of the texture.",Xpro4b,Free, - All Extended Uses,2019-06-20,Unknown,"['3D Model', 'characters', 'people', 'man', 'cartoon man']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/cartoon-man']","['Character', 'low', 'poly', 'with', 'bones', 'game', 'controlled', 'cartoon', 'ready', 'for', 'animation']","['https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/with', 'https://www.turbosquid.com/Search/3D-Models/bones', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/controlled', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/animation']" +Building_1(1) ,"High quality detailed exterior model. Modelled with 3ds Max 2018 and rendered with V-Ray 4.1 V-Ray Lighting, environment, all textures and materials are included.You can use this modern design in games or projects.Because the coating quality is high, rendering may take a long time, but I received the rendering in a short time.In addition, since the modeling is entirely mine, almost all of them are made as poly modeling.Changing the Colors of the Models is very easy.I tried to keep the price cheap.Thanks...",tkarci1,Free, - All Extended Uses,2019-06-20,"['3D Studio', '2018\n', 'FBX 2018', 'Other 2018', 'OBJ 2018']","['3D Model', 'architecture', 'building', 'commercial building', 'office building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/office-building']","['house', 'building', 'vray', '3ds', 'max', 'architehture']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/architehture']" +Sc-fi mixer 01 ,"3D Low Poly Model 'Sc-fi Mixer 01' for Game Engines.This 'Sc-fi Mixer 01' can be used as an element of the environment at your game level, or for other purposes.The model was tested on the game engine UE4.- Model format:1. FBX2. Obj3. Blender",BartalamBane,Free, - All Extended Uses,2019-06-20,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'technology', 'electrical accessories', 'induction coil']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/electrical-accessories', 'https://www.turbosquid.com/3d-model/induction-coil']","['SciFi', 'UE4', 'blender', 'industry', 'technology', 'gamedev', 'lowpoly', 'device', 'electronics', 'future', 'science', 'laboratory', 'cyberpunk', 'leveldesign', 'PBR']","['https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/ue4', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/industry', 'https://www.turbosquid.com/Search/3D-Models/technology', 'https://www.turbosquid.com/Search/3D-Models/gamedev', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/device', 'https://www.turbosquid.com/Search/3D-Models/electronics', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/laboratory', 'https://www.turbosquid.com/Search/3D-Models/cyberpunk', 'https://www.turbosquid.com/Search/3D-Models/leveldesign', 'https://www.turbosquid.com/Search/3D-Models/pbr']" +Gladius ,"This is a high quality low poly ancient Gladius. Modeled in 3ds max and textured in Substance Painter.FBX,MAX, OBJ files are provided.TEXTURES2048 and 2048 resolutions are provided.Base color Height Metallic AO Normal RoughnessUnity3D-Albedo -Normal -MetallicUE4-Base Color -Normal -OcclusionRoughnessMetallic",woxec,Free, - All Extended Uses,2019-06-19,"['OBJ ', 'FBX ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/gladius']","['low', 'poly', 'pbr', 'melee', 'weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/gladius']" +Game-ready spaceship free low-poly ,"I'm giving away this model I've put a big effort on for free, please rate and comment, it would help me a lotPBR Low-poly VR/AR Game-ready 3D model of a spaceshipA Corvette is a small starfighter swith light arms. Due to its high maneuverability it's great in atmoshere-level battlefields.The model is great for game development, VFX, AR/VR and other real-time applications.Works in Unity, Unreal Engine and suchIncludes: .fbx, .obj, .dae, .3ds, .ply",thomas simon mattia,Free, - Editorial Uses Only,2019-06-19,['3D Studio'],"['3D Model', 'vehicles', 'spacecraft', 'science fiction spacecraft', 'space battleship']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/science-fiction-spacecraft', 'https://www.turbosquid.com/3d-model/space-battleship']","['spaceship', 'spacecraft', 'space', 'starfighter', 'starship', 'sci-fi']","['https://www.turbosquid.com/Search/3D-Models/spaceship', 'https://www.turbosquid.com/Search/3D-Models/spacecraft', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/starfighter', 'https://www.turbosquid.com/Search/3D-Models/starship', 'https://www.turbosquid.com/Search/3D-Models/sci-fi']" +Nelson swag leg rectangular dining table ,"Dimensions: 915 x 1370 x 750 mm;2 different table top materials are available.- Lighting setup is not included in the file!- No additional plugin is needed to open the model.- High quality models. Detailed enough for close-up renders.- The models is highly accurate and based on the manufacturers original dimensions and technical data.- In the archive you can find files in the format .max 2011, vray .fbx, .obj, .3ds- Geometry: Polygonal- Polygons: 23,088- Vertices: 23,184- Textures: Yes- Materials: Yes- Rigged: No- Animated: No- UV Mapped: Yes- Unwrapped UVs: Yes, non-overlapping",3Dmitruk,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-19,"['3D Studio', 'FBX 2009', 'OBJ ']","['3D Model', 'furnishings', 'table', 'dining table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table']","['George', 'Nelson', 'Swag', 'desk', 'Scandinavian', 'Furniture', 'Danish', 'wooden', 'mid-century', 'midcentury', 'table', 'dinner', 'traditional', 'trendy', 'walnut', 'minimalism']","['https://www.turbosquid.com/Search/3D-Models/george', 'https://www.turbosquid.com/Search/3D-Models/nelson', 'https://www.turbosquid.com/Search/3D-Models/swag', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/scandinavian', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/danish', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/mid-century', 'https://www.turbosquid.com/Search/3D-Models/midcentury', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/dinner', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/trendy', 'https://www.turbosquid.com/Search/3D-Models/walnut', 'https://www.turbosquid.com/Search/3D-Models/minimalism']" +Nelson swag leg rectangular work table,"Dimensions: 915 x 1370 x 750 mm;2 different table top materials are available.- Lighting setup is not included in the file!- No additional plugin is needed to open the model.- High quality models. Detailed enough for close-up renders.- The models is highly accurate and based on the manufacturers original dimensions and technical data.- In the archive you can find files in the format .max 2011, vray .fbx, .obj, .3ds- Geometry: Polygonal- Polygons: 14,806- Vertices: 14,876- Textures: Yes- Materials: Yes- Rigged: No- Animated: No- UV Mapped: Yes- Unwrapped UVs: Yes, non-overlapping",3Dmitruk,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-19,"['3D Studio', 'FBX 2009', 'OBJ ']","['3D Model', 'furnishings', 'desk', 'writing desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/writing-desk']","['George', 'Nelson', 'Swag', 'desk', 'Scandinavian', 'Furniture', 'Danish', 'wooden', 'mid-century', 'midcentury', 'table', 'traditional', 'walnut', 'work', 'space']","['https://www.turbosquid.com/Search/3D-Models/george', 'https://www.turbosquid.com/Search/3D-Models/nelson', 'https://www.turbosquid.com/Search/3D-Models/swag', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/scandinavian', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/danish', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/mid-century', 'https://www.turbosquid.com/Search/3D-Models/midcentury', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/walnut', 'https://www.turbosquid.com/Search/3D-Models/work', 'https://www.turbosquid.com/Search/3D-Models/space']" +Low poly fantasy dagger ,3D Dagger Game Ready Low Poly ModelPBR Textures 4096x4096 (Seperate for blade and the holder) - Hand Painted. (can be found under supporting items)1. Base color2. Roughness3. Normal4. Metallic5. Height6. EmissiveHigh poly .obj and .fbx file included.A very low poly model consisting of 426 polygons.Tested in Unity.,Blitzerpop,Free, - All Extended Uses,2019-06-18,"['FBX ', 'OBJ ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'fantasy sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/fantasy-sword']","['dagger', 'knife', 'asset', 'lowpoly', 'game', 'enchanted', 'rune', 'water', 'elemental']","['https://www.turbosquid.com/Search/3D-Models/dagger', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/enchanted', 'https://www.turbosquid.com/Search/3D-Models/rune', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/elemental']" +Fantasy turtle sculpture ,Simple Sculpting. Turtle with Dragon head and cave on the back. Sculpting with Autodesk Maya 2018.,Diktas,Free, - All Extended Uses,2019-06-18,"['FBX ', 'OBJ ']","['3D Model', 'art', 'sculpture', 'statue', 'animal statue']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/animal-statue']","['sculpting', 'turtle', 'dragon', 'fantasy', 'animal', 'reptile', 'underwater', '3d', 'model']","['https://www.turbosquid.com/Search/3D-Models/sculpting', 'https://www.turbosquid.com/Search/3D-Models/turtle', 'https://www.turbosquid.com/Search/3D-Models/dragon', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/reptile', 'https://www.turbosquid.com/Search/3D-Models/underwater', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model']" +Mega man star force: wave scanner (redesign),"////////////////////////////////////////////////////////////////////////////////////////////////////////////// This is the second terminal in the mega man starforce series. It is first seen as the terminal of gemini spark in the anime, later it becomes the primary terminal after the wave transer is destroyed. Unfortunately it never made a apeanrence in the second starforce as it used the Star Carrier istead. Takara released a wave scanner handheld game that you cound connect to the NDS and use phsical battle card thru the wave scanner scaning the bar codes, The wave scanner design are inconsitent in the anime so i decided to make a redesign. THEME=REALISM/FUTURISM /+/-//-X+///////////////////////////////////////////////////////////////////////////////////////////////////////////////",Erick Bueno da Silva,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-18,Unknown,"['3D Model', 'technology', 'video devices', 'video games', 'handheld game console']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/video-games', 'https://www.turbosquid.com/3d-model/handheld-game-console']","['Mega', 'Man', 'Star', 'Force', 'Ryuusei', 'no', 'Rockman', 'Wave', 'Scanner']","['https://www.turbosquid.com/Search/3D-Models/mega', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/star', 'https://www.turbosquid.com/Search/3D-Models/force', 'https://www.turbosquid.com/Search/3D-Models/ryuusei', 'https://www.turbosquid.com/Search/3D-Models/no', 'https://www.turbosquid.com/Search/3D-Models/rockman', 'https://www.turbosquid.com/Search/3D-Models/wave', 'https://www.turbosquid.com/Search/3D-Models/scanner']" +Mosque ,"GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Mosque.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 9 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 34967 polygons- 34584 verticesTEXTURE INFORMATION:-- 3 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 3 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 7 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included.",arch_3d,Free, - All Extended Uses,2019-06-17,"['3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'architecture', 'building', 'religious building', 'mosque']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/religious-building', 'https://www.turbosquid.com/3d-model/mosque']","['3d', 'model', 'mosque', 'muslim', 'prayer', 'space', 'holy', 'arab', 'arabian', 'asian', 'building', 'modern', 'brick', 'architecture', 'exterior', 'simple', 'urban', 'city', 'design']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/mosque', 'https://www.turbosquid.com/Search/3D-Models/muslim', 'https://www.turbosquid.com/Search/3D-Models/prayer', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/holy', 'https://www.turbosquid.com/Search/3D-Models/arab', 'https://www.turbosquid.com/Search/3D-Models/arabian', 'https://www.turbosquid.com/Search/3D-Models/asian', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/design']" +Stair,Render VrayH- 3000 mmL- 3700 mmW-4000 mmArchives included:-3d max scene 2016 -3d max scene 2013 -OBJ -FBX -materials -3dsThanks for downloading my models. I will highly appreciate your opinion regarding the quality of my models.,Brombur,Free, - All Extended Uses,2019-06-17,"['Other ', 'Other 2016', '3D Studio', '2016\n', 'FBX ', 'OBJ ']","['3D Model', 'architecture', 'building components', 'stair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/stairs']","['stair', 'vray', 'architecture', 'wood', 'house']","['https://www.turbosquid.com/Search/3D-Models/stair', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/house']" +Stylized girl 2019 free edition ,"With this package, you get all the object files both high and low poly and you get the Zbrush file.",Rodesqa,Free, - All Extended Uses,2019-06-16,['Other '],"['3D Model', 'characters', 'people', 'woman', 'cartoon woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman', 'https://www.turbosquid.com/3d-model/cartoon-woman']","['Stylized', 'Female', 'Girl', 'High', 'poly', 'base', 'lowpoly', '3d', 'blender', 'Zbrush', 'maya', '3dsMax']","['https://www.turbosquid.com/Search/3D-Models/stylized', 'https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/girl', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/base', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/3dsmax']" +Simple stylus/pen ,.blend container material and easily,Minshu,Free, - All Extended Uses,2019-06-16,['FBX '],"['3D Model', 'office', 'office supplies', 'writing instrument', 'pen', 'stylus']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/writing-instrument', 'https://www.turbosquid.com/3d-model/pen', 'https://www.turbosquid.com/3d-model/stylus']","['stylus', 'pen', 'simple', 'apple', 'blender', 'editable', 'cycles', 'render', 'white']","['https://www.turbosquid.com/Search/3D-Models/stylus', 'https://www.turbosquid.com/Search/3D-Models/pen', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/apple', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/editable', 'https://www.turbosquid.com/Search/3D-Models/cycles', 'https://www.turbosquid.com/Search/3D-Models/render', 'https://www.turbosquid.com/Search/3D-Models/white']" +Wooden crate,"Wooden Crate/Box 3D model.AVAILABLE FILE FORMATS: -FBX -OBJ -Collada(DAE) -STLFREE low-poly wooden crate/box. Can be used for renderings with high detail or games. Was tested in Blender 2.8 as well as UE4. Includes Textures like: Albedo, Normal, Roughness, AO, Displacement. Has only 78 Polys and 80 Faces. You can check out more models like this by clicking on my name.IF YOU HAVE ANY PROBLEMS, CONTACT ME.",Shermadini,Free, - All Extended Uses,2019-06-16,"['Other textures', 'Collada ', 'FBX ', 'OBJ ', 'STL ']","['3D Model', 'interior design', 'housewares', 'box', 'wooden box']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/box', 'https://www.turbosquid.com/3d-model/wooden-box']","['wood', 'wooden', 'crate', 'box', 'industrial', 'cargo', 'storage', 'game', 'prop', 'low-poly', 'pbr', 'ue4', 'unity', 'unreal', 'exterior', 'container', 'other']","['https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/cargo', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/prop', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/ue4', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/other']" +Gothic art wall corner design ,this is free model for the all artist you can use this model but you cant sale this model because this is free open model ( you can download this model for practices not for sale )more information go and search on youtube ( toon coofer ),Toon coffer,Free, - All Extended Uses,2019-06-15,['FBX '],"['3D Model', 'interior design', 'finishes', 'molding', 'corner element']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/finishes', 'https://www.turbosquid.com/3d-model/molding', 'https://www.turbosquid.com/3d-model/corner-element']","['ornament', 'VIP', 'Gothic', 'art', 'wall', 'luxury', 'ornaments', 'decor']","['https://www.turbosquid.com/Search/3D-Models/ornament', 'https://www.turbosquid.com/Search/3D-Models/vip', 'https://www.turbosquid.com/Search/3D-Models/gothic', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/luxury', 'https://www.turbosquid.com/Search/3D-Models/ornaments', 'https://www.turbosquid.com/Search/3D-Models/decor']" +Rca plug ,Like it if you liked the model. Thank you. Features:                Low poly model                Optimized for the highest performance                Colors can be easily modified                Original model optimized for Cycles Blender                Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview),cesarfrias31,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-13,"['FBX ', 'Other ']","['3D Model', 'technology', 'electrical accessories', 'a/v connector', 'rca jack']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/electrical-accessories', 'https://www.turbosquid.com/3d-model/av-connector', 'https://www.turbosquid.com/3d-model/rca-jack']","['electronics', 'video', 'audio', 'rca', 'plug', 'tv', 'television', 'conectors']","['https://www.turbosquid.com/Search/3D-Models/electronics', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/audio', 'https://www.turbosquid.com/Search/3D-Models/rca', 'https://www.turbosquid.com/Search/3D-Models/plug', 'https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/conectors']" +Kalinin,"Mikhail Kalinin (November 19, 1875 - June 3, 1946)vertices - 21816 , faces - 43628,1.diff.jpg - 8192x81922.cavity .tiff - 8192x81923.object_normals.tiff - 8192x81924.tangent_normals .tiff - 8192x8192Feel free to leave your opinion in comments.",edikm1,Free, - All Extended Uses,2019-06-13,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'art', 'sculpture', 'statue', 'bust']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/bust']","['Mikhail', 'Kalinin', '1917', 'socialism', 'is', 'equality', 'independence', 'progress']","['https://www.turbosquid.com/Search/3D-Models/mikhail', 'https://www.turbosquid.com/Search/3D-Models/kalinin', 'https://www.turbosquid.com/Search/3D-Models/1917', 'https://www.turbosquid.com/Search/3D-Models/socialism', 'https://www.turbosquid.com/Search/3D-Models/is', 'https://www.turbosquid.com/Search/3D-Models/equality', 'https://www.turbosquid.com/Search/3D-Models/independence', 'https://www.turbosquid.com/Search/3D-Models/progress']" +Atlantic bluefin tuna,"This lowpoly model is using 3dmax 2016 the texture is 1024x1024 .TGAavailable in .FBX, .OBJ, .MAX(this is sample)",mimi3d,Free, - All Extended Uses,2019-06-12,"['FBX ', 'Other ']","['3D Model', 'nature', 'animal', 'sea creatures', 'fish', 'tuna']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/sea-creatures', 'https://www.turbosquid.com/3d-model/fish-animal', 'https://www.turbosquid.com/3d-model/tuna']","['sea', 'ocean', 'marine', 'animal', 'fish', 'atlantic', 'bluefin']","['https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/ocean', 'https://www.turbosquid.com/Search/3D-Models/marine', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/fish', 'https://www.turbosquid.com/Search/3D-Models/atlantic', 'https://www.turbosquid.com/Search/3D-Models/bluefin']" +Centaur ,A centaur that was modeled by baqstudio. I rigged and changed some of the materials a little. All I ask is that you give credit to baqstudio for the model and ByrdRigs for the rig! Enjoy!,ByrdRigs,Free, - Editorial Uses Only,2019-06-12,Unknown,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'centaur']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/centaur']","['Centaur', 'Rigged', 'Male', 'Human', 'Mythology', 'Creatures']","['https://www.turbosquid.com/Search/3D-Models/centaur', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/mythology', 'https://www.turbosquid.com/Search/3D-Models/creatures']" +Canada avro cf-105 (rev) arrow solid assembly model ( free) ,"The Canada Avro CF-105 Arrow Solid Assembly Model is defined by 23 sub assembly modules consisting of 200 part primitives.All of my models are developed specifically for use by conceptual designers, experimenters, educators, students and hobbyists. The models are constructed from scratch employing scaling of publicly released simple 3 view drawings and experienced based assumptions. Although general representation is very good - detail accuracy and accountability can be compromised by this approach",RodgerSaintJohn,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-12,"['Other Step', '203\n', 'Other Sat', '17\n', 'AutoCAD drawing', 'DXF ']","['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter jet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-jet']","['Canada', 'Avro', 'CF105', 'Arrow', 'Aircraft', 'Airplane', 'Structure', 'Aeronautics', 'Aerodynamics', 'Engine', 'Propulsion', 'Interceptor', 'Fighter']","['https://www.turbosquid.com/Search/3D-Models/canada', 'https://www.turbosquid.com/Search/3D-Models/avro', 'https://www.turbosquid.com/Search/3D-Models/cf105', 'https://www.turbosquid.com/Search/3D-Models/arrow', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/airplane', 'https://www.turbosquid.com/Search/3D-Models/structure', 'https://www.turbosquid.com/Search/3D-Models/aeronautics', 'https://www.turbosquid.com/Search/3D-Models/aerodynamics', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/propulsion', 'https://www.turbosquid.com/Search/3D-Models/interceptor', 'https://www.turbosquid.com/Search/3D-Models/fighter']" +Sovremenny warship lod1,"Sovremenny Class Destroyer LOD1 (level of detail model) untextured. Higher detail fully textured versions of this asset are also available, please see TS I.D. 867321 Instructions on how to obtain the textures are included.Part of a huge collection available from ES3DStudios. Many more linked sets available from ES3DStudios in a range of formats. Click 'ES3DStudios' for full range. Renders created with 3ds Max mental ray.Native format is 3DSMax 2014. No 3rd party plugins required. This model is not intended for subdivision. Model built to real-world scale - units used are meters.-----------------",ES3DStudios,Free, - All Extended Uses,2019-06-12,"['3D Studio', 'Collada ', 'FBX ', 'OBJ ']","['3D Model', 'vehicles', 'vessel', 'military vessel', 'destroyer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/military-vessel', 'https://www.turbosquid.com/3d-model/destroyer']","['Sovremenny', 'Warship', 'Game', 'Destroyer', 'Frigate', 'Russian', 'Russia', 'Navy', 'Naval', 'USSR', 'Soviet', 'Battle', 'Fleet', 'Warfare', 'War', 'LOD', 'Nastoychivyy', 'DDG', 'DD', 'Guided', 'Missile', 'Ship']","['https://www.turbosquid.com/Search/3D-Models/sovremenny', 'https://www.turbosquid.com/Search/3D-Models/warship', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/destroyer', 'https://www.turbosquid.com/Search/3D-Models/frigate', 'https://www.turbosquid.com/Search/3D-Models/russian', 'https://www.turbosquid.com/Search/3D-Models/russia', 'https://www.turbosquid.com/Search/3D-Models/navy', 'https://www.turbosquid.com/Search/3D-Models/naval', 'https://www.turbosquid.com/Search/3D-Models/ussr', 'https://www.turbosquid.com/Search/3D-Models/soviet', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/fleet', 'https://www.turbosquid.com/Search/3D-Models/warfare', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/lod', 'https://www.turbosquid.com/Search/3D-Models/nastoychivyy', 'https://www.turbosquid.com/Search/3D-Models/ddg', 'https://www.turbosquid.com/Search/3D-Models/dd', 'https://www.turbosquid.com/Search/3D-Models/guided', 'https://www.turbosquid.com/Search/3D-Models/missile', 'https://www.turbosquid.com/Search/3D-Models/ship']" +Tobias lion maya rig ,Tobias Lion Maya rig.Modeled and textured by Tobias Frey.Rigged by Truong Cg Artist.Available for non-commercial use only. Software: Maya 2014 (or higher). Rigged using Advanced Skeleton.Happy animating!Truong Cg artistps: click on my username for more. Cheers.,cvbtruong,Free, - Editorial Uses Only,2019-06-12,Unknown,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'big cats', 'lion']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/big-cats', 'https://www.turbosquid.com/3d-model/lion']","['lion', 'realistic', 'game', 'unreal', 'engine', 'unity', 'big', 'cat', 'male']","['https://www.turbosquid.com/Search/3D-Models/lion', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/big', 'https://www.turbosquid.com/Search/3D-Models/cat', 'https://www.turbosquid.com/Search/3D-Models/male']" +Mug ,mug normal,Abscay,Free, - All Extended Uses,2019-06-11,"['FBX ', 'OBJ ', 'STL ']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['fbx', 'obj', 'blend']","['https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/blend']" +Tree stump ,"Tree Stump 3D Model. Model recreated from 3D Scan Data and completed in Lightwave 3D and Cinema 4DHigh resolution, fully detailed and textured Tree Stump.Detailed enough for close-up renders. Comes with detailed textures.Originally modelled in Lightwave 3d. Final images rendered with Lightwave. This model has been created to real world scale giving very accurate detail and dimensions.Extreme care has been taken to keep polygon count to a minimum to ease render times. Lightwave and Cinema 4D version comes with scene files with object parented to null object.Main features:* This model is suitable for use in broadcast, high-res, advertising, design visualization etc. * The model is an accurate with the real world size and scale.* Model resolutions are optimized for polygon efficiency* No special plugins needed to open scene.* Created with Lightwave 3dFile formats:* Lightwave.lwo* Cinema 4D .C4D* .obj (Multi Format)Notes:* Lightwave and Cinema 4D scene files are included.* Unit system is set to metric.* Model size 800mm* All textures and materials are included and assigned to their relevant objects* 4 textures are included:-Stump_C .png 4096 x 4096Stump _D .png 4096 x 4096Stump _N .png 4096 x 4096Stump _B .png 8192 x 8192Polycount:* 14789 faces and 14531 vertices* Quads: 13986* Triangles: 803* Points: 14531* Previews rendered in Lightwave 3d* Originally rendered in 2015.3 but is backwards compatible.Interested in other models, just click on my user name to see complete selection.Thank you",Ideas Unlimited,Free, - All Extended Uses,2019-06-11,['OBJ '],"['3D Model', 'nature', 'plants', 'plant elements', 'tree trunk', 'tree stump']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/plant-elements', 'https://www.turbosquid.com/3d-model/trunk', 'https://www.turbosquid.com/3d-model/tree-stump']","['tree', 'stump', 'nature', 'scan', 'scanned', 'realistic', 'wood', 'woods', 'plant', 'old', 'forest', 'backgrounds', 'elements', 'bark', 'trunk', 'ground', 'environment', 'cracked', 'log', 'branch', 'landscape']","['https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/stump', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/scanned', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/woods', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/backgrounds', 'https://www.turbosquid.com/Search/3D-Models/elements', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/trunk', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/cracked', 'https://www.turbosquid.com/Search/3D-Models/log', 'https://www.turbosquid.com/Search/3D-Models/branch', 'https://www.turbosquid.com/Search/3D-Models/landscape']" +Napkin with old napkin ring ,Classical napkin with right.Model is built to real-world scaleUnits used: millimetersModel Dimensions: 210 mm x 330 mm x 85 mm,Diza,Free, - All Extended Uses,2019-06-11,"['OBJ ', 'Other ', 'FBX ', '3D Studio']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'napkin']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/napkin']","['napkin', 'ring', 'blackened', 'silver', 'classical', 'restaurant', 'eating', 'towel', 'dinning', 'set', 'hand', 'serviette', 'accessories', 'vray', 'max', 'detaile']","['https://www.turbosquid.com/Search/3D-Models/napkin', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/blackened', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/classical', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/eating', 'https://www.turbosquid.com/Search/3D-Models/towel', 'https://www.turbosquid.com/Search/3D-Models/dinning', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/serviette', 'https://www.turbosquid.com/Search/3D-Models/accessories', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/detaile']" +Asteroid small ,This is pack of 6 small asteroids for your projectasteroid 1 - 704 facesasteroid 2 - 761 facesasteroid 3 - 700 facesasteroid 4 - 636 facesasteroid 5 - 716 facesasteroid 6 - 856 facesWith 2K color and normal textures,Mykhailo Ohorodnichuk,Free, - All Extended Uses,2019-06-10,Unknown,"['3D Model', 'science', 'astronomy', 'asteroid']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/astronomy', 'https://www.turbosquid.com/3d-model/asteroid']","['3D', 'model', 'Science', 'Astronomy', 'Asteroids', 'SGI', 'Animation', 'Space', 'Meteor', 'Traditional', 'Game', 'art', 'aerolite']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/astronomy', 'https://www.turbosquid.com/Search/3D-Models/asteroids', 'https://www.turbosquid.com/Search/3D-Models/sgi', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/meteor', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/aerolite']" +A monument to the terror in russia ,"vertices - 27661 , faces - 55318,1.diff.jpg - 8192x81922.cavity .tiff - 8192x81923.object_normals.tiff - 8192x81924.tangent_normals .tiff - 8192x8192Feel free to leave your opinion in comments.",edikm1,Free, - All Extended Uses,2019-06-10,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'architecture', 'site components', 'landscape architecture', 'monument']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/monument']","['a', 'monument', 'to', 'the', 'terror', 'Russia', 'suppression', 'of', 'rebellious', 'slaves', 'in', 'Russia']","['https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/monument', 'https://www.turbosquid.com/Search/3D-Models/to', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/terror', 'https://www.turbosquid.com/Search/3D-Models/russia', 'https://www.turbosquid.com/Search/3D-Models/suppression', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/rebellious', 'https://www.turbosquid.com/Search/3D-Models/slaves', 'https://www.turbosquid.com/Search/3D-Models/in', 'https://www.turbosquid.com/Search/3D-Models/russia']" +Simple cup,Model dimension :Length - 10 c.mWidth - 5 c.mThickness - 0.7 c.m,IMANSAHA,Free, - All Extended Uses,2019-06-09,Unknown,"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['Simple', 'look', 'standard', 'cup', 'or', 'coffee', 'mug']","['https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/look', 'https://www.turbosquid.com/Search/3D-Models/standard', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/or', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/mug']" +Knife ,"Simple knife, one of my first project enjoy.",Game mob,Free, - All Extended Uses,2019-06-08,['FBX '],"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'hunting knife']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/hunting-knife']","['free', 'Knife']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/knife']" +Chandelier-gameready ,A game ready chandelier that comes with ready-made textures. I used this for my personal project and I'm willing to give it away to other peoples needs. This took 5 days to make with many details added.,Mimzz,Free, - All Extended Uses,2019-06-08,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp', 'chandelier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp', 'https://www.turbosquid.com/3d-model/chandelier']","['chandelier', 'gameasset']","['https://www.turbosquid.com/Search/3D-Models/chandelier', 'https://www.turbosquid.com/Search/3D-Models/gameasset']" +Marquise ring,"Beautiful Leaf Petals Ring or Marquise shaped ring for gold and silver purpose.Thickness: 1.5mm Ringsize: 18mm Diameter USA ring Size: 8 Gem Size: 1.55 mmPictures Contains Model WeightIf you Want to customize this model before purchasing, Increasing or decreasing Thickness andSize of the piece. Please contact me. i will be happy to obliged.*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review",KhatriCad,Free, - All Extended Uses,2019-06-08,"['STL 5', '0\n', 'OBJ 5', '0\n']","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'gold ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/gold-ring']","['3D', 'Model', 'and', 'beauty', 'apparel', 'jewelry', 'fashion', 'ring', 'sterling', 'STL', 'Printable', 'Print', 'Marquise', 'Rose', 'Petals']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/sterling', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/marquise', 'https://www.turbosquid.com/Search/3D-Models/rose', 'https://www.turbosquid.com/Search/3D-Models/petals']" +Heart shape dual ring,"Heart Shape Dual Engagement ringGemsize: 1.65mm Thickness: 2.2mm (Idle for Gold, Silver and other Metal)i can reduce Thickness if requested.If you Want to customize this model before purchasing like Increasing and decreasing Thickness or Size of the piece. Please contact me. i will happy to obliged*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review",KhatriCad,Free, - All Extended Uses,2019-06-08,"['STL 5', '0\n', 'OBJ 5', '0\n']","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'fashion ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/fashion-ring']","['3D', 'Model', 'and', 'beauty', 'apparel', 'jewelry', 'fashion', 'ring', 'Heart', 'Shaped', 'Wedding', 'STL', 'Printable', 'Print']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/heart', 'https://www.turbosquid.com/Search/3D-Models/shaped', 'https://www.turbosquid.com/Search/3D-Models/wedding', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/print']" +Oval shaped earrings ,Pave Oval Shaped Indian Style Earrings Designed for Gold and Silver casting. Thickess is appropriate for Silver casting. Althrough if request i can change thickness and reduce it if anyone want less Weight Item for Gold.Thickness: 1.0mmGem size: 1.55 and 1.35mm Comes with 2 piecesIf you Want to customize this model before purchasing like Increasing and decreasing Thickness or Size of the piece. Please contact me. i will happy to obliged***All My STLS are Repaired In Appropriate Printing Software Before publish***,KhatriCad,Free, - All Extended Uses,2019-06-08,"['STL 5', '0\n', 'OBJ ']","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'earrings']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/earrings']","['Jewelry', 'Earrings', 'Gold', 'Silver', 'Apparel', 'Indian', '3D', 'model', 'Fashion', 'Engagement', 'Ring', 'Style']","['https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/earrings', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/indian', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/engagement', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/style']" +Simple box ,Just a simple box Its uselessMaybe not to you though,andylights,Free, - All Extended Uses,2019-06-08,Unknown,"['3D Model', 'architecture', 'building components', 'balustrade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/balustrade']",['box'],['https://www.turbosquid.com/Search/3D-Models/box'] +Wicker armchair,Wicker armchairCreated with 3d max 2018 (saved as 2015 version)Adapted for Corona render and VrayHigh quality of modelFile formats:max 3ds Max 2015fbxobj,YKPRO,Free, - All Extended Uses,2019-06-07,"['FBX ', 'OBJ ']","['3D Model', 'furnishings', 'seating', 'chair', 'dining chair', 'captains chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/dining-chair', 'https://www.turbosquid.com/3d-model/captains-chair']","['chair', 'seat', 'armchair', 'furniture', 'interior', 'wicher']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/wicher']" +Deer ,This model has no texture or materials since i couldn't figure out any way to put them in.,oryx1234,Free, - All Extended Uses,2019-06-07,['OBJ 2018'],"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'deer', 'cartoon reindeer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/deer', 'https://www.turbosquid.com/3d-model/cartoon-reindeer']","['deer', 'wild', 'animal', 'antelope', 'blender']","['https://www.turbosquid.com/Search/3D-Models/deer', 'https://www.turbosquid.com/Search/3D-Models/wild', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/antelope', 'https://www.turbosquid.com/Search/3D-Models/blender']" +F16c falcon watermark ,"F16 Falcon low poly 3D model (free version) of the US Air Force. Single 512 square diffuse texture, with watermark. This asset is part of a huge related collection available from ES3DStudios.Texture Res: Single 512 x 512 diffuse map (with watermark).Please note: texture comes in its own zip download. (download this file with whatever format you require). Higher poly resolution versions of this model are also available - approx 10k polys (TS I.D 792387)This free version is provided as a sample and is not for commercial use.-----------",ES3DStudios,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-07,"['Other Textures', '3D Studio', 'Collada ', 'AutoCAD drawing', 'FBX ', 'OpenFlight ', 'OBJ ', 'VRML ', 'DirectX ']","['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter jet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-jet']","['F16', 'F-16', 'F16C', 'F-16C', 'Viper', 'USAF', 'Game', 'LOD', 'Sim', 'US', 'Air', 'Force', 'Fighter', 'Jet', 'Warplane', 'Attack', 'HARM', 'JDAM', 'American', 'Falcon', 'Mod', 'Block', '50']","['https://www.turbosquid.com/Search/3D-Models/f16', 'https://www.turbosquid.com/Search/3D-Models/f-16', 'https://www.turbosquid.com/Search/3D-Models/f16c', 'https://www.turbosquid.com/Search/3D-Models/f-16c', 'https://www.turbosquid.com/Search/3D-Models/viper', 'https://www.turbosquid.com/Search/3D-Models/usaf', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/lod', 'https://www.turbosquid.com/Search/3D-Models/sim', 'https://www.turbosquid.com/Search/3D-Models/us', 'https://www.turbosquid.com/Search/3D-Models/air', 'https://www.turbosquid.com/Search/3D-Models/force', 'https://www.turbosquid.com/Search/3D-Models/fighter', 'https://www.turbosquid.com/Search/3D-Models/jet', 'https://www.turbosquid.com/Search/3D-Models/warplane', 'https://www.turbosquid.com/Search/3D-Models/attack', 'https://www.turbosquid.com/Search/3D-Models/harm', 'https://www.turbosquid.com/Search/3D-Models/jdam', 'https://www.turbosquid.com/Search/3D-Models/american', 'https://www.turbosquid.com/Search/3D-Models/falcon', 'https://www.turbosquid.com/Search/3D-Models/mod', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/50']" +Spinny thing,This is a 3d model of a fidget spinner.,Razeh,Free, - Editorial Uses Only,2019-06-06,Unknown,"['3D Model', 'toys and games', 'toys', 'spinning top', 'fidget spinner']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/toys', 'https://www.turbosquid.com/3d-model/spinning-top', 'https://www.turbosquid.com/3d-model/fidget-spinner']",['spin'],['https://www.turbosquid.com/Search/3D-Models/spin'] +Tv-low poly ,Like it if you liked the model. Thank you. Features:                Low poly model                Optimized for the highest performance                Colors can be easily modified                Original model optimized for Cycles Blender                Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview),cesarfrias31,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-06,"['FBX ', 'Other ']","['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/flatscreen-television']","['TV', 'televisions', 'screen', 'display', 'video']","['https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/televisions', 'https://www.turbosquid.com/Search/3D-Models/screen', 'https://www.turbosquid.com/Search/3D-Models/display', 'https://www.turbosquid.com/Search/3D-Models/video']" +Bed 02,"3D model of the Bed*The materials are available in the blend file format*Scene lighting and is included in .blend file*Renderer Cycles in Blender*All the objects of the model are named*X,Y,Z (0,0,0) *Subdivision level: 1/2*Wireframe on subdivision level: 1/2*For additional formats, all materials are included in 'supporting items'",sandrarocko,Free, - Editorial Uses Only,2019-06-06,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'furnishings', 'bed', 'queen bed']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bed', 'https://www.turbosquid.com/3d-model/queen-bed']","['bed', 'bedroom', 'interior', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Black hanging lamp model ,"Black hanging lamp 3d model with glass lightshade and decorative lightbulb. Compatible with 3ds max 2010 (V-Ray, Mental Ray, Corona) or higher, Cinema 4D R15 (V-Ray, Advanced Renderer), Unreal Engine, FBX and OBJ.",cgaxis,Free, - All Extended Uses,2019-06-05,"['Other ', 'Other textures', 'OBJ ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['black', 'hanging', 'glass', 'decorative', 'lamp', 'lightsource', 'electric', 'lighting', 'power', 'lightbulb', 'interior']","['https://www.turbosquid.com/Search/3D-Models/black', 'https://www.turbosquid.com/Search/3D-Models/hanging', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/decorative', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/lightsource', 'https://www.turbosquid.com/Search/3D-Models/electric', 'https://www.turbosquid.com/Search/3D-Models/lighting', 'https://www.turbosquid.com/Search/3D-Models/power', 'https://www.turbosquid.com/Search/3D-Models/lightbulb', 'https://www.turbosquid.com/Search/3D-Models/interior']" +Sword,"This is my first upload, i dunno to descript it. I just hope you like it.",blurrypxl,Free, - All Extended Uses,2019-06-05,Unknown,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'longsword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/longsword']","['weapon', 'melee', 'two-handed', 'sword']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/two-handed', 'https://www.turbosquid.com/Search/3D-Models/sword']" +Ww2 czech hedgehog anti tank,"Ready to render PBR 3D model of a Czech hedgehog, created in Maya 2018.The Czech hedgehog is a static anti-tank obstacle defense made of metal angle beams or I-beams (that is, lengths with an L- or I-shaped cross section). The hedgehog is very effective in keeping light to medium tanks and vehicles from penetrating a line of defense; it maintains its function even when tipped over by a nearby explosion. Although Czech hedgehogs may provide some scant cover for infantry, infantry forces are generally much less effective against fortified defensive positions than mechanized units.ABOUT- This model was originally created to be used in modern render engines- High quality polygonal model built to accurate real-world scale- PBR textures- Game ready- Optimized, non-overlapping UVs- Optimized mesh for maximum texel density- Relative texture paths- Clean scene that opens without any errorsSPECIFICATIONS- This model was created using real-life reference and is modeled in a real-world scale using meters- The .mb/.ma scene contains 1 object with correct naming and pivots for easy-use/animation- Total faces - 1876- Total vertices - 1945- Correct smoothing groups, centered pivot at 0,0,0- 1 Group (CzechHedgehog_grp)- All parts can be seperated easily to make custom groups if needed- 2 Display layers - Mesh, cameras + lights- Contains some poles on flat surfaces, but does not affect the model's renders whatsoeverFILE FORMATS- .mb (maya, native)- .ma (maya, native)- .obj- .fbxRENDERS- All shown images are rendered using Marmoset ToolbagTEXTURES- All nescessary maps are included to make sure the model can render in any modern engine- 1x CzechHedgehog PBR 4K 4096x2096 .png (Diffuse, Metallic, Roughness, AO, Normal, Glossiness, IOR, Reflection, MetallicSmoothness)Thank you for your support.The3DBadger",The3DBadger,Free, - All Extended Uses,2019-06-05,"['FBX ', 'OBJ ']","['3D Model', 'architecture', 'site components', 'military obstacle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/military-obstacle']","['ww2', 'czech', 'hedgehog', 'anti', 'tank', 'stopper', 'trap', 'the3dbadger', '3d', 'pbr', 'model', 'free']","['https://www.turbosquid.com/Search/3D-Models/ww2', 'https://www.turbosquid.com/Search/3D-Models/czech', 'https://www.turbosquid.com/Search/3D-Models/hedgehog', 'https://www.turbosquid.com/Search/3D-Models/anti', 'https://www.turbosquid.com/Search/3D-Models/tank', 'https://www.turbosquid.com/Search/3D-Models/stopper', 'https://www.turbosquid.com/Search/3D-Models/trap', 'https://www.turbosquid.com/Search/3D-Models/the3dbadger', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/free']" +Semi auto rifle ,A semi automatic rifle I made for fun.,desmundo,Free, - All Extended Uses,2019-06-04,Unknown,"['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/raygun']","['smei', 'automatic', 'rifle', 'gun', 'fantasy']","['https://www.turbosquid.com/Search/3D-Models/smei', 'https://www.turbosquid.com/Search/3D-Models/automatic', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/fantasy']" +Cup ,Mug. Model is 10 aprox------------------------------------------------------------------------------Native File Format: c4d,lazaro322,Free, - All Extended Uses,2019-06-04,"['3D Studio', 'Other ', 'Collada 1', '5\n', 'DXF ', 'FBX ', 'OBJ ', 'STL ', 'VRML ', 'DirectX ']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['cup', 'mug', 'coffee', 'tea', 'drink', 'ceramic', 'glass', 'kitchen', 'editable', 'subdivide', 'low', 'poly', '3d', 'model', 'max', 'fbx', 'obj']","['https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/ceramic', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/editable', 'https://www.turbosquid.com/Search/3D-Models/subdivide', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/obj']" +Polygonal island ,"Isla poligonal con detalle medio, modelada en Cinema 4D",lazaro322,Free, - All Extended Uses,2019-06-04,"['3D Studio', 'DXF ', 'OBJ ', 'DirectX ', 'Collada 1', '5\n']","['3D Model', 'nature', 'landscapes', 'island']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/island']","['landscape', 'nature', 'tree', 'cloud', 'horizon', 'natural', 'environment', 'low', 'poly', 'quality', 'lowpoly', 'island', 'stylized', 'sky', 'cartoon', 'real', 'time', 'game', 'engine', 'pine', '3d', 'floating']","['https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/cloud', 'https://www.turbosquid.com/Search/3D-Models/horizon', 'https://www.turbosquid.com/Search/3D-Models/natural', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/quality', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/island', 'https://www.turbosquid.com/Search/3D-Models/stylized', 'https://www.turbosquid.com/Search/3D-Models/sky', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/real', 'https://www.turbosquid.com/Search/3D-Models/time', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/pine', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/floating']" +Viking helmet ,Viking Helmet,HeeHee23,Free, - All Extended Uses,2019-06-04,['Other 2016'],"['3D Model', 'weaponry', 'armour', 'helmet', 'military helmet', 'medieval helmet', 'viking helmet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/helmet', 'https://www.turbosquid.com/3d-model/military-helmet', 'https://www.turbosquid.com/3d-model/medieval-helmet', 'https://www.turbosquid.com/3d-model/viking-helmet']",['#helmet'],['https://www.turbosquid.com/Search/3D-Models/%23helmet'] +Backdrop treeline with alpha channel,"WARNING! This is not a 3D model.(Easier to find with 3D model category.)This is a free pack of backdrop treelines. These are backdrop images for 3D scenes. They can be used eg. interior design, exterior scenes or anywhere to hide the edge of the plane. You can add life to your interior scene with these png images with alpha channel. These images react with the sun due to the alpha channels. This zip file cointains a blender file,a rendered image from the blender file and 7. Each of these images have different dimensions. The description information of the polygons and vertices, are fake. Lewiw",Lewiw,Free, - All Extended Uses,2019-06-03,Unknown,"['3D Model', 'nature', 'landscapes', 'forest']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/forest']","['treeline', 'treelines', 'tree', 'alpha', 'channel', 'transparent', 'transparency', 'png', 'hdri', 'backdrop', 'image', 'picture', 'interior', 'exterior', 'background', 'outdoor']","['https://www.turbosquid.com/Search/3D-Models/treeline', 'https://www.turbosquid.com/Search/3D-Models/treelines', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/alpha', 'https://www.turbosquid.com/Search/3D-Models/channel', 'https://www.turbosquid.com/Search/3D-Models/transparent', 'https://www.turbosquid.com/Search/3D-Models/transparency', 'https://www.turbosquid.com/Search/3D-Models/png', 'https://www.turbosquid.com/Search/3D-Models/hdri', 'https://www.turbosquid.com/Search/3D-Models/backdrop', 'https://www.turbosquid.com/Search/3D-Models/image', 'https://www.turbosquid.com/Search/3D-Models/picture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/background', 'https://www.turbosquid.com/Search/3D-Models/outdoor']" +"Realistic machine pistole (gameready, rigged)","HIgh-quality 3D model of a realist-looking Machine Pistol.Includes:-realworld-scaled, rigged Model of a Machine Pistol-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.",renedominick1999,Free, - All Extended Uses,2019-06-03,"['FBX ', 'Other png']","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'assault rifle', 'p90']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/assault-rifle', 'https://www.turbosquid.com/3d-model/p90']","['Weapon', 'Gun', 'Machine', 'Pistol', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'scope', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/scope', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +"Realistic pistol model (gameready, rigged)","High-quality 3D model of a realist-looking Pistol.Includes:-realworld-scaled, rigged Model of a Pistol-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.",renedominick1999,Free, - Editorial Uses Only,2019-06-02,"['FBX ', 'Other png']","['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'semi-automatic pistol']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun', 'https://www.turbosquid.com/3d-model/semi-automatic-pistol']","['Weapon', 'Gun', 'PIstol', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'lowpoly', 'Glock', '18']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/glock', 'https://www.turbosquid.com/Search/3D-Models/18']" +"Realistic silenced sniper rifle (gameready, rigged) ","High-quality 3D model of a realist-looking Sniper Rifle.Includes:-realworld-scaled, rigged Model of a Sniper Rifle-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.",renedominick1999,Free, - All Extended Uses,2019-06-02,"['FBX ', 'Other png']","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sniper rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/sniper-rifle']","['Weapon', 'Gun', 'Sniper', 'Rifle', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/sniper', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Door of the moon ,,DuDeHTM,Free, - All Extended Uses,2019-06-01,"['FBX ', 'OBJ ']","['3D Model', 'architecture', 'site components', 'landscape architecture', 'monument']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/monument']","['door', 'relistic', 'low', 'poly', 'monument', 'rock', 'stone', 'old', 'architecture']","['https://www.turbosquid.com/Search/3D-Models/door', 'https://www.turbosquid.com/Search/3D-Models/relistic', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/monument', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/architecture']" +"Realistic assault rifle (gameready, rigged) ","High-quality 3D model of a realist-looking Assault Rifle.Includes:-realworld-scaled, rigged Model of an Assault Rifle-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.",renedominick1999,Free, - All Extended Uses,2019-06-01,"['FBX ', 'Other png']","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'assault rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/assault-rifle']","['Weapon', 'Gun', 'Assault', 'Rifle', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'lowpoly', 'G', '36']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/assault', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/g', 'https://www.turbosquid.com/Search/3D-Models/36']" +Simple dirty bed,"Old dirty bed for horror games.The pillows and blanket are separated from the bed, so you can arrange them as you like.2 variants of textures: a clean one and a dirty oneFile formats:.OBJ.FBX.ma2k texturesCreated in MayaTextured in Substance PainterTextures are compressed for a better performance of the game.Textures are optimized for Unreal Engine 4Base ColorNormalPacked Occlusion Roughness Metallic",nestofgames,Free, - All Extended Uses,2019-06-01,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'bed', 'double bed']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bed', 'https://www.turbosquid.com/3d-model/double-bed']","['dirty', 'dust', 'horror', 'games', 'bed', 'bedroom', 'ue4', 'unity', 'maya', 'game', 'asset', 'old', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/dirty', 'https://www.turbosquid.com/Search/3D-Models/dust', 'https://www.turbosquid.com/Search/3D-Models/horror', 'https://www.turbosquid.com/Search/3D-Models/games', 'https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/ue4', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +House in the beach ,enjoy,DuDeHTM,Free, - All Extended Uses,2019-06-01,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'architecture', 'building', 'residential building', 'house', 'fantasy house', 'cartoon house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house', 'https://www.turbosquid.com/3d-model/fantasy-house', 'https://www.turbosquid.com/3d-model/cartoon-house']","['house', 'wood', 'water', 'toon', 'casa', 'rock', 'lamp', 'window', 'door', 'grass', 'architecture']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/casa', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/window', 'https://www.turbosquid.com/Search/3D-Models/door', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/architecture']" +A log of wood ,"_________________________________________A LOG OF WOOD:Verts:5890Polygons:5888Tris:11776Made in blender version 2.79Model is UV unwrapedsupporting item is texture__________________________________________FILES:OBJ, FBX, 3DSThank you! and please rate it.",TdeX,Free, - All Extended Uses,2019-05-31,"['OBJ ', 'FBX ', '3D Studio']","['3D Model', 'nature', 'plants', 'plant elements', 'log']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/plant-elements', 'https://www.turbosquid.com/3d-model/log']","['a', 'log', 'of', 'wood']","['https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/log', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/wood']" +"Realistic shotgun model (gameready, rigged) ","HIgh-quality 3D model of a realist-looking Shotgun.Includes:-realworld-scaled, rigged Model of a Sniper Rifle-3 different 2k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.",renedominick1999,Free, - All Extended Uses,2019-05-31,"['FBX 1', '0\n', 'Other ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/shotgun']","['Weapon', 'Gun', 'Shotgun', 'Game', 'rigged', 'optimized', '2k', 'textures', 'uv', 'modern', 'scope', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/shotgun', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/2k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/scope', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Teapot,teapot,Nand3d,Free, - All Extended Uses,2019-05-31,Unknown,"['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'teapot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/teapot']",['teapot'],['https://www.turbosquid.com/Search/3D-Models/teapot'] +Toasts 02,"High detailed 3D model from cleaned retopology scan data of a toasts in checkmate pro quality by Cgaustria.For free quality check.Thank you for purchasing Cgaustria models!If you like this model I would kindly ask you to rate it.Real world scale.Preview renders just rendered with diffuse and normal map, there is no post production.Retopologized and reunwrapped for easy editing.AVAILABLE 3D FILES for download:- 3ds Max 2015 with V-Ray (3.6) shaders, textures, cameras, lights, render settings- OBJ incl. mtl file- FBXINFORMATION about 3ds Max 2015 FileSCALE:- Model at world center and real scale:       Metric in centimeter        1 unit= 1 centimeterPOLYCOUNT:-polys: 7.822-100% quads       Textures:1. toasts02_diffuse.png - 4096x4096 px2. toasts02_displacement.png - 4096x4096 px3. toasts02_normals.png - 4096x4096 px",cgaustria,Free, - All Extended Uses,2019-05-31,"['FBX 2015', 'Other ', 'OBJ 2015']","['3D Model', 'food and drink', 'food', 'baked goods', 'bread', 'toast']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/baked-goods', 'https://www.turbosquid.com/3d-model/bread', 'https://www.turbosquid.com/3d-model/toast']","['toast', 'toasts', 'obj', 'fbx', 'vray', '3d', 'model', 'breakfast', 'bakery', 'dark', 'lunch', 'meal', 'food', 'snack', 'french', 'baked', 'bun', 'cooking', 'bread', 'crusty', 'baguette', 'slice', 'lowpoly', 'game']","['https://www.turbosquid.com/Search/3D-Models/toast', 'https://www.turbosquid.com/Search/3D-Models/toasts', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/breakfast', 'https://www.turbosquid.com/Search/3D-Models/bakery', 'https://www.turbosquid.com/Search/3D-Models/dark', 'https://www.turbosquid.com/Search/3D-Models/lunch', 'https://www.turbosquid.com/Search/3D-Models/meal', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/snack', 'https://www.turbosquid.com/Search/3D-Models/french', 'https://www.turbosquid.com/Search/3D-Models/baked', 'https://www.turbosquid.com/Search/3D-Models/bun', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/bread', 'https://www.turbosquid.com/Search/3D-Models/crusty', 'https://www.turbosquid.com/Search/3D-Models/baguette', 'https://www.turbosquid.com/Search/3D-Models/slice', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/game']" +Adjustable working table,"This adjustable working table high quality, photo real model. The model is accurate with the real world size and scale. The model is suitable for the layout of workshops and production rooms.Ready to RENDER. HDRI map includedHigh quality model for TurboSmoothOriginally created with 3ds Max 2013Model prepared for V-Ray 2.40.03Included in the scene - VRay plane Includes Formats FBX and OBJ (not smoothed)- Model is built to real-world scale- Units used: mm- No third-party renderer or plug-insGeometry:No smooth: -Polygons: 150172-Vertices: 148500Subdivision Level 1-Polygons: 1194928-Vertices: 597404",4ivers,Free, - All Extended Uses,2019-05-31,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'furnishings', 'desk', 'office desk', 'drafting table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/office-desk', 'https://www.turbosquid.com/3d-model/drafting-table']","['workbench', 'factory', 'garage', 'workshop', 'tool', 'equpment', 'fabrication', 'craft', 'industrial', 'working', 'table', 'desk', 'worktop', 'craftsman', 'repair', 'v-ray']","['https://www.turbosquid.com/Search/3D-Models/workbench', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/garage', 'https://www.turbosquid.com/Search/3D-Models/workshop', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/equpment', 'https://www.turbosquid.com/Search/3D-Models/fabrication', 'https://www.turbosquid.com/Search/3D-Models/craft', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/working', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/worktop', 'https://www.turbosquid.com/Search/3D-Models/craftsman', 'https://www.turbosquid.com/Search/3D-Models/repair', 'https://www.turbosquid.com/Search/3D-Models/v-ray']" +Art vase ,A vase I created for a scene a while back! I I hope you guys enjoy it!,VectorInc,Free, - All Extended Uses,2019-05-30,Unknown,"['3D Model', 'interior design', 'housewares', 'general decor', 'vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase']","['Vase', 'Art', 'Decoration', 'Decor', 'Furnishing']","['https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/furnishing']" +Picnic table ,"This is a low-poly, game ready, pbr, prop. This is a picnic table that is good for outdoor park scenes. The object sits on the ground plane at the origin (0,0,0). Includes fbx and obj file formats. All textures are 2048x2048 png files.",thatsruddiculous,Free, - All Extended Uses,2019-05-29,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'table', 'picnic table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/picnic-table']","['picnic', 'table', 'park', 'exterior', 'furniture', 'wood', 'wooden', 'metal', 'public', 'bench']","['https://www.turbosquid.com/Search/3D-Models/picnic', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/public', 'https://www.turbosquid.com/Search/3D-Models/bench']" +Garbage bag ,"This is a low-poly, game ready, pbr, prop. This is a trash bag that is good for outdoor scenes next to dumpsters, or indoor a very messy or abandoned house. Includes fbx and obj file formats. All textures are 2048x2048 png files.",thatsruddiculous,Free, - All Extended Uses,2019-05-29,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'industrial', 'industrial container', 'bag', 'garbage bag']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/bag', 'https://www.turbosquid.com/3d-model/garbage-bag']","['bag', 'garbage', 'trash', 'refuse', 'sack']","['https://www.turbosquid.com/Search/3D-Models/bag', 'https://www.turbosquid.com/Search/3D-Models/garbage', 'https://www.turbosquid.com/Search/3D-Models/trash', 'https://www.turbosquid.com/Search/3D-Models/refuse', 'https://www.turbosquid.com/Search/3D-Models/sack']" +Wooden crate,"This is a game-ready pbr wooden crate. It is very low poly and ready for any project. The object sits on the ground plane at the origin (0,0,0). All textures are 2048x2048 png format. Includes fbx and obj files.",thatsruddiculous,Free, - All Extended Uses,2019-05-29,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'industrial', 'industrial container', 'crate']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/crate']","['crate', 'wooden', 'shipping', 'container', 'wood', 'box', 'ship', 'contain', 'cube']","['https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/shipping', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/ship', 'https://www.turbosquid.com/Search/3D-Models/contain', 'https://www.turbosquid.com/Search/3D-Models/cube']" +Living room photo - sketchup 2018 and vray next,"LIVING ROOM IN SKETCHUP 2018, RENDER WITH VRAY NEXT",DesignerHugoGonzales,Free, - All Extended Uses,2019-05-28,Unknown,"['3D Model', 'interior design', 'interior', 'residential spaces', 'living room']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/residential-spaces', 'https://www.turbosquid.com/3d-model/living-room']","['SKETCHUP', '2018', 'AND', 'VRAY', 'NEXT', 'READY', 'MODEL', 'LIVING', 'ROOM', 'PHOTO']","['https://www.turbosquid.com/Search/3D-Models/sketchup', 'https://www.turbosquid.com/Search/3D-Models/2018', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/next', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/photo']" +Captain marve - victorie ,Captain Marve from Avengers movie with Victorie Heaven czech model,bewolf56,Free, - Editorial Uses Only,2019-05-28,['FBX '],"['3D Model', 'characters', 'superhero']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/superhero']","['captain', 'marve', 'victorie', 'heaven', 'avengers', 'blonde', 'heroine', 'czech', 'model', 'superhero']","['https://www.turbosquid.com/Search/3D-Models/captain', 'https://www.turbosquid.com/Search/3D-Models/marve', 'https://www.turbosquid.com/Search/3D-Models/victorie', 'https://www.turbosquid.com/Search/3D-Models/heaven', 'https://www.turbosquid.com/Search/3D-Models/avengers', 'https://www.turbosquid.com/Search/3D-Models/blonde', 'https://www.turbosquid.com/Search/3D-Models/heroine', 'https://www.turbosquid.com/Search/3D-Models/czech', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/superhero']" +Greek sword ,sword of Greek inspiration:This model was created on the blender software and the PBR material addon. It's a highpoly model.Files Formates:-blender (.blend) -Fbx (.fbx) -Wavefront (.obj) -collada (.dae) -alembic (.abc) -3D Studio (.3ds) -Standford (.ply) -X3d Extensible 3D (.x3d) -Stl (.stl)Hope you like it.If you like my work do not hesitate to share my content and come see my other creations on my profile !,guitcho,Free, - All Extended Uses,2019-05-28,"['FBX ', 'OBJ ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/gladius']","['greek', 'armor', 'protection', 'soldier', 'warrior', 'roman', 'legionary', '3d', 'model', 'medieval', 'military', 'sword', 'knight', 'bladed', 'weapon', 'melee']","['https://www.turbosquid.com/Search/3D-Models/greek', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/protection', 'https://www.turbosquid.com/Search/3D-Models/soldier', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/legionary', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/bladed', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/melee']" +Asteroids pack ,This is pack of 4 asteroids for your projectasteroid 1 - 47432 facesasteroid 2 - 38084 facesasteroid 3 - 53392 facesasteroid 4 - 10084 facesvideo presentation of this pack you can found in my YoutUbe channel: Mykhailo Ohorodnichuk,Mykhailo Ohorodnichuk,Free, - All Extended Uses,2019-05-28,Unknown,"['3D Model', 'science', 'astronomy', 'asteroid']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/astronomy', 'https://www.turbosquid.com/3d-model/asteroid']","['3D', 'model', 'Science', 'Astronomy', 'Asteroids', 'SGI', 'Animation', 'Space', 'Meteor', 'Traditional', 'Game', 'art', 'aerolite']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/astronomy', 'https://www.turbosquid.com/Search/3D-Models/asteroids', 'https://www.turbosquid.com/Search/3D-Models/sgi', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/meteor', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/aerolite']" +Scissor ,"This is blender made 3D Scissor Model, that's free to use in your animations and games as well. The model is rigged and well topologised. The textures used are available as packed images which includes the skydome as well. Th material is derived from Principled BSDF Shader of Blender Cycles. Also the polish mask is available for distinguishing between the polished surfaces. At last, use this and give your views.",Devansh Kaushik,Free, - All Extended Uses,2019-05-28,"['Collada ', 'FBX ', '3D Studio']","['3D Model', 'industrial', 'tools', 'cutting tools', 'scissors']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cutting-tools', 'https://www.turbosquid.com/3d-model/scissors']","['blender', '3d', 'scissor', 'scissors', 'cycles', 'metal']","['https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scissor', 'https://www.turbosquid.com/Search/3D-Models/scissors', 'https://www.turbosquid.com/Search/3D-Models/cycles', 'https://www.turbosquid.com/Search/3D-Models/metal']" +Food photogrammetry intro pack,"Small Intro Collection of Photogrammetry food. Includes 13 assets, that all come with textures for PBR rendering. Mesh has been retoplogized for low poly rendering including game engines. Archived pack into a single .rar each asset is .OBJ format.Looking to develop collections photogrammetry products aimed at small studios/freelancers. Scanned and modeled to a high quality. Future packs will contain more assets. Please get in touch if there are any assets you would like to be included.",jdbensonCG,Free, - All Extended Uses,2019-05-28,['Other 001'],"['3D Model', 'food and drink', 'food', 'vegetable', 'root vegetables', 'carrot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/vegetable', 'https://www.turbosquid.com/3d-model/root-vegetables', 'https://www.turbosquid.com/3d-model/carrot']","['photogrammetry', 'food', 'fruit', 'vegetable', 'bread', 'crumpet', 'scan', 'textures', 'lowpoly', 'grapefruit', 'apple', 'pineapple', 'pear', 'lemon', 'seeds', 'carrot', 'garlic', 'onion', 'potato']","['https://www.turbosquid.com/Search/3D-Models/photogrammetry', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/fruit', 'https://www.turbosquid.com/Search/3D-Models/vegetable', 'https://www.turbosquid.com/Search/3D-Models/bread', 'https://www.turbosquid.com/Search/3D-Models/crumpet', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/grapefruit', 'https://www.turbosquid.com/Search/3D-Models/apple', 'https://www.turbosquid.com/Search/3D-Models/pineapple', 'https://www.turbosquid.com/Search/3D-Models/pear', 'https://www.turbosquid.com/Search/3D-Models/lemon', 'https://www.turbosquid.com/Search/3D-Models/seeds', 'https://www.turbosquid.com/Search/3D-Models/carrot', 'https://www.turbosquid.com/Search/3D-Models/garlic', 'https://www.turbosquid.com/Search/3D-Models/onion', 'https://www.turbosquid.com/Search/3D-Models/potato']" +Treasure chest ,"First 3D object i have made please sned message or comment on how it is. it is FREE. Treasure chest, Medieval (oldish) container put onto your horror/medieval game.Has Animation setup to open!!Also includes the wood texture and Three different metal/Rust materials for you to use. Use just one or All three.!Also has normal's.",creativeslot144,Free, - All Extended Uses,2019-05-27,"['OBJ 1', '1\n', 'FBX 1', '1\n', '3D Studio', '1\n']","['3D Model', 'furnishings', 'chest', 'wooden chest', 'treasure chest']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/chest', 'https://www.turbosquid.com/3d-model/wooden-chest', 'https://www.turbosquid.com/3d-model/treasure-chest']","['treasure', 'chest', 'toy', 'medieval', 'box', 'play', 'game', '3D', 'object', 'old', 'rust', 'metal', 'wood']","['https://www.turbosquid.com/Search/3D-Models/treasure', 'https://www.turbosquid.com/Search/3D-Models/chest', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/play', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/object', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/wood']" +Metal paper clip,"Its a high quality and photo real model of a Metal Paper Clip. This will add more value and enhance details to your rendering projects like medical presentation, cinematic, VFX shots etc and games. The model is applied with materials and textures, with very detailed design that allows for close-up renders. This model originally modeled in 3ds MAX 2015 and rendered with Vray 3.20.02 and converted formats are FBX and OBJ.--------------------------------------------Features:- Multiple formats added.- High quality polygonal model, correctly scaled for an accurate representation.-The model properly named, grouped and logically grouped so no confusion when importing several models into a scene also kept in properly named layer.- No cleaning up necessary, just drop your models into the scene or open the given scene and start rendering.- Models resolutions are optimized for polygon efficiency. (In 3ds Max, the Turbosmooth modifier or smoothing modifier in other respective application can be used to increase mesh resolution if necessary.)-All texture colors can be easily modified.-Model does not include any lights, backgrounds or scenes used in preview images but a separate version is added with light setup and HDRI as seen in preview images.--------------------------------------------Polygons: 4224Vertices: 4214--------------------------------------------File Formats:- 3ds Max 2015 Vray 3.20.02- obj- FBX--------------------------------------------Texture sizes areAll textures are 2048*2048--------------------------------------------Model dimension (Unit setup is CM)X- 0.9* Y- 3.02 * Z- 0.19-------------------------------------------Hope you like the model.Please RATE the product if you are satisfied.Also check out my other models, click on my user name to see complete gallery.",3d_ranensinha,Free, - All Extended Uses,2019-05-27,"['FBX 2015', 'OBJ ']","['3D Model', 'office', 'office supplies', 'paper clip']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/paper-clip']","['metal', 'clip', 'fastener', 'gemclip', 'paper', 'paperclip', 'clamp', 'collection', 'set', 'stationery', 'work', 'office', 'desk', 'props', 'realistic', 'photoreal']","['https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/clip', 'https://www.turbosquid.com/Search/3D-Models/fastener', 'https://www.turbosquid.com/Search/3D-Models/gemclip', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/paperclip', 'https://www.turbosquid.com/Search/3D-Models/clamp', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/stationery', 'https://www.turbosquid.com/Search/3D-Models/work', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photoreal']" +Z chair,z-chair designed by Oleksii Karman. litewheight and unwrapped texture.,mohsen_ga,Free, - All Extended Uses,2019-05-25,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool', 'https://www.turbosquid.com/3d-model/bar-stool']",['chair'],['https://www.turbosquid.com/Search/3D-Models/chair'] +Lpipe ,This is a free sample from 'Pipe pack vol.1'. Go to my profile and check out the rest.,Huge Wild Cube,Free, - All Extended Uses,2019-05-25,"['FBX ', 'OBJ ']","['3D Model', 'architecture', 'building components', 'plumbing equipment', 'plumbing pipe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/plumbing-equipment', 'https://www.turbosquid.com/3d-model/pipe-plumbing']","['pipe', 'props', 'set', 'collection', 'water', 'oil', 'gas', 'lowpoly', 'joint', 'link', 'tube', 'industry', 'factory', 'power', 'plant', 'machine', 'petrol', 'system', 'Sewage', 'pack', 'free']","['https://www.turbosquid.com/Search/3D-Models/pipe', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/gas', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/joint', 'https://www.turbosquid.com/Search/3D-Models/link', 'https://www.turbosquid.com/Search/3D-Models/tube', 'https://www.turbosquid.com/Search/3D-Models/industry', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/power', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/petrol', 'https://www.turbosquid.com/Search/3D-Models/system', 'https://www.turbosquid.com/Search/3D-Models/sewage', 'https://www.turbosquid.com/Search/3D-Models/pack', 'https://www.turbosquid.com/Search/3D-Models/free']" +Office set ,"an office with items included such as an office chair with 2 guest chairs, a trophy, picture frame, a mug and exterior walls with a door and a floor.",desmundo,Free, - All Extended Uses,2019-05-24,['OBJ '],"['3D Model', 'furnishings', 'desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk']","['office', 'set', 'desk', 'mug', 'guest', 'rolling', 'chair', 'frame', 'picture', 'trophy']","['https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/guest', 'https://www.turbosquid.com/Search/3D-Models/rolling', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/frame', 'https://www.turbosquid.com/Search/3D-Models/picture', 'https://www.turbosquid.com/Search/3D-Models/trophy']" +Sexy elf bath ,"3D Print concept.A sexy elf takes a bath. WoW style. Whole model. Included .ztl, .obj and .stl formats. Enjoy! ;)",Predteck,Free, - All Extended Uses,2019-05-24,"['Other ', 'OBJ ', 'STL ']","['3D Model', 'art', 'sculpture', 'statue', 'woman statue']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/woman-statue']","['woman', 'nude', 'naughty', 'erotic', 'wow', '3dprint']","['https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/nude', 'https://www.turbosquid.com/Search/3D-Models/naughty', 'https://www.turbosquid.com/Search/3D-Models/erotic', 'https://www.turbosquid.com/Search/3D-Models/wow', 'https://www.turbosquid.com/Search/3D-Models/3dprint']" +Deer skull ,"3D model of deer skull with diffuse, specular, normal, occlusion and displacement maps. 6160 polygons.",leon017,Free, - All Extended Uses,2019-05-24,"['3D Studio', 'FBX 2018', 'OBJ ']","['3D Model', 'nature', 'animal', 'animal anatomy', 'animal skeleton', 'animal skull', 'deer skull']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/animal-anatomy', 'https://www.turbosquid.com/3d-model/animal-skeleton', 'https://www.turbosquid.com/3d-model/animal-skull', 'https://www.turbosquid.com/3d-model/deer-skull']","['deer', 'skull', 'bones', 'skeleton', 'wildlife', 'anatomy', 'dead', 'hunting', 'horns', 'moose', 'forest', 'nature']","['https://www.turbosquid.com/Search/3D-Models/deer', 'https://www.turbosquid.com/Search/3D-Models/skull', 'https://www.turbosquid.com/Search/3D-Models/bones', 'https://www.turbosquid.com/Search/3D-Models/skeleton', 'https://www.turbosquid.com/Search/3D-Models/wildlife', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/dead', 'https://www.turbosquid.com/Search/3D-Models/hunting', 'https://www.turbosquid.com/Search/3D-Models/horns', 'https://www.turbosquid.com/Search/3D-Models/moose', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/nature']" +Cartoon low poly starfish illustration,"- Cartoon Low Poly Starfish 3d Illustration- Created on Cinema 4d R17- 3814 Polygons- Procedural Textured- Game Ready, VR Ready",Anton Moek,Free, - All Extended Uses,2019-05-24,"['3D Studio', 'FBX ', 'Other ', 'OBJ ', 'STL ']","['3D Model', 'nature', 'animal', 'sea creatures', 'sea star', 'cartoon starfish']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/sea-creatures', 'https://www.turbosquid.com/3d-model/sea-star', 'https://www.turbosquid.com/3d-model/cartoon-starfish']","['cartoon', 'low', 'poly', 'illustration', 'art', 'simple', 'free', 'download', 'starfish', 'lowpoly', 'low-poly', 'antonmoek', 'sea', 'seaweed', 'water', 'game', 'design', 'ar', 'vr', 'browser', 'cinema4d']","['https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/illustration', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/download', 'https://www.turbosquid.com/Search/3D-Models/starfish', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/antonmoek', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/seaweed', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/ar', 'https://www.turbosquid.com/Search/3D-Models/vr', 'https://www.turbosquid.com/Search/3D-Models/browser', 'https://www.turbosquid.com/Search/3D-Models/cinema4d']" +Realistic glass table,Free for u,Bang Moron,Free, - All Extended Uses,2019-05-23,"['Other ', '3D Studio', 'FBX ', 'Collada ', 'OBJ ']","['3D Model', 'furnishings', 'table', 'glass table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/glass-table']","['Furniture', 'Table', 'Glass', 'Realistic']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/realistic']" +Simple ring ,"A simple diamond ring.Three variants of precious metal and four colors of stones. The model is suitable for creating separate parts of the interior, as well as an independent element.To create a model used 3dsMax2018 version 20.0.0.966 compatible with 2014With anti-aliasing:points 43083polygons 52281physical volume 4072.0 mvirtual volume 5481.4 mThe scene contains 33 objects As part of the archive set of textures 6 PCs., including:blue diamond.jpggreen_diamond.jpgred diamond.jpgwhite diamond.jpgmetal.jpgand Files:preview1_Simple_ring_with_diamond.jpgpreview2_Simple_ring_with_diamond.jpgpreview3_Simple_ring_with_diamond.jpgGrid_Simple_ring_with_diamond.jpgSimple_ring_with_diamond_fbxSimple_ring_with_diamond_objSimple_ring_with_diamond_3D Max",Diversantka,Free, - All Extended Uses,2019-05-23,"['FBX 2012', '2018\n', 'OBJ 2014', '2018\n']","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'diamond ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/diamond-ring']","['ring', 'gold', 'silver', 'diamond', 'brilliant', 'set', '3D', 'Model', 'fashion', 'and', 'beauty', 'jewelry', 'platinum', 'decorative']","['https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/diamond', 'https://www.turbosquid.com/Search/3D-Models/brilliant', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/platinum', 'https://www.turbosquid.com/Search/3D-Models/decorative']" +Dirty horse shoe,"Dirty Horse Shoe 3D ModelPBR Textures 4096x4096All Renders were done in Marmoset Toolbag 3.07By The Creators at Get Dead Entertainment . :) Please Like, Follow and Rate!",GetDeadEntertainment,Free, - All Extended Uses,2019-05-22,"['FBX FBX', 'Other MTL', 'OBJ OBJ', 'Other PNG']","['3D Model', 'industrial', 'agriculture', 'animal accessories', 'horse accessories', 'horseshoe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/agriculture', 'https://www.turbosquid.com/3d-model/animal-accessories', 'https://www.turbosquid.com/3d-model/horse-accessories', 'https://www.turbosquid.com/3d-model/horseshoe']","['horseshoe', 'horse', 'shoe', 'horse', 'luck', 'lucky', 'gamble', 'chance', 'medieval', 'decor', 'junk', 'steel', 'decoration', 'horse', 'props', 'props', 'ground', 'clutter', 'metal', 'horseshoes', 'iron', 'exteri']","['https://www.turbosquid.com/Search/3D-Models/horseshoe', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/shoe', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/luck', 'https://www.turbosquid.com/Search/3D-Models/lucky', 'https://www.turbosquid.com/Search/3D-Models/gamble', 'https://www.turbosquid.com/Search/3D-Models/chance', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/junk', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/clutter', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/horseshoes', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/exteri']" +Realistic plastic cupboard ,Free for u,Bang Moron,Free, - All Extended Uses,2019-05-22,['Other '],"['3D Model', 'furnishings', 'cabinet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/cabinet']",['Cupboard'],['https://www.turbosquid.com/Search/3D-Models/cupboard'] +Table ,"-The table is a high quality model that will enhance details to any of your rendering projects. The model has a fully textured, detailed design that allows for close-up renders, and was originally modeled in 3ds Max 2011 and rendered with V-Ray.Features: -High quality polygonal model, correctly scaled for an accurate representation of the original object. -Models resolutions are optimized for polygon efficiency.-All colors can be easily modified. -Model is fully textured with all materials applied.-All textures and materials are included .-No special plugin needed to open scene. -Model does not include any backgrounds or scenes used in preview images.File Formats:-3ds Max 2011.-OBJ . -FBX . -3ds . -dxf . -stl-Hope you like it! Also check out my other models, just click on my user name to see complete gallery.",arch.melsayed,Free, - All Extended Uses,2019-05-22,"['FBX ', 'OBJ ', 'STL ', '3D Studio', 'DXF ']","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['table', 'modern', 'wooden', 'interior', 'steel', 'living', 'reception', 'bed', 'room', 'metal']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/reception', 'https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/metal']" + ,obot carpet floor cleaner,esmileonline,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-22,"['Other ', 'Collada ', 'FBX ', 'OBJ ']","['3D Model', 'interior design', 'appliance', 'household appliance', 'cleaning appliance', 'vacuum cleaner', 'robot vacuum cleaner']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/cleaning-appliance', 'https://www.turbosquid.com/3d-model/vacuum-cleaner', 'https://www.turbosquid.com/3d-model/robot-vacuum-cleaner']","['robot', 'carpet', 'floor', 'cleaner', 'robot', 'carpet', 'floor', 'cleaner', 'vacuum', 'cleaner', 'home', 'appliance', 'smart', 'household', 'tools']","['https://www.turbosquid.com/Search/3D-Models/robot', 'https://www.turbosquid.com/Search/3D-Models/carpet', 'https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/cleaner', 'https://www.turbosquid.com/Search/3D-Models/robot', 'https://www.turbosquid.com/Search/3D-Models/carpet', 'https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/cleaner', 'https://www.turbosquid.com/Search/3D-Models/vacuum', 'https://www.turbosquid.com/Search/3D-Models/cleaner', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/appliance', 'https://www.turbosquid.com/Search/3D-Models/smart', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/tools']" +Low poly beach items pack ,"This is a low poly 3d beach assets pack. The low poly pack was modeled and prepared for low-poly style renderings, background, general CG visualization. Topology with quads and tris.You will get those 4 objects :2 Rackets 1 Racket Ball 1 beach BallVerts : 614 Faces: 606Simple diffuse colors.No ring, maps and no UVW mapping is available.The original file was created in blender. You will receive a 3DS, OBJ, FBX, blend, DAE, STL.All preview images were rendered with Blender Cycles. Product is ready to render out-of-the-box. Please note that the lights, cameras, and background is only included in the .blend file. The model is clean and alone in the other provided files, centered at origin and has real-world scale.",chroma3D,Free, - All Extended Uses,2019-05-22,"['3D Studio', 'STL ', 'Collada ', 'FBX ', 'OBJ ']","['3D Model', 'toys and games', 'toys', 'outdoor toys', 'paddle ball']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/toys', 'https://www.turbosquid.com/3d-model/outdoor-toys', 'https://www.turbosquid.com/3d-model/paddle-ball']","['low', 'poly', 'beach', 'items', 'pack', 'ball', 'summer', 'fun', 'racket', 'tennis', 'sports', 'equipment']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/beach', 'https://www.turbosquid.com/Search/3D-Models/items', 'https://www.turbosquid.com/Search/3D-Models/pack', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/summer', 'https://www.turbosquid.com/Search/3D-Models/fun', 'https://www.turbosquid.com/Search/3D-Models/racket', 'https://www.turbosquid.com/Search/3D-Models/tennis', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/equipment']" +Basic laptop with lenovo logo ,"This is an extremely low poly & low size laptop. It has an Lenovo logo in it. Suitable for Interior decoration, game development etc.",Efad Safi,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-22,"['3D Studio', '1\n', 'Collada 0', '1\n', 'AutoCAD drawing', '1\n', 'DXF 0', '1\n', 'FBX 0', '1\n', 'Other 0', '1\n', 'OBJ 0', '1\n']","['3D Model', 'technology', 'computer', 'laptop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer', 'https://www.turbosquid.com/3d-model/laptop']","['Laptop', 'ideapad', 'Computer', 'Pc', 'Computers', 'Poly', 'Laptops', 'Low', 'Lenovo', 'Laptops.']","['https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/ideapad', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pc', 'https://www.turbosquid.com/Search/3D-Models/computers', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/laptops', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/lenovo', 'https://www.turbosquid.com/Search/3D-Models/laptops.']" +Fantasy medieval weapon pack ,"-------------------------------------------------------------Presenting Fantasy Medieval Weapon Pack.-------------------------------------------------------------Two swords a Broadsword and a Longsword.Broadsword Polygons: 808. Verticies: 420.Longsword Polygons: 456. Verticies: 251.A default material from your Software of choice can be used. Set your own material glossiness and roughness etc.Does not require 3rd party renderers, plug-ins or scripts.They are designed to have minimal polygons so are not subdividable.Orign/Pivot point is placed in the centre of the handle.Real world scale of both swords is 0.89m oe 89cm in length.1024x1024px texture maps:Diffuse Color.Ambient Occlusion.Combined Diffuse and AO.Transparant UV Layout.Specular gloss.",Tetrahedron,Free, - All Extended Uses,2019-05-22,"['3D Studio', '0\n', 'Collada 1', '0\n', 'FBX 1', '0\n', 'OBJ 1', '0\n']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'broadsword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/broadsword']","['Sword', 'Weapon', 'Armor', 'melee']","['https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/melee']" +Espresso machine ,Cartoon-style espresso machine.,alandell,Free, - All Extended Uses,2019-05-21,Unknown,"['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'coffee maker', 'espresso maker']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/coffee-maker', 'https://www.turbosquid.com/3d-model/espresso-maker']","['espresso', 'machine', 'coffee', 'cafe', 'barista', 'latte', 'mocha', 'cartoon', 'retro', 'coffeemaker']","['https://www.turbosquid.com/Search/3D-Models/espresso', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/cafe', 'https://www.turbosquid.com/Search/3D-Models/barista', 'https://www.turbosquid.com/Search/3D-Models/latte', 'https://www.turbosquid.com/Search/3D-Models/mocha', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/coffeemaker']" +Tutorials - project files - free series 01,"Hello Everyone,We are providing you all Project Files of our Tutorial from YouTube Channel 'Project.01 Design School' for Free.So Hurry... & Grab the Opportunity.You can Find all Tutorials on YouTube using name 'Project01 Design School'.Thank you Team Project.01 Design School",Project01 Design Studio,Free, - All Extended Uses,2019-05-21,['Other '],"['3D Model', 'holidays', 'holiday accessories', 'balloons']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/seasons-and-holidays', 'https://www.turbosquid.com/3d-model/holiday-accessories', 'https://www.turbosquid.com/3d-model/balloons']","['3ds', 'max', 'after', 'effects', 'vray', 'candle', 'soccer', 'volley', 'golf', 'ball', 'fire', 'smoke', 'liquid']","['https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/after', 'https://www.turbosquid.com/Search/3D-Models/effects', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/candle', 'https://www.turbosquid.com/Search/3D-Models/soccer', 'https://www.turbosquid.com/Search/3D-Models/volley', 'https://www.turbosquid.com/Search/3D-Models/golf', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/smoke', 'https://www.turbosquid.com/Search/3D-Models/liquid']" +Bathroom design,bathrooms,iosebi,Free, - Editorial Uses Only,2019-05-21,['JPEG '],"['3D Model', 'interior design', 'interior', 'residential spaces', 'restroom']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/residential-spaces', 'https://www.turbosquid.com/3d-model/restroom']","['batch', 'design']","['https://www.turbosquid.com/Search/3D-Models/batch', 'https://www.turbosquid.com/Search/3D-Models/design']" +Disco ball ,Low poly Discoball. The geometry is clean. Polygonal Quads only.,dimitriwittmann,Free, - All Extended Uses,2019-05-21,"['3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'stage light', 'strobe', 'discoball']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/stage-light', 'https://www.turbosquid.com/3d-model/strobe', 'https://www.turbosquid.com/3d-model/discoball']","['discoball', 'disco', 'ball', 'mirrorball']","['https://www.turbosquid.com/Search/3D-Models/discoball', 'https://www.turbosquid.com/Search/3D-Models/disco', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/mirrorball']" +Starter short sword ,Worn Sword 3D ModelPRB Texture 4096x4096Renders were done in Marmoset Toolbag 3.06,GetDeadEntertainment,Free, - All Extended Uses,2019-05-20,"['Other PNG', 'FBX fbx', 'Other mtl', 'OBJ obj']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']","['sword', 'weapon', 'dagger', 'sharp', 'steel', 'military', 'bladed', 'weapon', 'knight', 'fantasy', 'medieval', 'starter', 'sword', 'war', 'crusader', 'worn', 'junk', 'warrior', 'warrior', 'army', 'old', 'dirty', 'mel']","['https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/dagger', 'https://www.turbosquid.com/Search/3D-Models/sharp', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/bladed', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/starter', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/crusader', 'https://www.turbosquid.com/Search/3D-Models/worn', 'https://www.turbosquid.com/Search/3D-Models/junk', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/dirty', 'https://www.turbosquid.com/Search/3D-Models/mel']" +Gold band ring ,"Simple Gold band Ring 3D Model.PBR Texture in: 4096x4096 and 2048x2048All Preview Renders were done in Marmoset Toolbag 3.06.If you like it, please give us a like and a follow. :)",GetDeadEntertainment,Free, - All Extended Uses,2019-05-20,"['FBX fbx', 'Other mtl', 'OBJ obj', 'Other PNG']","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'gold ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/gold-ring']","['jewelry', 'gold', 'ring', 'wedding', 'fashion', 'ring', 'engagement', 'clothing', 'medieval', 'loot', 'character', 'treasure', 'sterling', 'fashion', 'and', 'beauty', 'apparel', 'jewellery', 'props', 'jewel']","['https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/wedding', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/engagement', 'https://www.turbosquid.com/Search/3D-Models/clothing', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/loot', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/treasure', 'https://www.turbosquid.com/Search/3D-Models/sterling', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewellery', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/jewel']" +Pen,Pen made it in Cinema 4D.,Zky3d,Free, - All Extended Uses,2019-05-20,Unknown,"['3D Model', 'office', 'office supplies', 'writing instrument', 'pen', 'ballpoint pen']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/writing-instrument', 'https://www.turbosquid.com/3d-model/pen', 'https://www.turbosquid.com/3d-model/ballpoint-pen']","['Pencil', 'Blue', 'Pen', 'Lapicera', 'Lapiz', 'Marcador', 'Parker']","['https://www.turbosquid.com/Search/3D-Models/pencil', 'https://www.turbosquid.com/Search/3D-Models/blue', 'https://www.turbosquid.com/Search/3D-Models/pen', 'https://www.turbosquid.com/Search/3D-Models/lapicera', 'https://www.turbosquid.com/Search/3D-Models/lapiz', 'https://www.turbosquid.com/Search/3D-Models/marcador', 'https://www.turbosquid.com/Search/3D-Models/parker']" +Wooden chess set complete,"A traditional chess set complete with real ash, oak and walnut textures. There has been many beautiful chess sets created for this wonderful game I hope this is one of them. Includes reflection mapping for subtle chess board effect and subtle shadows for even more effect.",usman039,Free, - All Extended Uses,2019-05-20,"['OBJ ', 'Other ']","['3D Model', 'toys and games', 'games', 'chess', 'chess set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/chess', 'https://www.turbosquid.com/3d-model/chess-set']","['Chess', 'Pawn', 'Knight', 'Bishop', 'Rook', 'Queen', 'King', 'Board', 'Chessboard', 'White', 'Black', 'Wood', 'Wooden', '3DS', 'Max', 'Game', 'Boardgame', 'Checkmate', 'Check', 'Kasparov', 'Fischer']","['https://www.turbosquid.com/Search/3D-Models/chess', 'https://www.turbosquid.com/Search/3D-Models/pawn', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/bishop', 'https://www.turbosquid.com/Search/3D-Models/rook', 'https://www.turbosquid.com/Search/3D-Models/queen', 'https://www.turbosquid.com/Search/3D-Models/king', 'https://www.turbosquid.com/Search/3D-Models/board', 'https://www.turbosquid.com/Search/3D-Models/chessboard', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/black', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/boardgame', 'https://www.turbosquid.com/Search/3D-Models/checkmate', 'https://www.turbosquid.com/Search/3D-Models/check', 'https://www.turbosquid.com/Search/3D-Models/kasparov', 'https://www.turbosquid.com/Search/3D-Models/fischer']" +Monster truck wheels ,"Low poly Monster Truck wheel concept. Model Contains rubber wheel and rim.Modeled and rendered in AutoDesk Softimage.Formats: FBX,",usman039,Free, - All Extended Uses,2019-05-20,"['OBJ ', 'Other ']","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel']","['monster', 'truck', 'wheel', 'tire', 'rim', 'concept', 'par', 'vehicle', 'offroad', 'allterrain', 'monstertruck']","['https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/rim', 'https://www.turbosquid.com/Search/3D-Models/concept', 'https://www.turbosquid.com/Search/3D-Models/par', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/offroad', 'https://www.turbosquid.com/Search/3D-Models/allterrain', 'https://www.turbosquid.com/Search/3D-Models/monstertruck']" +Cream starter ,"Cream Starter, the stand of Hot Pants from Jojo's Bizarre Adventure Part 7: Steel Ball run.",auxiliary_,Free, - All Extended Uses,2019-05-19,"['Collada ', 'STL ', 'FBX ']","['3D Model', 'weaponry', 'weapons', 'ordnance accessories', 'weapon foregrip']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/ordnance-accessories', 'https://www.turbosquid.com/3d-model/weapon-foregrip']","[""Jojo's"", 'Bizzare', 'Adventure']","['https://www.turbosquid.com/Search/3D-Models/jojo%27s', 'https://www.turbosquid.com/Search/3D-Models/bizzare', 'https://www.turbosquid.com/Search/3D-Models/adventure']" +Philips ,Computer,iosebi,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-19,Unknown,"['3D Model', 'technology', 'computer', 'desktop computer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer', 'https://www.turbosquid.com/3d-model/desktop-computer']",['Computer'],['https://www.turbosquid.com/Search/3D-Models/computer'] +Roman pack ,This bundle contains 13 models for things I most associate with ancient Rome:Roman ShieldGladius (Roman Sword)Roman HelmetBallistaPilumPilum RackSpike WallsWatch TowerLong BowWeapon/Shield RackWooden Barbarian ShieldReenforced Barbarian ShieldBarbarian SwordAll the models have been textured to the best of my ability. The Models are stored in the 'Individual Models' folder and the textures/height maps/ normal maps etc in the 'Textures' folder. There is also a .obj file that shows all the models in one place for demonstration purposes.,MSvenTorjusC1999,Free, - All Extended Uses,2019-05-19,"['OBJ ', 'Other ']","['3D Model', 'weaponry', 'weapons']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons']","['Roman', '3D', 'History', 'Weapons', 'Shield', 'Helmet', 'Tower', 'Spike', 'Wall', 'Sword', 'Pilum', 'Rack', 'Stand', 'Ballista', 'War']","['https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/history', 'https://www.turbosquid.com/Search/3D-Models/weapons', 'https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/tower', 'https://www.turbosquid.com/Search/3D-Models/spike', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/pilum', 'https://www.turbosquid.com/Search/3D-Models/rack', 'https://www.turbosquid.com/Search/3D-Models/stand', 'https://www.turbosquid.com/Search/3D-Models/ballista', 'https://www.turbosquid.com/Search/3D-Models/war']" +Health gun free low-poly ,"Health Gun pickup made for consol/PC and mobile games. Model is low poly and all textures are on a single UV tile ready to be placed into the game engine.Features:Full UVed and textured model.Consol, PC and mobile Game Ready.1024x1024 resolution textures.works well with the Health Box pickup model (Check my models for this asset).Enjoy and also check out my other models!",cycodev,Free, - All Extended Uses,2019-05-18,['OBJ '],"['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/raygun']","['health', 'gun', 'pick', 'up', 'medkit', 'meds', 'medic', 'game']","['https://www.turbosquid.com/Search/3D-Models/health', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/pick', 'https://www.turbosquid.com/Search/3D-Models/up', 'https://www.turbosquid.com/Search/3D-Models/medkit', 'https://www.turbosquid.com/Search/3D-Models/meds', 'https://www.turbosquid.com/Search/3D-Models/medic', 'https://www.turbosquid.com/Search/3D-Models/game']" +Easy chair 02,Wooden easy chair,Tjasablabla,Free, - All Extended Uses,2019-05-18,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['easychair', 'chair', 'furniture', 'wood', 'sofa']","['https://www.turbosquid.com/Search/3D-Models/easychair', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/sofa']" +Classic wall panel,classic wall panel you can use for your interior and exterior projects,rasull,Free, - Editorial Uses Only,2019-05-18,Unknown,"['3D Model', 'interior design', 'housewares', 'general decor', 'picture frame']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/picture-frame']","['classic', 'panel', '3d', 'model', 'interior', 'design', 'free', 'wall']","['https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/wall']" +Atom molecule,Atom Molecule,kiankh,Free, - All Extended Uses,2019-05-18,"['FBX ', 'OBJ ']","['3D Model', 'science', 'chemistry', 'atom']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/chemistry', 'https://www.turbosquid.com/3d-model/atom']","['molecule', 'science', 'atom', 'chart', 'of', 'the', 'elements']","['https://www.turbosquid.com/Search/3D-Models/molecule', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/atom', 'https://www.turbosquid.com/Search/3D-Models/chart', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/elements']" +Cartoonish lowpoly grass patch ,"The model was originally created in Maya 3D 2018, then fully textured and rendered using arnold.Features: -All textures and materials are tailored and applied for high quality render results. -All objects have fully unwrapped UVs. -No extra plugins are needed for this model. Specifications:        -Model is included in fbx formats.                 -OBJ        -Model consists of 86864 Faces and 52600 Vertices.        -Model consists of quads only.        -All Textures are JPG format file.",usman039,Free, - All Extended Uses,2019-05-18,['FBX '],"['3D Model', 'nature', 'plants', 'grasses', 'ornamental grass', 'summer grass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/grasses', 'https://www.turbosquid.com/3d-model/ornamental-grass', 'https://www.turbosquid.com/3d-model/summer-grass']","['plant', 'dirt', 'rock', 'boulder', 'jag', 'jagged', 'desert', 'soil', 'sand', 'area', 'sandy', 'cross', 'grass', 'grassy', 'section', 'dune', 'dunes', 'deserts', 'landscape', 'land', 'terrain', 'part']","['https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/dirt', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/boulder', 'https://www.turbosquid.com/Search/3D-Models/jag', 'https://www.turbosquid.com/Search/3D-Models/jagged', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/soil', 'https://www.turbosquid.com/Search/3D-Models/sand', 'https://www.turbosquid.com/Search/3D-Models/area', 'https://www.turbosquid.com/Search/3D-Models/sandy', 'https://www.turbosquid.com/Search/3D-Models/cross', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/grassy', 'https://www.turbosquid.com/Search/3D-Models/section', 'https://www.turbosquid.com/Search/3D-Models/dune', 'https://www.turbosquid.com/Search/3D-Models/dunes', 'https://www.turbosquid.com/Search/3D-Models/deserts', 'https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/land', 'https://www.turbosquid.com/Search/3D-Models/terrain', 'https://www.turbosquid.com/Search/3D-Models/part']" +Mini bar ,a liitle wooden tiki bar,mehdaoui_saleh,Free, - All Extended Uses,2019-05-16,"['FBX ', 'OBJ ', '3D Studio']","['3D Model', 'furnishings', 'bar counter', 'tiki bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bar-counter', 'https://www.turbosquid.com/3d-model/tiki-bar']","['mini', 'bar']","['https://www.turbosquid.com/Search/3D-Models/mini', 'https://www.turbosquid.com/Search/3D-Models/bar']" +Glass,WINE GLASS:2 glasses: with and without wine.No liquid modifier just materials: red glass and white.Object has 1026 polygons and 1088 verts.no texturesEnjoy it.,TdeX,Free, - All Extended Uses,2019-05-15,"['FBX ', 'OBJ ']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'wine glass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/wine-glass']","['Glass', 'wine', 'with', 'wine.']","['https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/wine', 'https://www.turbosquid.com/Search/3D-Models/with', 'https://www.turbosquid.com/Search/3D-Models/wine.']" +Pan low poly ,"Made with 3DS MAX2017POLY:766VERTS:766Textured and unwrapped.No subdivide polys :201 ,verts:183",diggy17,Free, - All Extended Uses,2019-05-14,"['OBJ 2017', 'FBX 2017']","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'pan', 'frying pan']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/pan', 'https://www.turbosquid.com/3d-model/frying-pan']","['Low', 'poly', 'pan', 'for', 'games']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/pan', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/games']" +Kettle ,Simple kettleSubdivision readyClean geometryUnwrapped UV's,VIR7,Free, - All Extended Uses,2019-05-14,"['FBX ', 'OBJ ']","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'kettle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/kettle']","['kettle', 'kitchen', 'kitchenware', 'tea', 'coffee']","['https://www.turbosquid.com/Search/3D-Models/kettle', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/kitchenware', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/coffee']" +Wine barrel ,WINE BARREL:Object made in blender (version: 2.79).Polygons and Verts:Verts: 1849Polygons: 1804Object is UV unwrapped.Files: OBJ FBX including textures.,TdeX,Free, - All Extended Uses,2019-05-14,"['FBX ', 'OBJ ']","['3D Model', 'industrial', 'industrial container', 'barrel', 'wooden barrel', 'wine barrel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/barrel', 'https://www.turbosquid.com/3d-model/wooden-barrel', 'https://www.turbosquid.com/3d-model/wine-barrel']","['Wine', 'Barrel', 'beer', 'wood', 'metal', 'liquid', 'old']","['https://www.turbosquid.com/Search/3D-Models/wine', 'https://www.turbosquid.com/Search/3D-Models/barrel', 'https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/liquid', 'https://www.turbosquid.com/Search/3D-Models/old']" +Four pack of soda can,"Model are extremely detailed, suitable for photo realistic scenes and closeups alike. Model is high poly, and intended for photo real arnold scenes.",usman039,Free, - All Extended Uses,2019-05-14,['FBX '],"['3D Model', 'food and drink', 'beverages', 'soda', 'soda can']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/beverages', 'https://www.turbosquid.com/3d-model/soda', 'https://www.turbosquid.com/3d-model/soda-can']","['can', 'beer', 'cola', 'juice', 'drink', 'soda', 'beverage']","['https://www.turbosquid.com/Search/3D-Models/can', 'https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/cola', 'https://www.turbosquid.com/Search/3D-Models/juice', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/soda', 'https://www.turbosquid.com/Search/3D-Models/beverage']" +Cardboard - game ready free low-poly ,Basic Game-Ready Mesh. Everything was done by me and you can do with it what you want.1024x1024 texture *.png double-sided Mesh texture is unbaked to give you the option to change the texture,Latannan,Free, - All Extended Uses,2019-05-13,['FBX '],"['3D Model', 'interior design', 'housewares', 'box', 'cardboard box']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/box', 'https://www.turbosquid.com/3d-model/cardboard-box']","['Cardboard', 'Box', 'Delivery', 'Warehouse', 'Package']","['https://www.turbosquid.com/Search/3D-Models/cardboard', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/delivery', 'https://www.turbosquid.com/Search/3D-Models/warehouse', 'https://www.turbosquid.com/Search/3D-Models/package']" +Shield,"Lowpoly model of wooden shield in handpaint style- 340 polygons- 371 verticesCorrect geometryTexture size 2048x2048, PNG format",Drakulla,Free, - All Extended Uses,2019-05-13,"['Collada ', 'FBX ', 'OBJ ']","['3D Model', 'weaponry', 'armour', 'shield']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/shield']","['shield', 'viking', 'antique', 'Medieval', 'Knight', 'Fantasy', 'Historic', 'Max', 'armour', 'armor', 'battle', 'war', 'free']","['https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/viking', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/historic', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/armour', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/free']" +Sport bottle,a sports bottle i designed it and modeled it by blender check it out and tell me your opinion took me few hours i added material and rendering .,MusiritoKun,Free, - All Extended Uses,2019-05-13,Unknown,"['3D Model', 'sports', 'exercise equipment', 'sports bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/sports-bottle']","['sports', 'design', ""musirito's"", 'for', 'free', 'high', 'quality', 'bottle']","['https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/musirito%27s', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/quality', 'https://www.turbosquid.com/Search/3D-Models/bottle']" +M1911 ,"This is a high quality, realistic model of the Remington model 1911.It comes textured which was created in substance painter and UV unwrapped in blender, the UV maps are not perfect but allow the texture to cover the weapon well.High poly model contains over 700,000 vertsI have included the High poly and Low poly files.Each object in the model is its own object, meaning each object is UV unwrapped and texture to the best of my current ability. I think the model came out really well!Thank you for viewing my model!",AJSGaming,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-12,"['OBJ ', 'FBX ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'semi-automatic pistol']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun', 'https://www.turbosquid.com/3d-model/semi-automatic-pistol']","['Gun', 'M1911', 'Pistol', 'Colt', 'Weapons', 'Weaponry', 'Arms', 'Armory', 'Handgun', 'military', 'old', 'marines']","['https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/m1911', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/colt', 'https://www.turbosquid.com/Search/3D-Models/weapons', 'https://www.turbosquid.com/Search/3D-Models/weaponry', 'https://www.turbosquid.com/Search/3D-Models/arms', 'https://www.turbosquid.com/Search/3D-Models/armory', 'https://www.turbosquid.com/Search/3D-Models/handgun', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/marines']" +Ka-bar high poly ,"Model of the KA-BAR knife is a high quality, photo real model that will enhance detail and realism to any of your rendering projects. The model has a fully textured, detailed design that allows for close-up renders, and was originally modeled in 3ds Max 2018 and rendered with V-Ray. Fidelity is optimal up to a 4k render. Renders have no postprocessing.Hope you like it!Features:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- Model is fully textured with all materials applied.- No part-name confusion when importing several models into a scene.- No cleaning up necessaryjust drop your models into the scene and start rendering.- No special plugin needed to open scene.- Model does not include any backgrounds or scenes used in preview images.- Units: cmFile Formats:- 3ds Max 2018 V-Ray and standard materials scenes- 3ds Max 2017- 3ds Max 2016- 3ds Max 2015- OBJ (Multi Format)- 3DS (Multi Format)- FBX (Multi Format)Textures Formats:- (6 .png) 4096 x 4096DiffuseReflectionGlossinessiorNormalHeight- High quality polygonal model-Texturing Substance Painter - render with V-ray 3.60 in 3ds Max 2018- display unit scale : santimtric (cm)- system unit setup : 1 unit = 1 cm- OBJ (multi format) subdivision 0- FBX (multi format) subdivision 05122 polygons no TurboSmooth / 40934 TurboSmooth Lv15183 vertices no TurboSmooth / 20606 TurboSmooth Lv1",XwarX _ Serob Tsarukyan,Free, - All Extended Uses,2019-05-12,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'combat knife', 'ka-bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/combat-knife', 'https://www.turbosquid.com/3d-model/ka-bar']","['KABAR', 'KA-BAR', 'knife', 'marines', 'war', 'fighting', 'combat', 'army', 'blade', 'weapon', '3d', '3dsmax', 'high', 'highpoly', '4k']","['https://www.turbosquid.com/Search/3D-Models/kabar', 'https://www.turbosquid.com/Search/3D-Models/ka-bar', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/marines', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/fighting', 'https://www.turbosquid.com/Search/3D-Models/combat', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/3dsmax', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/highpoly', 'https://www.turbosquid.com/Search/3D-Models/4k']" +Axe pbr low-poly 4k,"Axe PBR Low-Poly 4KI invented it myself (Everything belongs to me)Check out my other work____________________________________Texture Sizes:All - 4096x4096(BaseColor, Roughness, Metalness,Normal)PNG* Geometry: Polygon mesh* Polygons:154* Vertices:82* Rigged - No* Animated - No* LOW-POLY - Yes* PBR - Yes* Number of Meshes: 1* Number of Textures:: 4* Materials - 1* UVW mapping - Non-overlapping* LODs: 0* Documentation:No* mportant/Additional Notes: No>Tegs:axeaxhatchetcleaverweapongunweaponryunityunreal engine 4cryengineVR",GooPi,Free, - All Extended Uses,2019-05-12,"['3D Studio', 'FBX ', 'OBJ ', 'STL ']","['3D Model', 'industrial', 'tools', 'cutting tools', 'axe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cutting-tools', 'https://www.turbosquid.com/3d-model/axe']","['axe', 'ax', 'hatchet', 'cleaver', 'weapon', 'gun', 'weaponry', 'unity', 'unreal', 'engine', '4', 'cryengine', 'VR']","['https://www.turbosquid.com/Search/3D-Models/axe', 'https://www.turbosquid.com/Search/3D-Models/ax', 'https://www.turbosquid.com/Search/3D-Models/hatchet', 'https://www.turbosquid.com/Search/3D-Models/cleaver', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/weaponry', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/4', 'https://www.turbosquid.com/Search/3D-Models/cryengine', 'https://www.turbosquid.com/Search/3D-Models/vr']" +Dining table round for 4 people ,**Photorealistic 3D model round dining table is a perfect solution for any kitchen or dining room area that you might create as a part of your 3D visualization**High quality 3d model for interior design.Width x Height x Depth / 2200 mm x 1150 mm x 2300 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.*Your Danthree team */ 3d models modelled with love to every detail,Danthree,Free, - All Extended Uses,2019-05-12,"['OBJ ', '3D Studio', 'FBX ']","['3D Model', 'furnishings', 'table', 'dining table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table']","['table', 'kitchen', 'furniture', 'interior', 'design', 'modern', 'room', 'wood', 'living', 'restaurant', 'dining-table', 'metal']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/dining-table', 'https://www.turbosquid.com/Search/3D-Models/metal']" +Smart tv ,Photorealistic 3d TV for interior designHigh quality 3d model for interior design.Width x Height x Depth / 1100 mm x 675 mm x 170 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.Your Danthree team / 3d models modelled with love to every detail,Danthree,Free, - All Extended Uses,2019-05-12,"['OBJ ', '3D Studio', 'FBX ']","['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/flatscreen-television']","['tv', 'electronic', 'technology', 'screen', 'video', 'lcd', 'hd', 'led', 'monitor', 'television', 'entertainment', 'laptop', 'omputer-equipment', 'ultra', 'uhd', 'interior', 'living']","['https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/technology', 'https://www.turbosquid.com/Search/3D-Models/screen', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/lcd', 'https://www.turbosquid.com/Search/3D-Models/hd', 'https://www.turbosquid.com/Search/3D-Models/led', 'https://www.turbosquid.com/Search/3D-Models/monitor', 'https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/entertainment', 'https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/omputer-equipment', 'https://www.turbosquid.com/Search/3D-Models/ultra', 'https://www.turbosquid.com/Search/3D-Models/uhd', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/living']" +Classic table lamp round free,**Photorealistic round 3d table lamp for office and living area** High quality 3d model for interior design.Width x Height x Depth / 215 mm x 500 mm x 350 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.*Your Danthree team */ 3d models modelled with love to every detail,Danthree,Free, - All Extended Uses,2019-05-12,"['OBJ ', '3D Studio', 'FBX ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['living', 'amp', 'table-lamp', 'tablelamp', 'furniture', 'interior', 'table', 'home', 'light', 'lighting', 'design']","['https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/amp', 'https://www.turbosquid.com/Search/3D-Models/table-lamp', 'https://www.turbosquid.com/Search/3D-Models/tablelamp', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/lighting', 'https://www.turbosquid.com/Search/3D-Models/design']" +Medieval chest ,"Medieval chest all texture 2048x2048 (basecolor, metallic ,roughness, AO, normal) game ready model. Can use this for exterior and interior scene",Young_Wizard,Free, - All Extended Uses,2019-05-11,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'chest', 'wooden chest']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/chest', 'https://www.turbosquid.com/3d-model/wooden-chest']","['chest', 'crate', 'storage', 'medieval', 'box', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/chest', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Optical puzzle ,"The model needs to be turned at a certain angle********************************* Hope you like it! Also check out my other models, just click on my user name to see complete gallery.",3d_new,Free, - All Extended Uses,2019-05-11,"['IGES 5', '3\n', 'FBX 2009', 'STL 80']","['3D Model', 'toys and games', 'games', 'puzzle', 'puzzle cube']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/puzzle', 'https://www.turbosquid.com/3d-model/puzzle-cube']","['impossible', 'cuboid', 'visual', 'optical', 'illusion', '3D', 'trick', 'puzzle', 'conundrum', 'jigsaw', 'riddle']","['https://www.turbosquid.com/Search/3D-Models/impossible', 'https://www.turbosquid.com/Search/3D-Models/cuboid', 'https://www.turbosquid.com/Search/3D-Models/visual', 'https://www.turbosquid.com/Search/3D-Models/optical', 'https://www.turbosquid.com/Search/3D-Models/illusion', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/trick', 'https://www.turbosquid.com/Search/3D-Models/puzzle', 'https://www.turbosquid.com/Search/3D-Models/conundrum', 'https://www.turbosquid.com/Search/3D-Models/jigsaw', 'https://www.turbosquid.com/Search/3D-Models/riddle']" +Sofa ,Cadillac Sofa Rugiano,aya2299,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-11,['Other 2015'],"['3D Model', 'furnishings', 'seating', 'sofa']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/sofa']","['Sofa', 'livivg']","['https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/livivg']" +Game container ,"Game ContainerContainer Free. Hi friends, I share the free requisite for the game environment, I hope you will be pleased to receive a free model! And so what is in the archives.1) HighPoly model for baking2) LowPoly model for baking3) LowPoly model for texturing4) Game LowPoly model with real size",SkilHardRU,Free, - All Extended Uses,2019-05-11,"['FBX 16', 'OBJ 16', '3D Studio', 'Project png']","['3D Model', 'vehicles', 'vehicle parts', 'spacecraft parts', 'sci fi container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/spacecraft-parts', 'https://www.turbosquid.com/3d-model/sci-fi-container']","['Sci-fi', 'props', 'crate', 'box', 'military', 'halway', 'panel', 'free', 'industrial', 'scifi', 'game', 'games', 'container', 'kargo', 'cargo']","['https://www.turbosquid.com/Search/3D-Models/sci-fi', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/halway', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/games', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/kargo', 'https://www.turbosquid.com/Search/3D-Models/cargo']" +City bryzeziny poland,Accurate part of city in lodz Piotkowska streetMasses of enviroment,ymcmbennie,Free, - All Extended Uses,2019-05-10,Unknown,"['3D Model', 'architecture', 'urban design', 'city']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/city']",['#architecture'],['https://www.turbosquid.com/Search/3D-Models/%23architecture'] +Blue moon spacecraft ,3D Blue moon spacecraftIMPORTANT : Please note that the dimensions are approximate.Thank you.,AdrienJ,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-10,"['OBJ ', 'Other ']","['3D Model', 'vehicles', 'spacecraft', 'lander']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/lander']","['""Blue', 'Moon""', 'jeff', 'besos', 'amazon', 'spacecraft', 'nasa']","['https://www.turbosquid.com/Search/3D-Models/%22blue', 'https://www.turbosquid.com/Search/3D-Models/moon%22', 'https://www.turbosquid.com/Search/3D-Models/jeff', 'https://www.turbosquid.com/Search/3D-Models/besos', 'https://www.turbosquid.com/Search/3D-Models/amazon', 'https://www.turbosquid.com/Search/3D-Models/spacecraft', 'https://www.turbosquid.com/Search/3D-Models/nasa']" +Couch ,A nice couch :),tauan_bellintani,Free, - All Extended Uses,2019-05-09,['FBX '],"['3D Model', 'furnishings', 'seating', 'sofa', 'leather sofa']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/sofa', 'https://www.turbosquid.com/3d-model/leather-sofa']","['couch', 'old', 'antique', 'vintage', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/couch', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Audio speaker ,Multi Media audio speakerPolygons : 1030Vertex : 8708,AdrienJ,Free, - All Extended Uses,2019-05-09,Unknown,"['3D Model', 'technology', 'computer equipment', 'computer speakers']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-speakers']","['Audio', 'Speaker', 'Computer', 'PC']","['https://www.turbosquid.com/Search/3D-Models/audio', 'https://www.turbosquid.com/Search/3D-Models/speaker', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pc']" +Desk ,A low poly deskto use in decorations.,tauan_bellintani,Free, - All Extended Uses,2019-05-08,['Other '],"['3D Model', 'furnishings', 'desk', 'office desk', 'workstation']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/office-desk', 'https://www.turbosquid.com/3d-model/workstation']","['desk', 'wood', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Chair ,A low poly chair to use in decorations.,tauan_bellintani,Free, - All Extended Uses,2019-05-08,['FBX '],"['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['chair', 'furniture', 'decoration', 'wood']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/wood']" +Armchair ,A low poly armchair to use in decorations.,tauan_bellintani,Free, - All Extended Uses,2019-05-08,['FBX '],"['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['armchair', 'chair', 'furniture', 'house']","['https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/house']" +Nightstand ,A low poly nightstand to use in decorations.,tauan_bellintani,Free, - All Extended Uses,2019-05-08,Unknown,"['3D Model', 'furnishings', 'night stand']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/night-stand']","['wood', 'nightstand', 'stand', 'furniture', 'bedroom']","['https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/nightstand', 'https://www.turbosquid.com/Search/3D-Models/stand', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Cube animatable ,polygons 6359vertex 5895,AdrienJ,Free, - Editorial Uses Only,2019-05-08,Unknown,"['3D Model', 'toys and games', 'games', 'puzzle', 'puzzle cube']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/puzzle', 'https://www.turbosquid.com/3d-model/puzzle-cube']","['children', 'entertainment', 'child', 'cube', 'game', 'geek']","['https://www.turbosquid.com/Search/3D-Models/children', 'https://www.turbosquid.com/Search/3D-Models/entertainment', 'https://www.turbosquid.com/Search/3D-Models/child', 'https://www.turbosquid.com/Search/3D-Models/cube', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/geek']" +Cabinet-01 ,"Previews were rendered with Autocad 2010 V-Ray 3.6.03 for 3ds Max 2017.Includes image file textures~~~~~~~~~~~~~~~~~~Hope you like it!Also check out my other models, just click on fabline to see complete gallery.",Fabline,Free, - All Extended Uses,2019-05-08,"['AutoCAD drawing', '2007\n', 'FBX 2014', 'Other ', 'OBJ ']","['3D Model', 'furnishings', 'cabinet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/cabinet']","['furniture', 'cabinet']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/cabinet']" +Fortnite floss dance emote free ,3D Sloth Floss Dance And Free for any Commercial Use.,dumpgermanlucas,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-08,"['FBX 2016', 'Other ']","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'sloth']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/sloth']","['dance', 'sloth', '3d-animation', 'emote', 'free-model', 'floss', 'fortnite', 'flossdance', 'fortnite-animation', '3d', 'free', 'fortnite-floss-emotes', 'floss-dance']","['https://www.turbosquid.com/Search/3D-Models/dance', 'https://www.turbosquid.com/Search/3D-Models/sloth', 'https://www.turbosquid.com/Search/3D-Models/3d-animation', 'https://www.turbosquid.com/Search/3D-Models/emote', 'https://www.turbosquid.com/Search/3D-Models/free-model', 'https://www.turbosquid.com/Search/3D-Models/floss', 'https://www.turbosquid.com/Search/3D-Models/fortnite', 'https://www.turbosquid.com/Search/3D-Models/flossdance', 'https://www.turbosquid.com/Search/3D-Models/fortnite-animation', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/fortnite-floss-emotes', 'https://www.turbosquid.com/Search/3D-Models/floss-dance']" +Chateau de cheverny,"Chateau de cheverny / Chateau de moulinsartFrench castlePolygons :78971Vertex : 91968The castle of Cheverny is located in Sologne, on the commune of Cheverny, in the department of Loir-et-Cher and the region Centre-Val de Loire. It is one of the most frequented Loire castles with those of Blois and Chambord, very close. Classified as 'Historic Monuments', this castle is raised in the seventeenth century.He inspired Herge to create the Moulinsart castle, which is a replica of it.",AdrienJ,Free, - All Extended Uses,2019-05-08,['Other '],"['3D Model', 'architecture', 'building', 'residential building', 'manor']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/manor']","['Chateau', 'castle', 'cheverny', 'france', 'tintin', 'moulinsart', '3d', 'French']","['https://www.turbosquid.com/Search/3D-Models/chateau', 'https://www.turbosquid.com/Search/3D-Models/castle', 'https://www.turbosquid.com/Search/3D-Models/cheverny', 'https://www.turbosquid.com/Search/3D-Models/france', 'https://www.turbosquid.com/Search/3D-Models/tintin', 'https://www.turbosquid.com/Search/3D-Models/moulinsart', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/french']" +High poly realistic tree ,this is a very high poly tree and also very realistic. this tree have pbr texture and proper transparent shader,nahidhassan881,Free, - All Extended Uses,2019-05-08,Unknown,"['3D Model', 'nature', 'tree', 'deciduous tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/deciduous-tree']","['high', 'poly', 'realistic', 'tree']","['https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/tree']" +Fantasy dice ,A Dice with a Poker Symbol Ring,yoong5853,Free, - All Extended Uses,2019-05-07,"['Collada 1', 'FBX 1', 'Other 1', 'OBJ 1', 'STL 1']","['3D Model', 'toys and games', 'games', 'dice']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dice']","['dice', 'poker', 'casino', 'clubs', 'spades', 'diamonds', 'hearts', 'ring', 'round', 'symbol', 'fantasy', 'gamble']","['https://www.turbosquid.com/Search/3D-Models/dice', 'https://www.turbosquid.com/Search/3D-Models/poker', 'https://www.turbosquid.com/Search/3D-Models/casino', 'https://www.turbosquid.com/Search/3D-Models/clubs', 'https://www.turbosquid.com/Search/3D-Models/spades', 'https://www.turbosquid.com/Search/3D-Models/diamonds', 'https://www.turbosquid.com/Search/3D-Models/hearts', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/symbol', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/gamble']" +Free 40mm grenade m433 ,"This is just a sample from the grenades pack.Built to specs (where available) and real dimensions. Very detailed and realistic but low poly and optimized. Triangle count is around 2000. Vertex Count: ~1500. Model in FBX and obj format. Textures are 1k (1024x1024). In the (paid) pack version all textures are 4k. Can be used as projectiles for weapons, attachments for characters or just as props. *Environment in the pictures is not included.",teodar23,Free, - All Extended Uses,2019-05-07,"['Other ', 'FBX ', 'OBJ ']","['3D Model', 'weaponry', 'munitions', 'grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade']","['grenade', 'ammo', 'projectile', '40mm', 'realistic', 'props', 'low-poly', 'game-ready', 'military', 'modern', 'M433']","['https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/ammo', 'https://www.turbosquid.com/Search/3D-Models/projectile', 'https://www.turbosquid.com/Search/3D-Models/40mm', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/m433']" +Alien game character,game character created for a game project called Alien escape rigging ready low poly model,Muhannad Alobaidi,Free, - All Extended Uses,2019-05-07,Unknown,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'alien']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/alien']","['character', 'gameready', 'game', 'alien', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/alien', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Pick pbr low-poly 4k ,"Pick PBR Low-Poly 4KI invented it myself (Everything belongs to me)Check out my other work____________________________________Texture Sizes:All - 4096x4096(BaseColor, Roughness, Metalness,Normal)PNG* Geometry: Polygon mesh* Polygons:276* Vertices:148* Rigged - No* Animated - No* LOW-POLY - Yes* PBR - Yes* Number of Meshes: 1* Number of Textures:: 4* Materials - 1* UVW mapping - Non-overlapping* LODs: 0* Documentation:No* mportant/Additional Notes: NoTegs:pickpickaxepickaxpickerweapongunweaponryunityunreal engine 4cryengineVR",GooPi,Free, - All Extended Uses,2019-05-07,"['3D Studio', 'FBX 7', '5 2016', 'OBJ ', 'STL ', 'Shockwave 3D']","['3D Model', 'industrial', 'tools', 'gardening tools', 'mattock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/gardening-tools', 'https://www.turbosquid.com/3d-model/mattock']","['pick', 'pickaxe', 'pickax', 'picker', 'weapon', 'gun', 'weaponry', 'unity', 'unreal', 'engine', '4', 'cryengine', 'VR']","['https://www.turbosquid.com/Search/3D-Models/pick', 'https://www.turbosquid.com/Search/3D-Models/pickaxe', 'https://www.turbosquid.com/Search/3D-Models/pickax', 'https://www.turbosquid.com/Search/3D-Models/picker', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/weaponry', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/4', 'https://www.turbosquid.com/Search/3D-Models/cryengine', 'https://www.turbosquid.com/Search/3D-Models/vr']" +Picnic table,Table picnic with relief UV map already done,milkmanfromhell.net,Free, - All Extended Uses,2019-05-06,['OBJ '],"['3D Model', 'furnishings', 'table', 'picnic table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/picnic-table']","['picnic', 'table', '3d', 'game']","['https://www.turbosquid.com/Search/3D-Models/picnic', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/game']" +Kitchen hood ,"Hello, I offer You a high quality 3D model of a kitchen hood. It is a part of a larger collection. Please check my other models. I am sure You will find a proper kitchen hood for Your scene. Regards",kristoM5,Free, - All Extended Uses,2019-05-01,"['3D Studio', 'AutoCAD drawing', '2013\n', 'FBX ', 'Other ', 'OBJ ']","['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'range hood']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/range-hood']","['kitchenhood', 'cooking', 'interior', 'furnishings', 'architecture', 'cooker', 'modern', 'steel', 'electric', 'equipment', 'oven', 'home', 'air', 'kitchen', 'hood']","['https://www.turbosquid.com/Search/3D-Models/kitchenhood', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/furnishings', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/cooker', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/electric', 'https://www.turbosquid.com/Search/3D-Models/equipment', 'https://www.turbosquid.com/Search/3D-Models/oven', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/air', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/hood']" +China-russia cr929 aircraft (speculative) solid assembly model (rev 2 free) ,"The China-Russia CR929Transport Aircraft Solid Assembly Model consists of 522 solid part primitives collected into 26 sub assembly modules. NOTE: This is a speculative model based on fragmentary information.All of my models are developed specifically for use by conceptual designers, experimenters, educators, students and hobbyists. The models are constructed from scratch employing scaling of publicly released simple 3 view drawings and experienced based assumptions. Although general representation is very good - detail accuracy and accountability can be compromised by this approach.Its FREE. Enjoy!",RodgerSaintJohn,Free, - All Extended Uses,2019-05-05,"['Other Step', '203\n', 'Other Sat']","['3D Model', 'vehicles', 'aircraft', 'airplane', 'jet', 'airliner']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/jet', 'https://www.turbosquid.com/3d-model/airliner']","['China', 'Russia', 'CR929', 'Aircraft', 'Speculative', 'Solid', 'Assembly', 'Model', 'Airplane', 'Aeronautics', 'Aerodynamics', 'Propulsion', 'Engine', 'Structure']","['https://www.turbosquid.com/Search/3D-Models/china', 'https://www.turbosquid.com/Search/3D-Models/russia', 'https://www.turbosquid.com/Search/3D-Models/cr929', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/speculative', 'https://www.turbosquid.com/Search/3D-Models/solid', 'https://www.turbosquid.com/Search/3D-Models/assembly', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/airplane', 'https://www.turbosquid.com/Search/3D-Models/aeronautics', 'https://www.turbosquid.com/Search/3D-Models/aerodynamics', 'https://www.turbosquid.com/Search/3D-Models/propulsion', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/structure']" +Flash-bang grenade zaria ,"Flash-Bang Grenade ZariaModel created in real world size. Units used - millimetersFeatures: - High-quality textures: 2048x2048- Textures complete - Diffuse(Albedo) map, Normal map, Specular map, AO- Optimized for games- LP and HP modelsRENDER: Marmoset Toolbag 2Quixel Suite 2Unity 5Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures.",MyNameIsVoo,Free, - All Extended Uses,2019-05-05,"['3D Studio', 'AutoCAD drawing', 'FBX ', 'OBJ ', 'STL ']","['3D Model', 'weaponry', 'munitions', 'grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade']","['Grenade', 'Flash', 'Bang', 'Zaria', 'Military', 'Arms', 'Gun', 'Stun', 'Bomb', 'Weapon', 'War', 'Explosives', 'Defence', 'Swat', 'Unity', 'Game', 'Low', 'Detailed', 'High']","['https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/flash', 'https://www.turbosquid.com/Search/3D-Models/bang', 'https://www.turbosquid.com/Search/3D-Models/zaria', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/arms', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/stun', 'https://www.turbosquid.com/Search/3D-Models/bomb', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/explosives', 'https://www.turbosquid.com/Search/3D-Models/defence', 'https://www.turbosquid.com/Search/3D-Models/swat', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/detailed', 'https://www.turbosquid.com/Search/3D-Models/high']" +Pubg pan ,"inspired from pubg...modelled in blender , textured in 3dcoat and rendered in marmoset toolbag3 ..available in fbx and obj format ...textures are in 2k sorry about that.. my laptop cant export 4k textures :(anyways i hope you love it ..have an amazing day:)and if you want any modification tell me :)AND PLZ PLZ PLZ PLZ PLZ PLZ RATE THIS MODEL PLZ PLZ",Sidrenders,Free, - Editorial Uses Only,2019-05-05,"['OBJ 1', 'FBX 1']","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'pan', 'frying pan']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/pan', 'https://www.turbosquid.com/3d-model/frying-pan']","['pan', 'pubg', 'gameassest', 'assests', 'props', 'model', '3dmodel', 'blender', 'pubgfanart']","['https://www.turbosquid.com/Search/3D-Models/pan', 'https://www.turbosquid.com/Search/3D-Models/pubg', 'https://www.turbosquid.com/Search/3D-Models/gameassest', 'https://www.turbosquid.com/Search/3D-Models/assests', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/3dmodel', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/pubgfanart']" +Small house,small house,Tako_,Free, - All Extended Uses,2019-05-04,Unknown,"['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']",['house'],['https://www.turbosquid.com/Search/3D-Models/house'] +Desk ,Desk.Free model made using the graphical editor Cinema 4D.,Pereplonov,Free, - All Extended Uses,2019-05-03,Unknown,"['3D Model', 'furnishings', 'desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk']","['desktop', 'Neon', 'table', 'computer', 'table', 'computer', 'Desk']","['https://www.turbosquid.com/Search/3D-Models/desktop', 'https://www.turbosquid.com/Search/3D-Models/neon', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/desk']" +Stone floor ,"A set of textures and models of additional objects to create a stone floor.- Polycount (tris):StoneFloor-SlabOne - 146,StoneFloor-SlabOne-LOD1 - 68,StoneFloor-SlabOne-LOD2 - 10,StoneFloor_SlabTwo - 154,StoneFloor_SlabTwo_LOD1 - 74,StoneFloor_SlabTwo_LOD2 - 10,StoneFloor_Ground - 29,StoneFloor_Ground_LOD1 - 10,StoneFloor_Ground_LOD2 - 2,StoneFloor-GrassOne - 16,StoneFloor-GrassOne-LOD1 - 8,StoneFloor-GrassOne-LOD2 - 4,StoneFloor-GrassTwo - 16,StoneFloor-GrassTwo-LOD1 - 8,StoneFloor-GrassTwo-LOD2 - 4,StoneFloor-FragmentOne - 40,StoneFloor-FragmentOne-LOD1 - 20,StoneFloor-FragmentOne-LOD2 - 10,StoneFloor-FragmentTwo - 44,StoneFloor-FragmentTwo-LOD1 - 22,StoneFloor-FragmentTwo-LOD2 - 10,StoneFloor-FragmentThree - 54,StoneFloor-FragmentThree-LOD1 - 26,StoneFloor-FragmentThree-LOD2 - 10,StoneFloor-FragmentFour - 50,StoneFloor-FragmentFour-LOD1 - 24,StoneFloor-FragmentFour-LOD2 - 10,StoneFloor-FragmentFive - 52,StoneFloor-FragmentFive-LOD1 - 26,StoneFloor-FragmentFive-LOD2 - 10.-Textures(.jpg, .tga, 4096x4096, 2048x2048, 1024x1024):Diffuse,Normal,Specular.The models was created in the program Blender 2.79. Native files are in archive BLEND. Also in the corresponding archives there are files for import: 3DS, FBX, OBJ. Textures can be found in archives TEXTURES and BONUS (additional textures that can be useful to someone in the work).",4Engine,Free, - All Extended Uses,2019-05-03,"['3D Studio', 'Other ', 'FBX ', 'OBJ ']","['3D Model', 'interior design', 'finishes', 'flooring', 'tile']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/finishes', 'https://www.turbosquid.com/3d-model/flooring', 'https://www.turbosquid.com/3d-model/tile']","['floor', 'architecture', 'low-poly', 'game-ready', 'environment', 'stone', 'realistic', 'ancient', 'old', 'ground', 'debris', 'grass', 'tileable', 'tile']","['https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/debris', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/tileable', 'https://www.turbosquid.com/Search/3D-Models/tile']" +Cute bean monster ,Simple 3D model of a Cute bean monster,luiis98,Free, - All Extended Uses,2019-05-03,"['OBJ ', 'Other ']","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['cute', 'bean', 'monster', 'cutemonster', 'cartoon']","['https://www.turbosquid.com/Search/3D-Models/cute', 'https://www.turbosquid.com/Search/3D-Models/bean', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/cutemonster', 'https://www.turbosquid.com/Search/3D-Models/cartoon']" +Office room ,Office room design with basic elements,Dipro Mondal,Free, - All Extended Uses,2019-05-03,"['3D Studio', 'OBJ ', 'Other ', 'FBX ']","['3D Model', 'furnishings', 'desk', 'office desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/office-desk']","['room', 'office', 'table', 'chair']","['https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/chair']" +Cartoon low poly tugboat illustration,- Cartoon Lowpoly Tugboat Illustration Scene- Created on Cinema 4d R17 (Render Ready on native file)- 25 218 Polygons- Procedural textured- Game Ready,Anton Moek,Free, - All Extended Uses,2019-05-03,"['3D Studio', 'FBX ', 'Other ', 'OBJ ', 'STL ']","['3D Model', 'vehicles', 'vessel', 'cartoon boat']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/cartoon-boat']","['cartoon', 'lowpoly', 'weter', 'boat', 'tug', 'sea', 'low', 'poly', 'free', 'illustration', 'unity', 'game', 'cinema4d', 'c4d', 'antonmoek', 'art', 'simple', 'toy', 'port', 'toon', 'ship', 'design']","['https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/weter', 'https://www.turbosquid.com/Search/3D-Models/boat', 'https://www.turbosquid.com/Search/3D-Models/tug', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/illustration', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/cinema4d', 'https://www.turbosquid.com/Search/3D-Models/c4d', 'https://www.turbosquid.com/Search/3D-Models/antonmoek', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/port', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/ship', 'https://www.turbosquid.com/Search/3D-Models/design']" +Sci-fi bg ,"This is science-fiction background for your production. This scene created with blender 2.8.Only blender version ready for rendering. Blender version displacement with height map.Other formats (3dsmax,maya) ready mesh with displacement.",kastaniga,Free, - All Extended Uses,2019-05-03,"['3D Studio', 'Other ', 'AutoCAD drawing', '2010\n', 'FBX ', 'OBJ ', 'STL ']","['3D Model', 'nature', 'landscapes', 'cartoon landscapes']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/cartoon-landscapes']","['3d', 'cg', 'blender', 'animation', 'evee']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/cg', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/evee']" +Low poly truck,This is a basic low poly truck I made when when i was still learning blender. The truck is sound and has no errors in it.,Finlay12345,Free, - All Extended Uses,2019-05-02,"['OBJ 1', 'Microsoft DirectDraw', 'Surface 1', 'PNG 1']","['3D Model', 'vehicles', 'car', 'fictional automobile', 'cartoon car', 'cartoon truck']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/fictional-automobile', 'https://www.turbosquid.com/3d-model/cartoon-car', 'https://www.turbosquid.com/3d-model/cartoon-truck']","['Fire', 'Truck', 'low', 'poly']","['https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly']" +Dog tags,a pair of 3D dog tags to be used as you please.,desmundo,Free, - All Extended Uses,2019-05-02,['OBJ '],"['3D Model', 'fashion and beauty', 'apparel', 'uniform', 'military uniform', 'dog tag']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/uniform', 'https://www.turbosquid.com/3d-model/military-uniform', 'https://www.turbosquid.com/3d-model/dog-tag']","['dog', 'tags', 'chain', 'necklace', 'army', 'astronaut']","['https://www.turbosquid.com/Search/3D-Models/dog', 'https://www.turbosquid.com/Search/3D-Models/tags', 'https://www.turbosquid.com/Search/3D-Models/chain', 'https://www.turbosquid.com/Search/3D-Models/necklace', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/astronaut']" +Spacestation,a 3D space station to be used as you desire,desmundo,Free, - All Extended Uses,2019-05-02,['OBJ '],"['3D Model', 'vehicles', 'spacecraft', 'space station']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/spacestation']","['space', 'station', 'spaceship']","['https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/station', 'https://www.turbosquid.com/Search/3D-Models/spaceship']" +Road bike ,Road bike. low model detail. reasonable for mid to far distance scene placement.,RokReef,Free, - All Extended Uses,2019-05-02,['OBJ '],"['3D Model', 'vehicles', 'pedaled vehicles', 'bicycle', 'road bicycle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/pedaled-vehicles', 'https://www.turbosquid.com/3d-model/bicycle', 'https://www.turbosquid.com/3d-model/road-bicycle']","['road', 'bike.', 'bicycle.']","['https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/bike.', 'https://www.turbosquid.com/Search/3D-Models/bicycle.']" +Zelas armchair ,"High quality model. Detailed enough for close-up rendersFile formats: 3dmax * Corona OBJHope you like it! Also check out my other models, just click on my user name to see complete gallery",liquidmodeling,Free, - All Extended Uses,2019-05-02,['OBJ '],"['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['armchair', 'furniture', 'chair', 'interior', 'furnishings', 'free']","['https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/furnishings', 'https://www.turbosquid.com/Search/3D-Models/free']" +The sleigh out of wood ,"My first model, which I want to sell. I make this about 10 hours. Wood texture 3000x3000. Red texture 2000x2000.",kidokrus,Free, - All Extended Uses,2019-05-02,Unknown,"['3D Model', 'vehicles', 'wagon', 'sledge']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/wagon', 'https://www.turbosquid.com/3d-model/sledge']","['sledge', 'sleigh', 'sled', 'toboggan', 'luge', 'winter', 'wintertime', 'tree', 'wood', 'timber', 'blender', 'wooden', 'woodwork', 'snow']","['https://www.turbosquid.com/Search/3D-Models/sledge', 'https://www.turbosquid.com/Search/3D-Models/sleigh', 'https://www.turbosquid.com/Search/3D-Models/sled', 'https://www.turbosquid.com/Search/3D-Models/toboggan', 'https://www.turbosquid.com/Search/3D-Models/luge', 'https://www.turbosquid.com/Search/3D-Models/winter', 'https://www.turbosquid.com/Search/3D-Models/wintertime', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/timber', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/woodwork', 'https://www.turbosquid.com/Search/3D-Models/snow']" +Royalty free ,"Royalty free cube, made fresh in blender 2.79 almost in every useable format!!",dustinmeyer,Free, - All Extended Uses,2019-05-01,Unknown,"['3D Model', 'symbols', 'geometric shape', 'cube']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes', 'https://www.turbosquid.com/3d-model/geometric-shape', 'https://www.turbosquid.com/3d-model/cube-shape']","['cube', 'free']","['https://www.turbosquid.com/Search/3D-Models/cube', 'https://www.turbosquid.com/Search/3D-Models/free']" +Free retro street lamp ,"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support.",Marc Mons,Free, - All Extended Uses,2019-05-01,"['OBJ 2016', 'FBX 2016']","['3D Model', 'architecture', 'urban design', 'street elements', 'street light']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/street-light']","['lighting', 'street', 'house', 'residencel', 'history', 'ancient', 'retro', 'vintage', 'unity', 'set', 'road', 'toon', 'light', 'lamp', 'city', 'town', 'path', 'metal', 'iron', 'classic', 'fbx', 'maya']","['https://www.turbosquid.com/Search/3D-Models/lighting', 'https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/residencel', 'https://www.turbosquid.com/Search/3D-Models/history', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/path', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/maya']" +Silencer 5.56 ,"Silencer 5.56 Detailed- 3D ModelModel created in real world size. Units used - millimetersFeatures: - Included HP and LP models- High-quality textures: 2048x2048- Textures complete - Diffuse(Albedo) map, Normal map, Specular map - Complete 4 colors (Black, White, Aluminum and Aluminum-Yellow)LP model:- With Textures- Optimized for gamesHP model:- Without TexturesRENDER: Marmoset Toolbag 2Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures.",MyNameIsVoo,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-30,"['3D Studio', 'FBX ', 'IGES ', 'OBJ ', 'STL ']","['3D Model', 'weaponry', 'weapons', 'ordnance accessories', 'silencer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/ordnance-accessories', 'https://www.turbosquid.com/3d-model/silencer']","['Silencer', 'Suppressors', 'Recon', 'Damper', 'Retarder', 'Acoustic', 'Absorber', 'Moderator', 'Exhaust', 'Muzzle', 'Realtime', 'Set', 'Mod', 'Attachment', '556', 'Weapon', 'Pistol', 'Gun', 'Army', 'Military']","['https://www.turbosquid.com/Search/3D-Models/silencer', 'https://www.turbosquid.com/Search/3D-Models/suppressors', 'https://www.turbosquid.com/Search/3D-Models/recon', 'https://www.turbosquid.com/Search/3D-Models/damper', 'https://www.turbosquid.com/Search/3D-Models/retarder', 'https://www.turbosquid.com/Search/3D-Models/acoustic', 'https://www.turbosquid.com/Search/3D-Models/absorber', 'https://www.turbosquid.com/Search/3D-Models/moderator', 'https://www.turbosquid.com/Search/3D-Models/exhaust', 'https://www.turbosquid.com/Search/3D-Models/muzzle', 'https://www.turbosquid.com/Search/3D-Models/realtime', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/mod', 'https://www.turbosquid.com/Search/3D-Models/attachment', 'https://www.turbosquid.com/Search/3D-Models/556', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/military']" +Battle axe breaker ,"It's a battle axe I've created by 3Ds MAX and tried to keep it low-poly so it can be easily used in games. I have made some maps for it by substance painter for it (which I have included in material assets), but I was not satisfied with the results so I materialized it again with Corona Materials (the renders).- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**- **Please Rate and Comment What You Think.**",sepandj,Free, - All Extended Uses,2019-05-01,"['3D Studio', 'Other ', 'Collada ', 'AutoCAD drawing', 'DXF ', 'FBX ', 'OpenFlight ', 'IGES ', 'OBJ ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'battle axe', 'medieval axe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/battle-axe', 'https://www.turbosquid.com/3d-model/medieval-axe']","['battle', 'axe', 'fight', 'war', 'handle', 'wood', 'dirt', 'steel', 'iron', 'cast', 'smith', 'medieval', 'rust', 'melee', 'weapon', 'blade', 'waraxe']","['https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/axe', 'https://www.turbosquid.com/Search/3D-Models/fight', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/handle', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/dirt', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/cast', 'https://www.turbosquid.com/Search/3D-Models/smith', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/waraxe']" +Wheelbarrow with sand ,Features:- Low poly.- Game ready.- All textures included and materials applied.- Easy to modify.- Grouped and nomed parts.- All formacts tested and working.- Optimized.- No plugins required.- Atlas texture size: 4096x4096.,elvair,Free, - All Extended Uses,2019-05-01,"['Other Textures', 'Collada ', 'FBX ', 'Other ', 'OBJ ']","['3D Model', 'industrial', 'tools', 'cart', 'wheelbarrow']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cart-tool', 'https://www.turbosquid.com/3d-model/wheelbarrow']","['Shovel', 'old', 'rusted', 'mud', 'wheel', 'barrow', 'wheelbarrow', 'construction', 'industrial', 'farming', 'tool', 'trolley', 'sand', 'gravel', 'rusty', 'rust', 'low', 'poly', 'game', 'dirt']","['https://www.turbosquid.com/Search/3D-Models/shovel', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/rusted', 'https://www.turbosquid.com/Search/3D-Models/mud', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/barrow', 'https://www.turbosquid.com/Search/3D-Models/wheelbarrow', 'https://www.turbosquid.com/Search/3D-Models/construction', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/farming', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/trolley', 'https://www.turbosquid.com/Search/3D-Models/sand', 'https://www.turbosquid.com/Search/3D-Models/gravel', 'https://www.turbosquid.com/Search/3D-Models/rusty', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/dirt']" +Colt navy 1851 ,"This is a full gameready aset of revolver Colt Navy 1851. Made as close as possible to the original with realistic texture. This is a lowpoly model modeled in May 2018. The pbr texture is made in Sabstence Painter and completed in Photoshop. Rendered in Marmoset toolbag 3 Texture pack includes:-Base color(Albedo); -AO; -Normal Map; -Roughness; -Metallic.All textures are 2048x2048. If you need to change the color of the model or if you have any problems, I will be happy to help you anytime.",Valerii Horlo,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-01,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'revolver']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun', 'https://www.turbosquid.com/3d-model/revolver']","['weapon', 'gun', 'revolver', 'colt', 'navy', 'game']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/revolver', 'https://www.turbosquid.com/Search/3D-Models/colt', 'https://www.turbosquid.com/Search/3D-Models/navy', 'https://www.turbosquid.com/Search/3D-Models/game']" +Water bottle ,Low poly water bottlePolygons : 550Vertex : 597Rendering : vraySoftware : 3dsmax 2017Textures : 2,AdrienJ,Free, - All Extended Uses,2019-05-01,['Other '],"['3D Model', 'food and drink', 'food container', 'bottle', 'water bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food-container', 'https://www.turbosquid.com/3d-model/bottle', 'https://www.turbosquid.com/3d-model/water-bottle']","['Water', 'bottle', 'drink', 'bar']","['https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/bar']" +Greanade rgd-5 ,"Grenade RGD-5 DefenseModel created in real world size. Units used - millimetersFeatures: - High-quality textures: 2048x2048- Textures: 4 different colors(Yellow, Black, Green, Red)- Textures complete - Diffuse(Albedo) map, Normal map, Specular map, AO- Optimized for games- LP and HP modelsRENDER: Marmoset Toolbag 2Unity 5Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures.",MyNameIsVoo,Free, - All Extended Uses,2019-05-01,"['3D Studio', 'FBX ', 'IGES ', 'OBJ ', 'STL ']","['3D Model', 'weaponry', 'munitions', 'grenade', 'rgd-5 grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade', 'https://www.turbosquid.com/3d-model/rgd-5-grenade']","['Grenade', 'rgd-5', 'fuse', 'explosion', 'danger', 'soviet', 'war', 'military', 'violence', 'bomb', 'hand', 'rgd5', 'rgd', 'frag', 'handgrenade', 'unity', 'game', 'free', 'low', 'weapon']","['https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/rgd-5', 'https://www.turbosquid.com/Search/3D-Models/fuse', 'https://www.turbosquid.com/Search/3D-Models/explosion', 'https://www.turbosquid.com/Search/3D-Models/danger', 'https://www.turbosquid.com/Search/3D-Models/soviet', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/violence', 'https://www.turbosquid.com/Search/3D-Models/bomb', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/rgd5', 'https://www.turbosquid.com/Search/3D-Models/rgd', 'https://www.turbosquid.com/Search/3D-Models/frag', 'https://www.turbosquid.com/Search/3D-Models/handgrenade', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/weapon']" +Pawn ,a 3D pawn chess piece,desmundo,Free, - All Extended Uses,2019-04-30,['OBJ '],"['3D Model', 'toys and games', 'games', 'chess', 'chessmen', 'pawn']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/chess', 'https://www.turbosquid.com/3d-model/chessmen', 'https://www.turbosquid.com/3d-model/pawn']","['pawn', 'chess', 'piece']","['https://www.turbosquid.com/Search/3D-Models/pawn', 'https://www.turbosquid.com/Search/3D-Models/chess', 'https://www.turbosquid.com/Search/3D-Models/piece']" +Home ,"a two story home with the ability to go inside with doors, front and back porches, and a stair case inside. all rooms can be entered.",desmundo,Free, - All Extended Uses,2019-04-30,['OBJ '],"['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']","['house', 'home', 'two', 'story', 'go', 'inside', 'front', 'back', 'porch']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/two', 'https://www.turbosquid.com/Search/3D-Models/story', 'https://www.turbosquid.com/Search/3D-Models/go', 'https://www.turbosquid.com/Search/3D-Models/inside', 'https://www.turbosquid.com/Search/3D-Models/front', 'https://www.turbosquid.com/Search/3D-Models/back', 'https://www.turbosquid.com/Search/3D-Models/porch']" +Mug ,a mug to be used however you please,desmundo,Free, - All Extended Uses,2019-04-30,['OBJ '],"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['mug', 'cup', 'drink', 'glass', 'beer', 'dish']","['https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/dish']" +Light post,A street light or lamp with a mesh light included to be used how you wish.,desmundo,Free, - All Extended Uses,2019-04-30,['OBJ '],"['3D Model', 'architecture', 'urban design', 'street elements', 'street light']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/street-light']","['light', 'post', 'street', 'lamp']","['https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/post', 'https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/lamp']" +Gaming keyboard,Gaming Keyboard (azerty)Polygons : 29712Vertex : 30783Rendering : vray,AdrienJ,Free, - All Extended Uses,2019-04-28,Unknown,"['3D Model', 'technology', 'computer equipment', 'computer keyboard']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-keyboard']","['Gaming', 'Keyboard', 'Computer', 'Azerty']","['https://www.turbosquid.com/Search/3D-Models/gaming', 'https://www.turbosquid.com/Search/3D-Models/keyboard', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/azerty']" +Eco-friendly travel cup ,Great simple travel mug which would suit any scenario and help Bring some eco-friendly life back.created from cork material.simple and easy to add.,Lance174,Free, - All Extended Uses,2019-04-28,"['OBJ ', 'Other ', '3D Studio']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup', 'paper coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup', 'https://www.turbosquid.com/3d-model/paper-coffee-cup']","['mug', 'travel', 'cup', 'glass', 'drink', 'tea', 'coffee', 'move', 'kitchen', 'objects', 'simple']","['https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/travel', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/move', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/objects', 'https://www.turbosquid.com/Search/3D-Models/simple']" +Bunny figurine ,"Contains; ZTL,OBJ,STLZTL has textureRaw Zbrush poly 5.5M -Parts separate by subtools for easy modification.",Ablyr,Free, - All Extended Uses,2019-04-28,Unknown,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'rodent', 'rabbit', 'cartoon rabbit']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/rodent', 'https://www.turbosquid.com/3d-model/rabbit-animal', 'https://www.turbosquid.com/3d-model/cartoon-rabbit']","['Animal', 'Stylize', 'Figurines', 'Zbrush', 'Bunny', 'Rabbit']","['https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/stylize', 'https://www.turbosquid.com/Search/3D-Models/figurines', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/bunny', 'https://www.turbosquid.com/Search/3D-Models/rabbit']" +Lemon fruit tree,"Lemon fruit treeFILES FORMAT: C4D FBX 3ds OBJ, MTLIf you are looking for animation of this model, I have looped wind animation of it.Please I really appreciate your review.if you have any issues please contact me. I treat support very seriously, please do not hesitate to contact me using the contact form on my profile!.",Indaneey_design,Free, - All Extended Uses,2019-04-27,"['OBJ ', '3D Studio', 'FBX ']","['3D Model', 'nature', 'tree', 'fruit tree', 'citrus tree', 'lemon tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/fruit-tree', 'https://www.turbosquid.com/3d-model/citrus-tree', 'https://www.turbosquid.com/3d-model/lemon-tree']","['tree', 'lemon', 'fruit', 'orange', 'flower', 'bark', 'leaf', 'leaves', 'truck', 'branch', 'forest', 'bush', 'nature', 'garden']","['https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/lemon', 'https://www.turbosquid.com/Search/3D-Models/fruit', 'https://www.turbosquid.com/Search/3D-Models/orange', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/leaves', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/branch', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/bush', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/garden']" +Wallet,"A Pokemon Wallet.Contains a Normal Map, Heightmap, Roughness, Diffuse, and Metallic as a PBR set.All textures are 2048x2048",Reddler,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-27,"['OBJ ', 'Other ', 'FBX ']","['3D Model', 'fashion and beauty', 'apparel', 'fashion accessories', 'wallet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/fashion-accessories', 'https://www.turbosquid.com/3d-model/wallet']","['pokemon', 'pokeball', 'charizard', 'blastoise', 'venusaur', 'wallet', 'pouch', 'dollars', 'cartoon', 'toon', 'dollar', 'money', 'poke', 'ball', 'pocket', 'monsters']","['https://www.turbosquid.com/Search/3D-Models/pokemon', 'https://www.turbosquid.com/Search/3D-Models/pokeball', 'https://www.turbosquid.com/Search/3D-Models/charizard', 'https://www.turbosquid.com/Search/3D-Models/blastoise', 'https://www.turbosquid.com/Search/3D-Models/venusaur', 'https://www.turbosquid.com/Search/3D-Models/wallet', 'https://www.turbosquid.com/Search/3D-Models/pouch', 'https://www.turbosquid.com/Search/3D-Models/dollars', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/dollar', 'https://www.turbosquid.com/Search/3D-Models/money', 'https://www.turbosquid.com/Search/3D-Models/poke', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/pocket', 'https://www.turbosquid.com/Search/3D-Models/monsters']" +Battle axe cutter ,"It's a battle axe I've created by 3Ds MAX and tried to keep it low-poly so it can be easily used in games. I have made some maps for it by substance painter for it (which I have included in material assets), but I was not satisfied with the results so I materialized it again with Corona Materials (the renders).- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**- **Please Rate and Comment What You Think.**",sepandj,Free, - All Extended Uses,2019-04-27,"['3D Studio', 'Other ', 'Collada ', 'AutoCAD drawing', 'DXF ', 'FBX ', 'OpenFlight ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'battle axe', 'medieval axe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/battle-axe', 'https://www.turbosquid.com/3d-model/medieval-axe']","['axe', 'battle', 'war', 'melee', 'weapon', 'cut', 'cutter', 'medieval', 'old', 'vintage', 'rust', 'iron', 'steel', 'wood', 'sword', 'sharp', 'blade', 'kill', 'water', 'damage', 'scratch', 'hand', 'wooden', 'metal', 'shine']","['https://www.turbosquid.com/Search/3D-Models/axe', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/cut', 'https://www.turbosquid.com/Search/3D-Models/cutter', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/sharp', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/kill', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/damage', 'https://www.turbosquid.com/Search/3D-Models/scratch', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/shine']" +Modern chair,A modern chair that is free to use. Already unwrapped and and textured it fits every living room.I would be very thankful if you post your renderings to the comments if you have used this chair! Always interested in what you can come up with!Have fun!,Con To Art,Free, - All Extended Uses,2019-04-27,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['chair', 'blender', 'blend', 'modern', 'pillow', 'pillows', 'uv', 'material', 'textured', 'free']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/blend', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/pillow', 'https://www.turbosquid.com/Search/3D-Models/pillows', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/material', 'https://www.turbosquid.com/Search/3D-Models/textured', 'https://www.turbosquid.com/Search/3D-Models/free']" +Loop wind coconut palm tree ,"This coconut Palm tree is a 3D model, with a looped wind animation.MAIN FEATURES: Looped wind animation ( C4D & FBX format ) Rigging ( C4D Only ) Bark texture (4k)FILES FORMAT: C4D ( animation ) FBX ( animation with PLA ) 3ds OBJ, MTL STLIf you want any kind of trees, I will make it for you in a low price.Please your review is very appreciated. Thank you!",Indaneey_design,Free, - All Extended Uses,2019-04-26,"['3D Studio', 'STL ', 'OBJ ', 'FBX ', 'Other ']","['3D Model', 'nature', 'tree', 'palm tree', 'coconut palm']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/palm-tree', 'https://www.turbosquid.com/3d-model/coconut-palm']","['coconut', 'palm', 'tree', 'autumn', 'summer', 'bark', 'leaves', 'leaf', 'branches', 'plant', 'grass', 'vintage', 'winter', 'nature', 'forest', 'tropical', 'island', 'beach']","['https://www.turbosquid.com/Search/3D-Models/coconut', 'https://www.turbosquid.com/Search/3D-Models/palm', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/autumn', 'https://www.turbosquid.com/Search/3D-Models/summer', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/leaves', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/branches', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/winter', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/tropical', 'https://www.turbosquid.com/Search/3D-Models/island', 'https://www.turbosquid.com/Search/3D-Models/beach']" +Collection of iron candlesticks ,"Collection of iron candlesticksThis design is not animated. 123668 triangular polygonsPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ",DTG Amusements,Free, - All Extended Uses,2019-04-26,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013']","['3D Model', 'interior design', 'housewares', 'general decor', 'candlestick holder']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/candlestick-holder']","['Candle', 'Candlestick']","['https://www.turbosquid.com/Search/3D-Models/candle', 'https://www.turbosquid.com/Search/3D-Models/candlestick']" +Tomahawk ,"Dodge Tomahawk This model is based on a real motorcycle concept created by Dodge in 2002. This model is for free. Enjoy!3D Model: QuadsTextures: Diffuse, Reflection, Glossiness, HeightThank you for downloading this itemIf you like it please rate it!",Roozbeh Edjbari,Free, - Editorial Uses Only,2019-04-25,"['Other ', 'FBX 2016', 'OBJ 2016']","['3D Model', 'vehicles', 'motorcycle', 'racing motorcycle', 'superbike']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/motorcycle', 'https://www.turbosquid.com/3d-model/racing-motorcycle', 'https://www.turbosquid.com/3d-model/superbike']","['tomahawk', 'dodge', 'bike', 'motorcycle', 'vehicle', '3d', 'highpoly', 'subdiv', 'uv', 'texture']","['https://www.turbosquid.com/Search/3D-Models/tomahawk', 'https://www.turbosquid.com/Search/3D-Models/dodge', 'https://www.turbosquid.com/Search/3D-Models/bike', 'https://www.turbosquid.com/Search/3D-Models/motorcycle', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/highpoly', 'https://www.turbosquid.com/Search/3D-Models/subdiv', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/texture']" +Sofa chair and pillow ,sofa chair,SHREYASH_PRASHU,Free, - All Extended Uses,2019-04-25,"['OBJ ', 'Other ', 'JPEG ']","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['pillow', 'sofa', 'chair']","['https://www.turbosquid.com/Search/3D-Models/pillow', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/chair']" +Old tv ,"Here is an old TV, compatble with Maya and rendered with Arnold.",YannickCossec,Free, - Editorial Uses Only,2019-04-25,Unknown,"['3D Model', 'technology', 'video devices', 'tv', 'retro tv']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/retro-tv']","['Old', 'TV', 'television', 'tele', 'display', 'screen', 'monitor']","['https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/tele', 'https://www.turbosquid.com/Search/3D-Models/display', 'https://www.turbosquid.com/Search/3D-Models/screen', 'https://www.turbosquid.com/Search/3D-Models/monitor']" +Particulate filter ,"Height :                1,5mWidth :                1,5mLenght :                 0.5mSoftware :        3dsmax 2017Rendering :        VrayPolygons :         3281Vertex :                 3759",AdrienJ,Free, - All Extended Uses,2019-04-24,['FBX 2014'],"['3D Model', 'vehicles', 'vehicle parts', 'engine', 'construction engine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/engine', 'https://www.turbosquid.com/3d-model/construction-engine']","['particulate', 'filter', 'construction', 'site', 'vehicle', 'digger']","['https://www.turbosquid.com/Search/3D-Models/particulate', 'https://www.turbosquid.com/Search/3D-Models/filter', 'https://www.turbosquid.com/Search/3D-Models/construction', 'https://www.turbosquid.com/Search/3D-Models/site', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/digger']" +Old american car ,"Game ready lowpoly model.Poly: 14034Tris : 28054Verts: 155233 UV Parts: body, interior and details, chair.4 Textures for each part- Color (body, interior and details: 2048, chair: 1024)- Normal (body, interior and details: 2048, chair: 1024)- Roughness (body, interior and details: 2048, chair: 1024)- Metalness (body, interior and details: 2048, chair: 1024)Mirror overlapped UVFree model.",Romooncle,Free, - All Extended Uses,2019-04-24,Unknown,"['3D Model', 'vehicles', 'car', 'wrecked car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/wrecked-car']","['car', 'amecan', 'wrecked', 'old', 'muscle', 'clasic', 'free', 'gameready', 'lowpoly', 'retro', 'transport', 'vihicle']","['https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/amecan', 'https://www.turbosquid.com/Search/3D-Models/wrecked', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/muscle', 'https://www.turbosquid.com/Search/3D-Models/clasic', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/vihicle']" +Sword,My first 3D model in TurboSquid! Just wanna share with you. Enjoy it for your game design or other 3D projects!Please feel free to leave me any feedback and questionsTexture resolution: 2048 x 1024 px.Rendered in MAYA with Arnold,Ellen11,Free, - All Extended Uses,2019-04-24,"['OBJ ', 'FBX ', 'PNG ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']","['sword', 'weapon', 'metallic', 'knight', 'knife', 'military', 'blade']","['https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/metallic', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/blade']" +Common oak model 4.5m,"Common Oak 3d model (Quercus Robur) in autumn season. Height: 4.5m. Compatible with 3ds max 2010 (V-Ray, Mental Ray, Corona) or higher, Cinema 4D R15 (V-Ray, Advanced Renderer), Unreal Engine, FBX, OBJ and VRMESH.",cgaxis,Free, - All Extended Uses,2019-04-22,"['FBX ', 'Other textures', 'OBJ ', 'Other ']","['3D Model', 'nature', 'tree', 'deciduous tree', 'oak tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/deciduous-tree', 'https://www.turbosquid.com/3d-model/oak-tree']","['common', 'oak', 'quercus', 'robur', 'tree', 'foilage', 'forest', 'park', 'deciduous', 'leaf', 'bark', 'autumn']","['https://www.turbosquid.com/Search/3D-Models/common', 'https://www.turbosquid.com/Search/3D-Models/oak', 'https://www.turbosquid.com/Search/3D-Models/quercus', 'https://www.turbosquid.com/Search/3D-Models/robur', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/foilage', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/deciduous', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/autumn']" +Old wooden table ,"Old wooden table : Low polygonModel and previews created in maya 2018 with arnoldFormats:ma. file ( No UV Mapped , No Textures )mb. file ( No UV Mapped , No Textures )OBJ file",Roarnya,Free, - All Extended Uses,2019-04-22,['OBJ 2018'],"['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['Old', 'wooden', 'table', 'Low', 'polygon']","['https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/polygon']" +Sledge hammer,FeatureThis pack contain two basic part of Sledge Hammer first is Head and second is Handel it also contain textures made with substance painter and this pack is freeTexture Map- Base Colour Map- Normal Map- Height Map- Metallic Map- Roughness Map,UniBlend,Free, - All Extended Uses,2019-04-22,"['3D Studio', 'FBX ', 'OBJ ', 'STL ']","['3D Model', 'industrial', 'tools', 'hand tools', 'hammer', 'sledgehammer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/hand-tools', 'https://www.turbosquid.com/3d-model/hammer', 'https://www.turbosquid.com/3d-model/sledgehammer']","['hammer', 'weapon', 'survival', 'game', 'low-poly', 'game', 'ready', 'unity', 'unreal', 'melee', 'tool', 'sledgehammer']","['https://www.turbosquid.com/Search/3D-Models/hammer', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/survival', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/sledgehammer']" +Catapult toy ,"A 3 part functioning catapult. PLA recommended and supports recommended too but not required. Print time 1h 30 m. Great quality, recommend",Leo1233,Free, - All Extended Uses,2019-03-30,['STL '],"['3D Model', 'weaponry', 'weapons', 'projectile weapons', 'catapult']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/projectile-weapons', 'https://www.turbosquid.com/3d-model/catapult']","['Catapult', 'Medieval', 'Toy', 'Projectile']","['https://www.turbosquid.com/Search/3D-Models/catapult', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/projectile']" +Garden chair ,Native File Format: 3ds Max 2017Render Engine: V-RayUnits used: MetersPolygon Count: 2432Vertices Count: 2542,AdrienJ,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-22,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', 'outdoor chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/outdoor-chair']","['IKEA', 'chair', 'garden', 'architecture', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/ikea', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Medieval tables ,"Medieval wooden tables. One with ornamental sides, one plain. This design is not animated. 122257 quadrilateral polygons107858 triangular polygons352372 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ",DTG Amusements,Free, - All Extended Uses,2019-04-22,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013']","['3D Model', 'furnishings', 'table', 'dining table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table']","['Tables', 'Medieval']","['https://www.turbosquid.com/Search/3D-Models/tables', 'https://www.turbosquid.com/Search/3D-Models/medieval']" +Retro car wheel ,,Andrewsibirian,Free, - All Extended Uses,2019-04-22,['FBX '],"['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'car wheel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/car-wheel']","['car', 'part', 'tire', 'wheel']","['https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/part', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/wheel']" +Mouse ,"This is a computer mouse.The textures include a diffuse for all 3 materials, plus a height and specular for the main material.",Reddler,Free, - All Extended Uses,2019-04-21,"['FBX ', 'OBJ ', 'Other ']","['3D Model', 'technology', 'computer equipment', 'computer mouse']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-mouse']","['mouse', 'wheel', 'computer', 'desk', 'table', 'usb', 'laptop', 'electronic', 'electronics']","['https://www.turbosquid.com/Search/3D-Models/mouse', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/usb', 'https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/electronics']" +Chair,Chair,Alex2641,Free, - All Extended Uses,2019-04-21,Unknown,"['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['Chair', 'white']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/white']" +Easter eggs,"Models of Easter Eggs. (The stated Faces and Vertices count is of all the Eggs combined after the Subdivision applied a.k.a. High Poly model)Available File variants:    BLEND (Subdivision not applied, can be chosen)    OBJ (Low Poly + High Poly)The textures of the eggs are already packed the the BLEND file and also available in their original form in the OBJ zip.*All photos were rendered in Blender with Cycles Render engine.",Render at Night,Free, - All Extended Uses,2019-04-21,['OBJ '],"['3D Model', 'holidays', 'easter egg']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/seasons-and-holidays', 'https://www.turbosquid.com/3d-model/easter-egg']","['easter', 'eggs', 'textured', 'painted']","['https://www.turbosquid.com/Search/3D-Models/easter', 'https://www.turbosquid.com/Search/3D-Models/eggs', 'https://www.turbosquid.com/Search/3D-Models/textured', 'https://www.turbosquid.com/Search/3D-Models/painted']" +Dining table and chairs ,"A low-poly game ready dining table and chair set ready to put in your game. The chairs, table cloth are movable. You can move or remove them even in your game engine level.All textures in 2K i.e. 2048 x 2048 resolution textures.----------------------------------------------------Model Statistics:- Polys: 4610- Triangles: 9220- Vertices: 7122----------------------------------------------------Model Formats:- Blend- FBX- OBJ----------------------------------------------------Image Formats:- PNG----------------------------------------------------Model Names in Heirarchy:- Table- TableCloth- Chair_a- Chair_b- Chair_c- Chair_d- Chair_e- Chair_f----------------------------------------------------",Spectra_7,Free, - All Extended Uses,2019-04-21,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'furnishings', 'table', 'dining table', 'dining room set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table', 'https://www.turbosquid.com/3d-model/dining-room-set']","['chair', 'and', 'chairs', 'wood', 'furniture', 'cloth', 'dining', 'table', 'set', 'furnishing', 'restaurant', 'bar', 'seat', 'cafe', 'home']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/chairs', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/cloth', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/furnishing', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/cafe', 'https://www.turbosquid.com/Search/3D-Models/home']" +I-zen ii,Modelled with Sketchup****I-ZEN I is NOT included ****,COSEDIMARCO,Free, - All Extended Uses,2019-04-21,"['Collada ', 'OBJ ']","['3D Model', 'vehicles', 'car', 'fictional automobile']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/fictional-automobile']","['I-zenborg', 'carrier', 'monsters', 'anime', 'japan', 'dinosaurs']","['https://www.turbosquid.com/Search/3D-Models/i-zenborg', 'https://www.turbosquid.com/Search/3D-Models/carrier', 'https://www.turbosquid.com/Search/3D-Models/monsters', 'https://www.turbosquid.com/Search/3D-Models/anime', 'https://www.turbosquid.com/Search/3D-Models/japan', 'https://www.turbosquid.com/Search/3D-Models/dinosaurs']" +Fantasy sword ,fantasy sword this is free model made by Rishabh sahu this is only blend file,Toon coffer,Free, - All Extended Uses,2019-04-21,Unknown,"['3D Model', 'weaponry', 'weapons']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons']","['fantasy', 'sword', 'blender', 'free', 'free', 'model', 'toon', 'coffer']","['https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/coffer']" +Auto mirror retro ,mirror from soviet retro car,Andrewsibirian,Free, - All Extended Uses,2019-04-20,Unknown,"['3D Model', 'vehicles', 'vehicle parts', 'automobile parts', 'car mirror', 'side-view mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/automobile-parts', 'https://www.turbosquid.com/3d-model/car-mirror', 'https://www.turbosquid.com/3d-model/side-view-mirror']","['mirror', 'retro', 'moskvich', 'car', 'parts']","['https://www.turbosquid.com/Search/3D-Models/mirror', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/moskvich', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/parts']" +Ashtray ,A common ashtray modeled and textured in Autodesk Maya.,Manic Animatics,Free, - All Extended Uses,2019-04-20,Unknown,"['3D Model', 'science', 'smoking', 'ashtray']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/smoking', 'https://www.turbosquid.com/3d-model/ashtray']","['ashtray', 'ash', 'tray', 'Autodesk', 'Maya', 'Arnold', 'Manic', 'Animatics', 'cigarette']","['https://www.turbosquid.com/Search/3D-Models/ashtray', 'https://www.turbosquid.com/Search/3D-Models/ash', 'https://www.turbosquid.com/Search/3D-Models/tray', 'https://www.turbosquid.com/Search/3D-Models/autodesk', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/arnold', 'https://www.turbosquid.com/Search/3D-Models/manic', 'https://www.turbosquid.com/Search/3D-Models/animatics', 'https://www.turbosquid.com/Search/3D-Models/cigarette']" +Table ,There is a 3d model of Table which supported .OBJ file,Ronak jain,Free, - All Extended Uses,2019-04-20,"['OBJ ', 'Other ']","['3D Model', 'furnishings', 'desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk']","['Table', 'Furniture']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Knife ,"For lessons CG Masters made a knife, optimized for games (checked in Unity3d)---(Create folder Textures and upload texture files there)",o4zloy,Free, - All Extended Uses,2019-04-19,"['FBX 7', '4\n', 'OBJ ', 'Collada ', '3D Studio']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'combat knife']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/combat-knife']","['battle', 'knife', 'weapon', 'for', 'games']","['https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/games']" +Gir,This is a unrigged model of GIR. The face texture is within the zipped files. It also contains the posed version of Gir as in the presentation image.,Reddler,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-18,"['OBJ ', 'Other ']","['3D Model', 'characters', 'movie and television character']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/movie-and-television-character']","['gir', 'cartoon', 'character', 'invader', 'zim', 'gaz', 'toon', 'robot', 'alien']","['https://www.turbosquid.com/Search/3D-Models/gir', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/invader', 'https://www.turbosquid.com/Search/3D-Models/zim', 'https://www.turbosquid.com/Search/3D-Models/gaz', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/robot', 'https://www.turbosquid.com/Search/3D-Models/alien']" +Business suit sexy,"Business woman in sexy cleavage black suit, czech model Victorie Heaven.fbx, pose and textures included, lowpo with hd textures.Some bugs, like a hair fixed with diffuse or transparent map.",dreondei,Free, - All Extended Uses,2019-04-18,"['FBX fbx', 'tga\n']","['3D Model', 'characters', 'people', 'woman', 'businesswoman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman', 'https://www.turbosquid.com/3d-model/businesswoman']","['Business', 'suit', 'woman', 'sexy', 'victorie', 'heaven', 'czech', 'blonde', 'girl']","['https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/suit', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/sexy', 'https://www.turbosquid.com/Search/3D-Models/victorie', 'https://www.turbosquid.com/Search/3D-Models/heaven', 'https://www.turbosquid.com/Search/3D-Models/czech', 'https://www.turbosquid.com/Search/3D-Models/blonde', 'https://www.turbosquid.com/Search/3D-Models/girl']" +Ancient roman gladius sword ,"High quality low-poly realistic mesh of an ancient Roman gladius with detailed normal map and PBR textures.Ideal for real-time use, like games and VR.Correctly scaled.Two objects (sword and sheath) with single non-overlaping UV-map.Model has 1580 faces and 1573 vertices.Includes 4k textures for: base color, roughness, normal map, metallic and ambient occlusion.",samize,Free, - All Extended Uses,2019-04-18,['FBX '],"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/gladius']","['Roman', 'sword', 'gladius', 'ancient', 'weapon', 'melee', 'historic']","['https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/gladius', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/historic']" +Sci-fi bump stop,"Sci-fi bump stopHello!! and again I, as always with trinkets !! this time I present to your attention a free props in the form of a Sci-fi block, for fencing, or for something else, it all depends on the ideas you are working on every day !! This props is suitable for visualizing or filling the scene as it contains a large number of polygons, low poly for game engines is supplied to this model, you just need to bake the normals, and put materials for your style for this everything is prepared !! Well, it remains to wish you good luck in this not easy business) P / S well, do not forget to support Lucas if you like what I do, thank you all and see you soon ... Low poly (poligon-2494 Vertex-1514)",SkilHardRU,Free, - All Extended Uses,2019-04-18,"['FBX 16', 'OBJ 16']","['3D Model', 'architecture', 'urban design', 'infrastructure', 'railroad track', 'buffer stop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/infrastructure', 'https://www.turbosquid.com/3d-model/railroad-track', 'https://www.turbosquid.com/3d-model/buffer-stop']","['sci', 'fi', 'props', 'bump', 'stop', 'znak', 'blok', 'spase', 'inveroment', 'ontainer', 'military', 'industrial', 'tool', 'wall']","['https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/bump', 'https://www.turbosquid.com/Search/3D-Models/stop', 'https://www.turbosquid.com/Search/3D-Models/znak', 'https://www.turbosquid.com/Search/3D-Models/blok', 'https://www.turbosquid.com/Search/3D-Models/spase', 'https://www.turbosquid.com/Search/3D-Models/inveroment', 'https://www.turbosquid.com/Search/3D-Models/ontainer', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/wall']" +Kirito's elucidator sword ! ,Kirito's Elucidator sword from Anime Sword art Online became 3D Check it out !,MusiritoKun,Free, - Editorial Uses Only,2019-04-18,Unknown,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'fantasy sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/fantasy-sword']","['model', ""Kirito's"", 'Anime', 'sword', '3D']","['https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/kirito%27s', 'https://www.turbosquid.com/Search/3D-Models/anime', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/3d']" +Ancient temple,"One of the ancient ruins for the game environment,A small sandy damaged temple is covered with some hieroglyphs, - The asset consists of 1,904 vertices, - 4K textures, - 3 materials (pillars, wall, floor+ceiling) - 1 mesh, - Base color, Normal and Roughness maps.",Noctiluca_,Free, - All Extended Uses,2019-04-16,"['Collada ', 'FBX ', 'Other ', 'OBJ ']","['3D Model', 'architecture', 'archaeology', 'ancient ruins']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/archaeology', 'https://www.turbosquid.com/3d-model/ruins']","['Ancient', 'Pillar', 'Column', 'Temple', 'Hieroglyph', 'Sand', 'Desert', 'Game', 'Free', 'Ruins', 'Exterior', 'Environment', 'Antique', 'Old']","['https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/pillar', 'https://www.turbosquid.com/Search/3D-Models/column', 'https://www.turbosquid.com/Search/3D-Models/temple', 'https://www.turbosquid.com/Search/3D-Models/hieroglyph', 'https://www.turbosquid.com/Search/3D-Models/sand', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/ruins', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/old']" +Blender eevee brandless small 4 door hatchback ,"Car Name: SHC MCE 1This car is rendered in realtime in Blender Eevee, to open the native Blender file, you will need Blender 2.8.The price of this car is calculated on it's combination of parts and options in relationship to other MCE cars. The lower priced MCE cars have the same building quality as the higher priced ones, but the overal look and used parts will be better on the higher priced MCE cars. This allows me to release cars at accessable prices, and release better looking ones at a higher price. (all options for this car are listed at the bottom of the description)This car is made with the SHC modular car creation tool.Custom designed parts im a high detailed brandless/generic car with real modern cars inspiration that can be used for renders, presentations, real time apps and video games without displaying or copying any real life car model.*Detailed exterior*Detailed interior (can be removed to lower polycount)*Detailed engine (can be removed to lower polycount)*Detailed underside*Materials and textures without shaders are available in the exported files.*The Studio, materials and camera/door animations are included in the Blender file that is used to create all realtime renders for this car. everything in this file is set up, you only have to move the camera and click ''render''. (roughness is generated with the default texture file)*The car is linked into several objects to make it more suitable for animations, opening doors, rigging and modifying / tuning / customizing.*The car is royalty free, so you are free to modify and use it in any (commercial) project as much as you want.*Objects: 43File formats: (all file formats are exported with blender 2.8 default settings) *abc *blend *dae *fbx *obj *stl[Options] Car Body: Small 4 door hatchbackEngine: (Engine block can be removed to simulate an electric car, the mechanical parts under the hood will remain) 4 cilinderSport pack: NoFront bumper: Tier 3Rear bumper: Tier 3Dashboard: Tier 2Exhaust: Tier 2Wheels: Tier 3Glass Roof: NoSeats: Comfort SeatsExecutive rear seats with table and screens: NoTrim Color: Glossy blackInterior Leather Color: WhiteTinted Rear Windows: NoWheel Color: Black",denniswoo1993,Free, - All Extended Uses,2019-04-16,Unknown,"['3D Model', 'vehicles', 'car', 'hatchback']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/hatchback']","['street', 'retro', 'tire', 'exterior', 'suv', '2013', 'racing', '2015', 'render', 'vehicle', 'v12', 'logo', 'real', 'sportpack', 'motor', 'eevee', 'modern', 'transport', 'car', 'standard']","['https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/suv', 'https://www.turbosquid.com/Search/3D-Models/2013', 'https://www.turbosquid.com/Search/3D-Models/racing', 'https://www.turbosquid.com/Search/3D-Models/2015', 'https://www.turbosquid.com/Search/3D-Models/render', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/v12', 'https://www.turbosquid.com/Search/3D-Models/logo', 'https://www.turbosquid.com/Search/3D-Models/real', 'https://www.turbosquid.com/Search/3D-Models/sportpack', 'https://www.turbosquid.com/Search/3D-Models/motor', 'https://www.turbosquid.com/Search/3D-Models/eevee', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/standard']" +Wheel_001 ,"A model of a monster truck wheel. The model is subdivisional, consists of quads. The wheel has real world dimansions: 4m * 4m * 2m. 2k PBR textures. Rendered in Marmoset",3dyer,Free, - All Extended Uses,2019-04-16,['FBX '],"['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel', 'truck tire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel', 'https://www.turbosquid.com/3d-model/truck-tire']","['wheel', 'heavy', 'vehicle', 'car', 'transport', 'road', 'big', 'monster', 'truck', 'tire', 'rim']","['https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/heavy', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/big', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/rim']" +Wheel ,wheel 3d model   made by maya 2019 rendered by arnold file format fbx 20193 material with textures textures are above 2048 pixel,Nittubawa,Free, - All Extended Uses,2019-04-16,['FBX 2019'],"['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel', 'truck tire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel', 'https://www.turbosquid.com/3d-model/truck-tire']","['truck', 'heavy', 'vehicle', 'wheel']","['https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/heavy', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/wheel']" +Turtle basic model ,This is Free Turtle Basic Model. I hope you like it.IF YOU LIKE THIS PRODUCT - RATE IT! THANKS!,Behnam_aftab,Free, - All Extended Uses,2019-04-15,"['OBJ ', 'FBX ', '3D Studio']","['3D Model', 'nature', 'animal', 'reptile', 'turtle', 'cartoon turtle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/reptile', 'https://www.turbosquid.com/3d-model/turtle', 'https://www.turbosquid.com/3d-model/cartoon-turtle']","['animal', 'turtle', 'creature', 'nature', 'reptile']","['https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/turtle', 'https://www.turbosquid.com/Search/3D-Models/creature', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/reptile']" +Semi truck,"Semi truck modeled after various brands, textured, relatively high-polyTo use .mb, find in scenes > semi.mbTo open textures, set project to the folder itself, textures are in Textures folder if you need it.To use OBJ, download the .obj zipI will upload a few variants e.g Tanker, Cargo box, Flatbed soon. Stay tuned",KozyDraconequus,Free, - All Extended Uses,2019-04-15,['OBJ '],"['3D Model', 'vehicles', 'large truck', 'semi-trailer truck', 'large goods vehicle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/large-truck', 'https://www.turbosquid.com/3d-model/semi-trailer-truck', 'https://www.turbosquid.com/3d-model/large-goods-vehicle']","['semi', 'truck', 'tractor', 'trailer', 'lorry', '18', 'wheeler', 'lights', 'high', 'poly', 'quality', 'textured']","['https://www.turbosquid.com/Search/3D-Models/semi', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/tractor', 'https://www.turbosquid.com/Search/3D-Models/trailer', 'https://www.turbosquid.com/Search/3D-Models/lorry', 'https://www.turbosquid.com/Search/3D-Models/18', 'https://www.turbosquid.com/Search/3D-Models/wheeler', 'https://www.turbosquid.com/Search/3D-Models/lights', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/quality', 'https://www.turbosquid.com/Search/3D-Models/textured']" +Vintage truck,cargo truck   rusted truck   vintage truck 3d model file format fbx 2019made by maya 2019texture are under 1024 - 4094 pixellow poly game ready model   suitable for android gaming also,Nittubawa,Free, - All Extended Uses,2019-04-15,['FBX 2019'],"['3D Model', 'vehicles', 'car', 'suv', 'pick-up truck']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/suv', 'https://www.turbosquid.com/3d-model/pick-up-truck']","['vintage', 'rusted', 'vehicle', 'cargo', 'truck']","['https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/rusted', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/cargo', 'https://www.turbosquid.com/Search/3D-Models/truck']" +Elefhant ,for game and any use,Rakesh Kulthe,Free, - All Extended Uses,2019-04-14,['OBJ '],"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'elephant', 'cartoon elephant']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/elephant', 'https://www.turbosquid.com/3d-model/cartoon-elephant']",['Animals'],['https://www.turbosquid.com/Search/3D-Models/animals'] +Free 3-gem sampler pack,"3-Gem Custom Cut Colored Gemstones + Custom V-Ray Materials Sampler- Real World Cuts & Real World Materials Means Real-World Performance in Your 3D Creations- 3 Custom Cut Virtual Gemstones real world cuts designed for real material reflective index ranges. These are real world cuts (I am a gem cutter as well as a graphic/3D designer)if you design jewelry for real life, or the virtual worlds, these gemstones and materials are what you need to add real colored gemstones to your creations- NURBS Based Geometry in the Supplied Rhino Files (Rhino versions 5 & 6 included)Polygon Mesh Geometry in OBJ files OBJ mesh geometry was created from the Rhino NURBS originals and utilize the least number of polygons necessary to generate the gemstone's facet shapes- 20 Custom VRay Next Gemstone Materials includes an assorted grouping of 20 custom V-Ray gemstone materials from the following groups: quartz varieties (amethyst, citrine, rose de France, smokey quartz, praisolite, rock crystal, rose quartz), beryl varieties (aquamarine, emerald, morganite, green beryl, heliodore), topaz varieties (imperial pink, imperial orange, imperial red, imperial yellow, london blue, sky blue, swiss blue ), tourmaline varieties (indicolite, rubelite, green, paraiba), garnet varieties (pyrope, almandite, spessartite, demantoid), and cubic zirconia**- All of the materials included with this sample pack will work with any of the three custom cut virtual gemstonesNotes:- Scaling/resizing: ALWAYS USE UNIFORM SCALE when resizing a custom cut virtual gem each virtual gemstone has been optically designed for a specific primary material and range of secondary materials that optical performance only occurs when the facet angles are aligned correctly so to avoid loss of optical performance always use uniform scaleSize, Color and Optical Performance Guidelines:- Gemstone materials get their color primarily from the refraction fog color if you need to lighten or darken a custom cut virtual gemstone adjust the fog color and fog multiplier settings in the refraction section of the material (see the V-Ray Next manual for a complete description of how to make adjustments to the custom gemstone materials.- The same material will appear darker on larger stones, and lighter on smaller stones due to the amount of material the light rays have to travel through. If you have applied a material to a custom cut virtual gemstone and it appears too dark adjust the using a lighter colored version of the same gemstone.- In general, gemstones with a small number of facets, (the flat, highly-polished 'mirror' panels that cover the surface of the gemstone), are cut at smaller sizes, and gemstones with a high number of facets are typically cut larger (in the real world the smallest working size for facets is around 1 mm anything smaller is hard to do by hand. So if you want your gemstones to look realistic in your 3D creations, keep the relative sizes correct.",derikjohnson,Free, - All Extended Uses,2019-04-14,['Other '],"['3D Model', 'nature', 'landscapes', 'mineral', 'gems']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/mineral', 'https://www.turbosquid.com/3d-model/gems']","['head', 'hand', 'wrist', 'ankle', 'body', 'armor', 'crown', 'sword', 'shield', 'bow', 'archer', 'hunt', 'dagger', 'goblet', 'plate', 'gold', 'diamond', 'wealth', 'jewelry', 'ring', 'bracelet', 'scepter']","['https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/wrist', 'https://www.turbosquid.com/Search/3D-Models/ankle', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/crown', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/bow', 'https://www.turbosquid.com/Search/3D-Models/archer', 'https://www.turbosquid.com/Search/3D-Models/hunt', 'https://www.turbosquid.com/Search/3D-Models/dagger', 'https://www.turbosquid.com/Search/3D-Models/goblet', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/diamond', 'https://www.turbosquid.com/Search/3D-Models/wealth', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/bracelet', 'https://www.turbosquid.com/Search/3D-Models/scepter']" +Bar chair ,Bar ChairHigh quality polygonal models. Real world scale: 335 x 362 x 968 mmWood texture included 1300x1300pxAll objects and materisls have meaningful namesFor good renders!File Formats:Blender 3D 2.79 (native)MAX 20153DSOBJFBXDAESTL,Vlad_3d,Free, - All Extended Uses,2019-04-14,"['3D Studio', 'Collada ', 'FBX ', 'OBJ ', 'Other ', 'STL ']","['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool', 'https://www.turbosquid.com/3d-model/bar-stool']","['chair', 'furniture', 'seat', 'stool', 'interior', 'restaurant', 'bar', 'kitchen', 'hotel', 'alcohol', 'business', 'design']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/hotel', 'https://www.turbosquid.com/Search/3D-Models/alcohol', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/design']" +Lowpoly pbr knight armour,"A set of Lowpoly PBR Fantasy Medival Armour. The model is rigged to the UE4 skeleton, but not animated. A .blend file with IK set up is included. Unity package with the model set up to a humanoid rig is also provided (The dynamic moving parts of the armour may be set up with whichever solution you use in your project). The pack inclused 3 4k texture variations: Clean, Battered and Worn. The model has two texture sets and is split into several parts: Body, Helmet, Chainmail Hood, Gloves, Spaulders, Frontguard, Sideguards, Kneeguards, Boots. Total polycount: 39,455 tris and 22,544 verts.",soidev,Free, - All Extended Uses,2019-04-13,"['Collada ', 'FBX ', 'Other Metallic', 'Other Specular', 'Other Unity']","['3D Model', 'weaponry', 'armour', 'suit of armor', 'medieval suit of armor']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/suit-of-armor', 'https://www.turbosquid.com/3d-model/medieval-suit-of-armor']","['knight', 'fantasy', 'medieval', 'armor', 'warrior', 'armour', 'armored', 'plate', 'chainmain', 'helm', 'greathelm', 'lowpoly', 'gameready', 'pbr', 'battle', 'unity', 'unreal', 'collection', 'characters']","['https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/armour', 'https://www.turbosquid.com/Search/3D-Models/armored', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/chainmain', 'https://www.turbosquid.com/Search/3D-Models/helm', 'https://www.turbosquid.com/Search/3D-Models/greathelm', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/characters']" +Hand painted low poly sword ,"Simple low poly sword with relatively swift silhouette and a diffuse only, hand painted texture that's a mix between stylized and realistic styles.",PriceMore,Free, - All Extended Uses,2019-04-13,"['OBJ ', 'FBX ']","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']","['handpainted', 'lowpoly', 'sword']","['https://www.turbosquid.com/Search/3D-Models/handpainted', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/sword']" +Low poly katana (free),Decided to re-upload for free. Enjoy!,JoshuaCraytorFarinha,Free, - All Extended Uses,2019-04-13,Unknown,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'samurai sword', 'katana']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/samurai-sword', 'https://www.turbosquid.com/3d-model/katana']","['Katana', 'Free', 'Low', 'Poly', 'Game', 'Model']","['https://www.turbosquid.com/Search/3D-Models/katana', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/model']" +Vases_red_glass ,Vases from red glass with a relief mirror internal surface.,Pilot54,Free, - All Extended Uses,2019-04-12,"['3D Studio', '2015\n', 'FBX 2015', 'OBJ 2015']","['3D Model', 'interior design', 'housewares', 'general decor', 'vase', 'modern vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase', 'https://www.turbosquid.com/3d-model/modern-vase']","['beautiful', 'frosted', 'unusual', 'vintage', 'mirror', 'floral', 'for', 'flowers', 'value', 'red', 'glass', 'large', 'small', 'tall', 'wide', 'silver', 'trim', 'collection', 'cyl']","['https://www.turbosquid.com/Search/3D-Models/beautiful', 'https://www.turbosquid.com/Search/3D-Models/frosted', 'https://www.turbosquid.com/Search/3D-Models/unusual', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/mirror', 'https://www.turbosquid.com/Search/3D-Models/floral', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/flowers', 'https://www.turbosquid.com/Search/3D-Models/value', 'https://www.turbosquid.com/Search/3D-Models/red', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/large', 'https://www.turbosquid.com/Search/3D-Models/small', 'https://www.turbosquid.com/Search/3D-Models/tall', 'https://www.turbosquid.com/Search/3D-Models/wide', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/trim', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/cyl']" +Classic plants pot ,"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema 4d and 3dmax.These formats with basic materials and textures.Thanks for your support.",Marc Mons,Free, - All Extended Uses,2019-04-12,"['OBJ 2016', 'FBX 2016']","['3D Model', 'interior design', 'housewares', 'general decor', 'planter', 'flower pot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/planter', 'https://www.turbosquid.com/3d-model/flower-pot']","['plant', 'free', 'pot', 'herb', 'food', 'green', 'herbal', 'fresh', 'rosmarinus', 'officinalis', 'potted', 'spice', 'aromatic', 'leaf', 'culinary', 'vegetable', 'cuisine', 'bush', 'natural', 'flowerpot', '3d']","['https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/herb', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/herbal', 'https://www.turbosquid.com/Search/3D-Models/fresh', 'https://www.turbosquid.com/Search/3D-Models/rosmarinus', 'https://www.turbosquid.com/Search/3D-Models/officinalis', 'https://www.turbosquid.com/Search/3D-Models/potted', 'https://www.turbosquid.com/Search/3D-Models/spice', 'https://www.turbosquid.com/Search/3D-Models/aromatic', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/culinary', 'https://www.turbosquid.com/Search/3D-Models/vegetable', 'https://www.turbosquid.com/Search/3D-Models/cuisine', 'https://www.turbosquid.com/Search/3D-Models/bush', 'https://www.turbosquid.com/Search/3D-Models/natural', 'https://www.turbosquid.com/Search/3D-Models/flowerpot', 'https://www.turbosquid.com/Search/3D-Models/3d']" +Sofa001 ,sofa furniture,alimucahidtural,Free, - All Extended Uses,2019-04-11,Unknown,"['3D Model', 'furnishings', 'seating', 'sofa']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/sofa']","['sofa', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/furniture']" +Cobertura de garagem ,cobertura para carro sem textuta,manuella pires,Free, - All Extended Uses,2019-04-11,"['OBJ ', 'JPEG 100']","['3D Model', 'architecture', 'site components', 'outdoor structure', 'gazebo', 'pergola']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/outdoor-structure', 'https://www.turbosquid.com/3d-model/gazebo', 'https://www.turbosquid.com/3d-model/pergola']","['cobertura', 'para', 'carro']","['https://www.turbosquid.com/Search/3D-Models/cobertura', 'https://www.turbosquid.com/Search/3D-Models/para', 'https://www.turbosquid.com/Search/3D-Models/carro']" +Balcony,"Classic balcony, architectural element useful for use in various architectural projects",juanmrgt,Free, - All Extended Uses,2019-04-11,['OBJ '],"['3D Model', 'architecture', 'building components', 'building deck']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/house-deck']","['balcony', 'architecture', 'deco', 'classical', 'element']","['https://www.turbosquid.com/Search/3D-Models/balcony', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/deco', 'https://www.turbosquid.com/Search/3D-Models/classical', 'https://www.turbosquid.com/Search/3D-Models/element']" +Fleur-de-lis medieval shield emblem ,Medieval Shield with Fleur-de-lis emblem 3D modelblend file with procedural materials OBJ 3MF file for 3D printing,bodisatva5,Free, - All Extended Uses,2019-04-10,"['Other ', 'STL ']","['3D Model', 'weaponry', 'armour', 'shield', 'kite shield']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/shield', 'https://www.turbosquid.com/3d-model/kite-shield']","['Medieval', 'shield', 'armour', 'body', 'helmet', 'guns', 'melee', 'lis', 'flower']","['https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/armour', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/guns', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/lis', 'https://www.turbosquid.com/Search/3D-Models/flower']" +Cup ,Free Teacup model created as a project asset. No materials included.,sneakychineseman,Free, - All Extended Uses,2019-04-10,"['FBX ', 'OBJ ']","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup', 'teacup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup', 'https://www.turbosquid.com/3d-model/teacup']","['cup', 'kitchen', 'beverage', 'asset', 'miscellaneous']","['https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/beverage', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/miscellaneous']" +Pen tablet ,pen tablet box,Teaw,Free, - All Extended Uses,2019-04-09,['OBJ '],"['3D Model', 'office', 'office supplies', 'pen holder']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/pen-holder']","['pen', 'tablet']","['https://www.turbosquid.com/Search/3D-Models/pen', 'https://www.turbosquid.com/Search/3D-Models/tablet']" +Lowpoly stone blocks ,"Lowpoly stone blocks (Cube, Cylinder, Half cube).",ptrusted,Free, - All Extended Uses,2019-04-09,['OBJ '],"['3D Model', 'architecture', 'site components', 'landscape architecture', 'stepping stone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/stepping-stone']","['Stone', 'Block', 'Free', 'Lowpoly']","['https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Industrial silo_6 ,"ABOUT MODEL:-* This is a medium detail 3d model with Texture.* Ready to drop into any scene or be used as a stand-alone prop.* Real world scale and exact proportions.* Excellent polygon efficiency.* The model has a different topology and realistic textures. The model is perfect for you for a variety of purposes.* Model is suitable for use in games.MATERIAL & TEXTURE:-* All materials in one Multi Sub-Object.* Material and Texture setup is included only in MAX FORMAT (vray 2.0 and scanline version).* UVW Mapping are applied.* All textures are in defuse map.* Textures can be easily repaint.LIGHTING:-* Studio setup is not included.FILE FORMAT:-* 3DS* FBX* OBJ* Blender 2.79* Cinema 4d 11.5* Maya 2010* MAX (Vray 2.0 Version)* MAX (Standard Version)* Native file is 3ds Max 2009(.max)* Other formats were converted from the MAX file.OBJECTS:-* Same material objects are attached for easy selection.* All objects are unique named.WARNING:-Depending on which software package you are using.The exchange formats(obj, 3ds and fbx) may not match the priview images exactly.Due to the nature of these formats, there may be some textures that have to beloaded by hand and possively triangulated geomatry.Thank you for your interest in this model.Please give your feedback on it if you like.",Max3dModel,Free, - All Extended Uses,2019-04-08,"['3D Studio', 'FBX ', 'OBJ ']","['3D Model', 'industrial', 'industrial container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container']","['3d', 'model', 'low', 'poly', 'game', 'ready', 'factory', 'industrial', 'site', 'industry', 'gas', 'oil', 'plant', 'equipment', 'tank', 'silo', 'storage', 'steel', 'metal', 'refinery']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/site', 'https://www.turbosquid.com/Search/3D-Models/industry', 'https://www.turbosquid.com/Search/3D-Models/gas', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/equipment', 'https://www.turbosquid.com/Search/3D-Models/tank', 'https://www.turbosquid.com/Search/3D-Models/silo', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/refinery']" +Bario,Mario knockoff.,matthewierfino,Free, - Editorial Uses Only,2019-04-08,['OBJ '],"['3D Model', 'characters', 'game character']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/game-character']",['Character'],['https://www.turbosquid.com/Search/3D-Models/character'] +Sword ,"Sword based on the sword from videogame 'Hellblade: Senua's Sacrifice'. Images with materials are for display purposes only, file does not include materials.",matthewierfino,Free, - Editorial Uses Only,2019-04-08,['OBJ 1'],"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']",['sword'],['https://www.turbosquid.com/Search/3D-Models/sword'] +Grenade hp ,"A grenade is an explosive weapon typically thrown by hand, but can also refer to projectiles shot out of grenade launchers. This is a model with lots of polygons and details and is perfectly designed for used in game design, architectural visualization, VFX and other concept that require detail. Also included in are alternative textures that can easily be swapped to give it a different look.",nquest,Free, - All Extended Uses,2019-04-08,"['3D Studio', 'Collada ', 'FBX 2016', 'OBJ ']","['3D Model', 'weaponry', 'munitions', 'grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade']","['Fragment', 'weapon', 'war', 'bomb', 'hand', 'round', 'low-poly', 'game', 'unity', 'mobile', 'fast', 'grenade', 'explosive']","['https://www.turbosquid.com/Search/3D-Models/fragment', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/bomb', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/mobile', 'https://www.turbosquid.com/Search/3D-Models/fast', 'https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/explosive']" +Kitchen 3d ,kitchen 3d,AG Creations,Free, - All Extended Uses,2019-04-08,Unknown,"['3D Model', 'interior design', 'interior', 'residential spaces', 'kitchen']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/residential-spaces', 'https://www.turbosquid.com/3d-model/kitchen']","['Model', 'Kitchen', '3d']","['https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/3d']" +Focke-wulf fw 190,"About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.- making by 3dmax 6 and Edit by 3dmax 2010",Basemaram,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-08,Unknown,"['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter propeller plane']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-propeller-plane']","['German', 'WWII', 'Fighter', 'Aircraft', 'FW', '190', 'Focke-Wulf', 'Shrike', 'wulf', 'focke', 'engine', 'plane', 'battle', 'ww2', 'fw190', 'fockewulf', 'military', 'propeller', 'historic', 'airplane', 'fw-190']","['https://www.turbosquid.com/Search/3D-Models/german', 'https://www.turbosquid.com/Search/3D-Models/wwii', 'https://www.turbosquid.com/Search/3D-Models/fighter', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/fw', 'https://www.turbosquid.com/Search/3D-Models/190', 'https://www.turbosquid.com/Search/3D-Models/focke-wulf', 'https://www.turbosquid.com/Search/3D-Models/shrike', 'https://www.turbosquid.com/Search/3D-Models/wulf', 'https://www.turbosquid.com/Search/3D-Models/focke', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/plane', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/ww2', 'https://www.turbosquid.com/Search/3D-Models/fw190', 'https://www.turbosquid.com/Search/3D-Models/fockewulf', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/propeller', 'https://www.turbosquid.com/Search/3D-Models/historic', 'https://www.turbosquid.com/Search/3D-Models/airplane', 'https://www.turbosquid.com/Search/3D-Models/fw-190']" +Greek pillar ,GREEK ANCIENT PILLAR ( LOW-MED POLY),Vigdarov Alexey,Free, - All Extended Uses,2019-04-07,"['FBX FBX', 'Other TEXTURES']","['3D Model', 'architecture', 'building components', 'column', 'pillar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/column', 'https://www.turbosquid.com/3d-model/pillar']",['PILLAR'],['https://www.turbosquid.com/Search/3D-Models/pillar'] +Easy chair 01 ,3D model of an easy chair,Tjasablabla,Free, - All Extended Uses,2019-04-07,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['chair', 'easychair', 'blue', 'pillow', 'wood']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/easychair', 'https://www.turbosquid.com/Search/3D-Models/blue', 'https://www.turbosquid.com/Search/3D-Models/pillow', 'https://www.turbosquid.com/Search/3D-Models/wood']" +Weapon 1 sci-fi,Weapon Sci-Fi for games.,El Pulga,Free, - All Extended Uses,2019-04-07,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/raygun']","['weapon', 'sci', 'fi', 'gun', 'modern', 'future', 'plasma', 'laser']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/plasma', 'https://www.turbosquid.com/Search/3D-Models/laser']" +Anna free naked woman,"Woman fullbody naked model based on scan data.3d scanned people created by Thor.Scene is in cm. Model has real world scale.Format:Anna.zip - includes obj, mtl and png file.",Lyalina,Free, - All Extended Uses,2019-04-06,['OBJ '],"['3D Model', 'characters', 'people', 'woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman']","['woman', 'naked', 'scan', 'body']","['https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/naked', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/body']" +Desert rock 007,This as a photogrammetrically generated model of a large sandstone rock.This 3D scan was generated in the software Photoscan from 23 images. All images were taken with a canon t2i.The texture for this model is 4K resolution (4096x4096)This mesh is the raw scan data and the polygons are primarily tris.If you like the model please rate it! I would really appreciate that!Thanks!,Iridesium,Free, - All Extended Uses,2019-04-05,"['FBX ', 'OBJ ', 'STL ', 'Other ']","['3D Model', 'nature', 'landscapes', 'mineral', 'rock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/mineral', 'https://www.turbosquid.com/3d-model/rock']","['rocks', 'pebble', 'brick', 'concrete', 'nature', 'broken', 'fractured', 'rubble', 'gravel', 'bolder', 'landscape', 'scan']","['https://www.turbosquid.com/Search/3D-Models/rocks', 'https://www.turbosquid.com/Search/3D-Models/pebble', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/concrete', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/broken', 'https://www.turbosquid.com/Search/3D-Models/fractured', 'https://www.turbosquid.com/Search/3D-Models/rubble', 'https://www.turbosquid.com/Search/3D-Models/gravel', 'https://www.turbosquid.com/Search/3D-Models/bolder', 'https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/scan']" +Medieval low poly house low-poly,High-quality model of a medieval house. The object is UVmapped but not textured. The materials are aplied. Created with Blender 2.79.    lowpoly    high-quality    no interior    included file formats are directly exported from Blender.,jonasvanoyenbrugge,Free, - All Extended Uses,2019-04-05,"['3D Studio', 'Collada ', 'FBX ', 'Other ', 'OBJ ']","['3D Model', 'architecture', 'building', 'residential building', 'house', 'medieval house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house', 'https://www.turbosquid.com/3d-model/medieval-house']","['house', 'architecture', 'roof', 'building', 'old', 'village', 'medieval', 'lowpoly', 'cartoon', 'exterior', 'historic', 'fantasy', 'free', 'mansion']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/roof', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/village', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/historic', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/mansion']" +Utensils ,---,vavalexus,Free, - Editorial Uses Only,2019-04-04,['OBJ '],"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'tableware', 'flatware', 'fork']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/tableware', 'https://www.turbosquid.com/3d-model/flatware', 'https://www.turbosquid.com/3d-model/fork']",['utensils'],['https://www.turbosquid.com/Search/3D-Models/utensils'] +Man with a shotgun ,"Low poly model of a man with a weapon. Ready for third-party games, RPG, strategies and other programs and applications. Sculpting models zbrush, rigging in maya. Textures Substance Painter . PBR textures(Metallic and other texture) The model consists following parts: body texture - format 4096x4096 head texture - format 2048x2048 texture ammunition - format 2048x2048 texture axe - format 2048x2048 texture shotgun - format 2048x2048 texture gun - format 2048x2048 pomegranate texture - format 2048x2048Textures are scaled through third-party editors with no loss of quality up to 1024 or 2048 pixelsRigging -Controllers from Maya 2017 Built-in controller skinning all the bones. Rigging implemented system Fott roll for feet.In addition to the low-poly model, you also get a high-poly model.faces 28107 verts 32383 tris 54829Programs usedSculpt ZBRUSHRetopology: 3D-COAT texturing: Substance PainterUV map UVLAYOUTRenderMarmoset toolbag",puzanovanton89,Free, - All Extended Uses,2019-04-04,"['Other ', 'OBJ ', 'FBX ']","['3D Model', 'characters', 'people', 'military people', 'warrior']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/military-people', 'https://www.turbosquid.com/3d-model/warrior-person']","['Character', 'man', 'game', '3d', 'low', 'poly', 'shotgun', 'ax', 'pistol', 'grenade', 'survival', 'adventure', 'for', 'games', 'Unity', 'PBR', 'Unreal', 'Engine', '4']","['https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/shotgun', 'https://www.turbosquid.com/Search/3D-Models/ax', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/survival', 'https://www.turbosquid.com/Search/3D-Models/adventure', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/games', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/4']" +Monster woman ,Monster woman humanHer name is Ivone.rigedhas idle animation and run Animation.,Brian31,Free, - All Extended Uses,2019-04-03,['OBJ '],"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['Monster', 'woman', 'human']","['https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/human']" +Sci-fi military case,"Sci-fi military CaseHello dear friends! I hasten to share with you an excellent case, which may well be useful for your ideas or plans in 3D, so download and make the dream come true)) You can use anywhere except on 3D drains, your right !! Well, do not forget to press Lucas to raise morale)! Thank.+Bonus Gun",SkilHardRU,Free, - All Extended Uses,2019-04-03,"['FBX 16', 'OBJ 16']","['3D Model', 'weaponry', 'munitions', 'military case', 'weapon case']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/military-case', 'https://www.turbosquid.com/3d-model/weapon-case']","['props', 'case', 'box', 'crate', 'sci', 'fi', 'pelican', 'halway', 'indystrial', 'military', 'corridor', 'panel', 'free', 'industrial', 'tool']","['https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/case', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/pelican', 'https://www.turbosquid.com/Search/3D-Models/halway', 'https://www.turbosquid.com/Search/3D-Models/indystrial', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/corridor', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/tool']" +[free] stylized industrial props set,"Stylized Industrial Props Set with hi-res materialsPackage contain: 2 factory machines, Pipes set and 2 Oil tanks.Number of Textures: 22Texture Sizes:1024x10242048x2048Number of Meshes: 21",Game Ready Studios,Free, - All Extended Uses,2019-04-02,['Other '],"['3D Model', 'industrial', 'industrial equipment', 'robotics', 'industrial robot', 'robotic arm']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-equipment', 'https://www.turbosquid.com/3d-model/robotics', 'https://www.turbosquid.com/3d-model/industrial-robot', 'https://www.turbosquid.com/3d-model/robotic-arm']","['Free', 'Stylized', 'Industrial', 'Props', 'factory', 'machine', 'Pipes', 'Oil', 'tank']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/stylized', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/pipes', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/tank']" +Tool box ,Tool hamer saw nail screwdriver,Brian31,Free, - All Extended Uses,2019-04-01,Unknown,"['3D Model', 'industrial', 'tools', 'toolbox']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/toolbox']","['Tool', 'hamer', 'saw', 'nail', 'screwdriver']","['https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/hamer', 'https://www.turbosquid.com/Search/3D-Models/saw', 'https://www.turbosquid.com/Search/3D-Models/nail', 'https://www.turbosquid.com/Search/3D-Models/screwdriver']" +Skinny creature ,"Free creature model.ztl and obj files included.polygons,169,299_zbrush67,719_decimated obj",niyoo,Free, - All Extended Uses,2019-04-01,['OBJ '],"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['free', 'sculpting', 'zbrush', 'characters', 'monters', 'creatures', 'ztl', 'obj', 'body', 'anatomy', 'stylized']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/sculpting', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/characters', 'https://www.turbosquid.com/Search/3D-Models/monters', 'https://www.turbosquid.com/Search/3D-Models/creatures', 'https://www.turbosquid.com/Search/3D-Models/ztl', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/stylized']" +Coral ,"DESCRIPTIONvertices - 18841 , faces - 37678,1.1_AO.BMP ------8192*8192*322.1_BaseColor.BMP ------8192*8192*323.1_O_(+Y)__Normal.BMP ------8192*8192*324.1_O_(-Y)__Normal.BMP ------8192*8192*325.1_T_(+Y)__Normal.BMP ------8192*8192*326.1_T_(-Y)__Normal.BMP ------8192*8192*327.1_AO2.BMP ------8192*8192*32",edikm1,Free, - All Extended Uses,2019-04-01,"['3D Studio', 'FBX ', 'OBJ ', 'Other ']","['3D Model', 'nature', 'landscapes', 'coral reef', 'brain coral']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/coral-reef', 'https://www.turbosquid.com/3d-model/brain-coral']","['Coral', 'underwater', 'diving', 'ocean', 'sea', 'reef', 'mollusc', 'tropical', 'Aquarium', 'Decoration', 'Fish', 'tank', 'decor', 'fossil']","['https://www.turbosquid.com/Search/3D-Models/coral', 'https://www.turbosquid.com/Search/3D-Models/underwater', 'https://www.turbosquid.com/Search/3D-Models/diving', 'https://www.turbosquid.com/Search/3D-Models/ocean', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/reef', 'https://www.turbosquid.com/Search/3D-Models/mollusc', 'https://www.turbosquid.com/Search/3D-Models/tropical', 'https://www.turbosquid.com/Search/3D-Models/aquarium', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/fish', 'https://www.turbosquid.com/Search/3D-Models/tank', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/fossil']" +Sofa ,White leader old classic sofa,Rafael Novella,Free, - All Extended Uses,2019-04-01,"['FBX 2018', 'Collada 2018', '3D Studio', '2018\n']","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['sofa', 'leader', 'sofa', 'old', 'sofa', 'retro', 'white', 'leader', 'single', 'sofa', 'picture']","['https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/leader', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/leader', 'https://www.turbosquid.com/Search/3D-Models/single', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/picture']" +Empty flower bed,"3D-scanned concrete flower bed model.3ds max 2015 VRay, Corona and Scanline scenes;OBJ;FBX;Textures (4K Diffuse and Bump maps in JPG format).Diameter or the model is about 1 meter.System units: millimeters.Enjoy!",SuicideSquid,Free, - All Extended Uses,2019-04-01,"['OBJ ', 'FBX ']","['3D Model', 'interior design', 'housewares', 'general decor', 'planter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/planter']","['3d', 'scan', 'flowerbed', 'concrete', 'cylinder', 'pot', 'soil']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/flowerbed', 'https://www.turbosquid.com/Search/3D-Models/concrete', 'https://www.turbosquid.com/Search/3D-Models/cylinder', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/soil']" +Heinekin beer ,"this is not a copy, I did it by hand with blender, is substance painterFree download , ready for your game Format :1 - FBX2 - Blender Thank you",gatineau,Free, - Editorial Uses Only,2019-04-01,"['FBX 1', '2\n']","['3D Model', 'food and drink', 'beverages', 'alcoholic drinks', 'beer', 'beer bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/beverages', 'https://www.turbosquid.com/3d-model/alcoholic-drinks', 'https://www.turbosquid.com/3d-model/beer', 'https://www.turbosquid.com/3d-model/beer-bottle']","['Beer', 'bottle']","['https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/bottle']" +Vintage thermometer ,"Vintage ThermometerThis design is not animated. 29966 quadrilateral polygons12096 triangular polygons72028 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ",DTG Amusements,Free, - All Extended Uses,2019-04-01,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013', 'STL 2013', 'Other PDF', '1\n', 'Other PDF', '2\n']","['3D Model', 'science', 'weather instruments', 'atmospheric thermometer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/weather-instruments', 'https://www.turbosquid.com/3d-model/atmospheric-thermometer']","['Thermometer', 'Steampunk']","['https://www.turbosquid.com/Search/3D-Models/thermometer', 'https://www.turbosquid.com/Search/3D-Models/steampunk']" +Boat game ready,"File formats: BLEND , OBJGame ready - low poly model- The model has 1 objects (Draw Call)- The model contains    427 quads    430 verts- All parts placed in one layer- All parts are fully UV unwraped.Textures (*.PNG):=========================Main 1024x1024:- Diffuse - Normal- SpecularOriginally created with Blender. No 3rd party plugins required.Software used:- Blender",Valkeru32bits,Free, - All Extended Uses,2019-04-01,['OBJ '],"['3D Model', 'vehicles', 'vessel', 'rowboat', 'canoe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/rowboat', 'https://www.turbosquid.com/3d-model/canoe']","['Canoe', 'rowing', 'kayak', 'wooden', 'recreational', 'outdoor', 'paddling', 'watercraft', 'transportation', 'transport', 'canoeing', 'adventure', 'leisure', 'sport', 'river', 'lake', 'sea', 'ocean']","['https://www.turbosquid.com/Search/3D-Models/canoe', 'https://www.turbosquid.com/Search/3D-Models/rowing', 'https://www.turbosquid.com/Search/3D-Models/kayak', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/recreational', 'https://www.turbosquid.com/Search/3D-Models/outdoor', 'https://www.turbosquid.com/Search/3D-Models/paddling', 'https://www.turbosquid.com/Search/3D-Models/watercraft', 'https://www.turbosquid.com/Search/3D-Models/transportation', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/canoeing', 'https://www.turbosquid.com/Search/3D-Models/adventure', 'https://www.turbosquid.com/Search/3D-Models/leisure', 'https://www.turbosquid.com/Search/3D-Models/sport', 'https://www.turbosquid.com/Search/3D-Models/river', 'https://www.turbosquid.com/Search/3D-Models/lake', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/ocean']" +Photorealistic ring,This Blender video demonstrates how to make a silver and turquoise ring. The texture for the turquoise stone uses a procedural texture and therefore requires no external image.,dturlu,Free, - All Extended Uses,2019-04-01,Unknown,"['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring']",['ring'],['https://www.turbosquid.com/Search/3D-Models/ring'] +Soccer ball,soccer ball,dturlu,Free, - All Extended Uses,2019-04-01,Unknown,"['3D Model', 'sports', 'team sports', 'soccer', 'soccer ball']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/team-sports', 'https://www.turbosquid.com/3d-model/soccer', 'https://www.turbosquid.com/3d-model/soccer-ball']","['soccer', 'ball']","['https://www.turbosquid.com/Search/3D-Models/soccer', 'https://www.turbosquid.com/Search/3D-Models/ball']" +Sea house,SEA HOUSE===================package includes:wood planklife saviorfishing rodstool===================wood texturenormal map column,Andres Sanchez G,Free, - All Extended Uses,2019-03-31,"['Other 2', '78\n']","['3D Model', 'architecture', 'building', 'residential building', 'house', 'fantasy house', 'cartoon house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house', 'https://www.turbosquid.com/3d-model/fantasy-house', 'https://www.turbosquid.com/3d-model/cartoon-house']","['seahouse', 'sea', 'house', 'fisherman']","['https://www.turbosquid.com/Search/3D-Models/seahouse', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/fisherman']" +Bull ,bull simple,Brian31,Free, - All Extended Uses,2019-03-31,['OBJ '],"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'farm animals', 'cow', 'bull']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/farm-animals', 'https://www.turbosquid.com/3d-model/cow', 'https://www.turbosquid.com/3d-model/bull']","['bull', 'farm', 'bovine']","['https://www.turbosquid.com/Search/3D-Models/bull', 'https://www.turbosquid.com/Search/3D-Models/farm', 'https://www.turbosquid.com/Search/3D-Models/bovine']" +Dice ,a couple of dice,Pi3d,Free, - All Extended Uses,2019-03-31,Unknown,"['3D Model', 'toys and games', 'games', 'dice']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dice']","['dice', 'casin', 'cube', 'casino', 'play', 'game', 'luck']","['https://www.turbosquid.com/Search/3D-Models/dice', 'https://www.turbosquid.com/Search/3D-Models/casin', 'https://www.turbosquid.com/Search/3D-Models/cube', 'https://www.turbosquid.com/Search/3D-Models/casino', 'https://www.turbosquid.com/Search/3D-Models/play', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/luck']" +Thompson ,"A Thompson Submachine gun in a zipped folder. Includes an FBX, Diffuse map and Unity import package.Poly count is rather high, no fire control group, no surface imperfections or normal map.",g4RYZOiD,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-30,Unknown,"['3D Model', 'weaponry', 'weapons', 'firearms', 'machine gun', 'submachine gun', 'tommy gun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/machine-gun', 'https://www.turbosquid.com/3d-model/submachine-gun', 'https://www.turbosquid.com/3d-model/tommy-gun']","['Gun', 'Submachinegun', 'Firearm', 'WWI']","['https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/submachinegun', 'https://www.turbosquid.com/Search/3D-Models/firearm', 'https://www.turbosquid.com/Search/3D-Models/wwi']" +Old rock column ,,Brian31,Free, - All Extended Uses,2019-03-30,Unknown,"['3D Model', 'architecture', 'building components', 'column']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/column']","['column', 'old', 'ruins', 'ancient']","['https://www.turbosquid.com/Search/3D-Models/column', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/ruins', 'https://www.turbosquid.com/Search/3D-Models/ancient']" +Tall building,This is a 9 story building. It has one main ground floor and then 8 other glass floors. It has an antenna on top. There are also 6 floors of balconies. It can be used for anything but would work well in a city. Made using Blender 2.80.,Jhoyski,Free, - All Extended Uses,2019-03-30,"['FBX ', 'OBJ ', 'STL ']","['3D Model', 'architecture', 'building', 'skyscraper']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/skyscraper']","['9Stories', 'City', 'Tall', 'Antenna', 'Building', 'NoTexture']","['https://www.turbosquid.com/Search/3D-Models/9stories', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/tall', 'https://www.turbosquid.com/Search/3D-Models/antenna', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/notexture']" +Thief typography ,"THIEF typography for all you content creators out there, might be good to have a look how you bevel edges in hardsurface modeling also.",CREAM_Wes,Free, - All Extended Uses,2019-03-29,Unknown,"['3D Model', 'architecture', 'urban design', 'street elements', 'sign']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/sign']","['#thief', '#typography']","['https://www.turbosquid.com/Search/3D-Models/%23thief', 'https://www.turbosquid.com/Search/3D-Models/%23typography']" +Table desk ,Table desk furniture chair,Brian31,Free, - All Extended Uses,2019-03-29,Unknown,"['3D Model', 'furnishings', 'table', 'dining table', 'dining room set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table', 'https://www.turbosquid.com/3d-model/dining-room-set']","['Table', 'desk', 'furniture', 'chair']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/chair']" +Apartment building ,This model is of a 5 story apartment building. It can be used in anyway that you want but it would work well in a city. Made using Blender 2.80.,Jhoyski,Free, - All Extended Uses,2019-03-29,"['FBX ', 'OBJ ', 'STL ']","['3D Model', 'architecture', 'building', 'residential building', 'apartment building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/apartment-building']","['Building', 'Apartment', '5', 'Stories', 'No', 'Texture', 'Free']","['https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/5', 'https://www.turbosquid.com/Search/3D-Models/stories', 'https://www.turbosquid.com/Search/3D-Models/no', 'https://www.turbosquid.com/Search/3D-Models/texture', 'https://www.turbosquid.com/Search/3D-Models/free']" +White and black cat ,Whith and black Cat:Anumation (6):WalkRunIdleJumpWalk slowDeadTexture:Body (None) 3000x3000Body (Normal) 3000x3000Body (AO) 3000x3000,Essam isbiga,Free, - All Extended Uses,2019-03-29,"['FBX 6', '0\n']","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'cat', 'housecat']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/cat', 'https://www.turbosquid.com/3d-model/housecat']","['Animals', 'cat', 'free', 'animation', 'mammal', 'animated']","['https://www.turbosquid.com/Search/3D-Models/animals', 'https://www.turbosquid.com/Search/3D-Models/cat', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/mammal', 'https://www.turbosquid.com/Search/3D-Models/animated']" +Pineapple ,"Pineapple (plain)Dimensions: length 23.29 mm, 33.19 mm, height 25.75 mm.Vertices - 26090, polygons - 25984.",FATonGraycat,Free, - All Extended Uses,2019-03-29,"['FBX ', 'Other ', 'OBJ ', 'STL ']","['3D Model', 'food and drink', 'food', 'fruit', 'pineapple']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/fruit', 'https://www.turbosquid.com/3d-model/pineapple']","['pineapple', 'fruit', 'tropical', 'africa', 'food', 'culture', 'fresh', 'tropic', 'exotic', 'vitamin', 'palm']","['https://www.turbosquid.com/Search/3D-Models/pineapple', 'https://www.turbosquid.com/Search/3D-Models/fruit', 'https://www.turbosquid.com/Search/3D-Models/tropical', 'https://www.turbosquid.com/Search/3D-Models/africa', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/culture', 'https://www.turbosquid.com/Search/3D-Models/fresh', 'https://www.turbosquid.com/Search/3D-Models/tropic', 'https://www.turbosquid.com/Search/3D-Models/exotic', 'https://www.turbosquid.com/Search/3D-Models/vitamin', 'https://www.turbosquid.com/Search/3D-Models/palm']" +Shop ( store ) ,"About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.",Basemaram,Free, - All Extended Uses,2019-03-29,Unknown,"['3D Model', 'architecture', 'building', 'commercial building', 'retail store']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/retail-store']","['Shop', 'Store', 'commercial', 'sell', 'sales', 'display']","['https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/store', 'https://www.turbosquid.com/Search/3D-Models/commercial', 'https://www.turbosquid.com/Search/3D-Models/sell', 'https://www.turbosquid.com/Search/3D-Models/sales', 'https://www.turbosquid.com/Search/3D-Models/display']" +Bar,This is a juice & ice cream bar.1. good topology2. Uv mapping3. Uv unwrapped4. 4k texture5.clean modelIf you want more exchange file please contact meIf you have any question please message me.Thank You!,3d expart,Free, - All Extended Uses,2019-03-28,"['FBX ', '3D Studio', 'Other ', 'OBJ ']","['3D Model', 'architecture', 'building', 'commercial building', 'bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/saloon']","['interior', 'shop', 'architecture', 'design', 'bar.', 'restaurant', 'juice', 'bar', 'ice', 'cream', 'decoration']","['https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/bar.', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/juice', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/ice', 'https://www.turbosquid.com/Search/3D-Models/cream', 'https://www.turbosquid.com/Search/3D-Models/decoration']" +Bojack horseman ,Back in the 90sI was in a very famous TV showI'm BoJack the horse (BoJack)BoJack the horseDon't act like you don't knowAnd I'm trying to hold on to my pastIt's been so longI don't think I'm gonna lastI guess I'll just tryAnd make you understandThat I'm more horse than a manOr I'm more man than a horseBoJack,Brian31,Free, - Editorial Uses Only,2019-03-28,['OBJ '],"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'farm animals', 'horse', 'cartoon horse']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/farm-animals', 'https://www.turbosquid.com/3d-model/horse', 'https://www.turbosquid.com/3d-model/cartoon-horse']","['Bojack', 'horseman', 'horse', 'werehorse', 'Netflix', 'cartoon', 'charater']","['https://www.turbosquid.com/Search/3D-Models/bojack', 'https://www.turbosquid.com/Search/3D-Models/horseman', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/werehorse', 'https://www.turbosquid.com/Search/3D-Models/netflix', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/charater']" +Samara the ring bas-relief for cnc router ,"Samara 'The Ring' 3d model bas relief for CNC machining, 3D printing, carving, molding etc. 3Dprinted bas-relief looks pretty good if it is painted with bronze, gold or silver paint. You can order a personal portrait in the form of a bas-relief, which can be 3D printed or cut out by CNC router. Just contact me and send a photo, we will discuss all the details.I am happy to answer any questions you might have about the model.Check out my profile to see the other stuff!PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free. You can arbitrarily dispose of material products manufactured using this model.",voronzov,Free, - All Extended Uses,2019-03-28,"['OBJ ', 'STL ']","['3D Model', 'art', 'sculpture', 'relief']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/relief']","['stl', 'model', 'bas-relief', 'samara', '3d', 'cnc', 'router', 'the', 'ring']","['https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/bas-relief', 'https://www.turbosquid.com/Search/3D-Models/samara', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/router', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/ring']" +Spartan stl for cnc router - 3d bas-relief tzar leonid ,"Spartan Tzar Leonid 3d model bas relief for CNC router, 3D printing, carving, molding etc.PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free.You can arbitrarily dispose of material products manufactured using this model.If you have a question please convo me and I'll be happy to help.",voronzov,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-28,"['OBJ ', 'STL ', 'VRML ']","['3D Model', 'art', 'sculpture', 'relief']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/relief']","['spartan', 'stl', 'file', '3d', 'model', 'bas-relief', 'cnc', 'router', 'Leonid']","['https://www.turbosquid.com/Search/3D-Models/spartan', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/file', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/bas-relief', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/router', 'https://www.turbosquid.com/Search/3D-Models/leonid']" +Joker bas-relief for cnc router,"Joker 3d model bas relief for CNC machining, 3D printing, carving, molding etc. 3Dprinted bas-relief looks pretty good if it is painted with bronze, gold or silver paint. You can order a personal portrait in the form of a bas-relief, which can be 3D printed or cut out by CNC router. Just contact me and send a photo, we will discuss all the details.I am happy to answer any questions you might have about the model.Check out my profile to see the other stuff!PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free. You can arbitrarily dispose of material products manufactured using this model.",voronzov,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-28,"['OBJ ', 'STL ', 'VRML ']","['3D Model', 'art', 'sculpture', 'relief']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/relief']","['joker', 'file', 'stl', 'model', 'for', 'cnc', 'router', '3d', 'bas', 'relief']","['https://www.turbosquid.com/Search/3D-Models/joker', 'https://www.turbosquid.com/Search/3D-Models/file', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/router', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/bas', 'https://www.turbosquid.com/Search/3D-Models/relief']" +Classic building ( bankhaus ),"Built in 1754 the Bankhaus building is a classic example of architecture from this time. The building is located in Germany on the Kaizerplatz in Wuppertal-Vohwinkel and was originally occupied by the von der Heydt-Kersten & Shne bank.About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.- making by 3dmax 6 and Editing by 2010",Basemaram,Free, - All Extended Uses,2019-03-28,Unknown,"['3D Model', 'architecture', 'building', 'residential building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building']","['city', 'town', 'building', 'house', 'palace', 'old', 'street', 'Gothic', 'townhouse', 'urban', 'medieval', 'classic', 'Europe', 'European', 'shop', 'architecture', 'hotel', 'Bankhaus', 'neoclassic']","['https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/palace', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/gothic', 'https://www.turbosquid.com/Search/3D-Models/townhouse', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/europe', 'https://www.turbosquid.com/Search/3D-Models/european', 'https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/hotel', 'https://www.turbosquid.com/Search/3D-Models/bankhaus', 'https://www.turbosquid.com/Search/3D-Models/neoclassic']" +Steampunk clock ,"A low-poly clock with steampunk themeNo tris or n-gone, Quad polygons onlyNo overlapping uv map2048 x 2048 textureFaces    : 5560Vertices : 5614",Mfarhani,Free, - All Extended Uses,2019-03-27,"['FBX ', 'Other ', 'OBJ ']","['3D Model', 'interior design', 'housewares', 'general decor', 'clock', 'wall clock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/clock', 'https://www.turbosquid.com/3d-model/wall-clock']","['Clock', 'Steampunk', 'Decoration', 'Retro']","['https://www.turbosquid.com/Search/3D-Models/clock', 'https://www.turbosquid.com/Search/3D-Models/steampunk', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/retro']" +Old classic car ,Old Classic Car,Brian31,Free, - All Extended Uses,2019-03-27,Unknown,"['3D Model', 'vehicles', 'car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car']","['Old', 'Classic', 'Car']","['https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/car']" +S'well sports bottle ,"Drinking metal bottle.Objects: - Bottle - CapCap is unscrewable.Reference: S'well, JadePlease, rate the model. It will help a lot!",bomi1337,Free, - All Extended Uses,2019-03-27,"['FBX ', 'Other ', 'OBJ ', 'STL ']","['3D Model', 'sports', 'exercise equipment', 'sports bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/sports-bottle']","['bottle', 'metal', ""s'well"", 'water', 'realistic', '3d', 'drink', 'food']","['https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/s%27well', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/food']" +Wooden buckets and a pitcher ,"Set of wooden buckets and a pitcherThis design is not animated. 20529 quadrilateral polygons44319 triangular polygons85377 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ",DTG Amusements,Free, - All Extended Uses,2019-03-27,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013', 'STL 2013']","['3D Model', 'industrial', 'industrial container', 'bucket']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/bucket']","['Bucket', 'Pitcher']","['https://www.turbosquid.com/Search/3D-Models/bucket', 'https://www.turbosquid.com/Search/3D-Models/pitcher']" +Wardrobe,wardrobewith clothes,Brian31,Free, - All Extended Uses,2019-03-26,Unknown,"['3D Model', 'furnishings', 'armoire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/armoire']","['wardrobe', 'clothes', '3d', 'blender']","['https://www.turbosquid.com/Search/3D-Models/wardrobe', 'https://www.turbosquid.com/Search/3D-Models/clothes', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/blender']" +Test ,Qa Test Assets,cbriere25,Free, - All Extended Uses,2019-02-26,['Other '],Unknown,Unknown,"['Qa', 'Test', 'Assets']","['https://www.turbosquid.com/Search/3D-Models/qa', 'https://www.turbosquid.com/Search/3D-Models/test', 'https://www.turbosquid.com/Search/3D-Models/assets']" +Cyclorama infinity wall ,"Cyclorama Photography Infinity WallThis is the background that I use for all my 3D rendered studio shots. A smooth quad mesh UV unwrapped for good studio type baking in Blender and other ray tracing programs.A cyclorama is a large curtain or wall, often concave, positioned at the back of the apse. ... Cycloramas or 'cycs' also refer to photography curving backdrops which are white to create no background, or green screen to create a masking backdrop. Cycloramas are often used to create the illusion of a sky onstage.",SPACESCAN,Free, - All Extended Uses,2019-03-25,"['3D Studio', 'Collada ', 'FBX ', 'OBJ ', 'Other PLY']","['3D Model', 'interior design', 'interior', 'commercial spaces', 'studio', 'photo studio']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/commercial-spaces', 'https://www.turbosquid.com/3d-model/studio', 'https://www.turbosquid.com/3d-model/photo-studio']","['infinity', 'photography', 'studio', 'curved', 'camera', 'wall', 'background', 'film', 'stage', 'green', 'screen']","['https://www.turbosquid.com/Search/3D-Models/infinity', 'https://www.turbosquid.com/Search/3D-Models/photography', 'https://www.turbosquid.com/Search/3D-Models/studio', 'https://www.turbosquid.com/Search/3D-Models/curved', 'https://www.turbosquid.com/Search/3D-Models/camera', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/background', 'https://www.turbosquid.com/Search/3D-Models/film', 'https://www.turbosquid.com/Search/3D-Models/stage', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/screen']" +Garbage,garbage 3d,Brian31,Free, - All Extended Uses,2019-03-25,Unknown,"['3D Model', 'industrial', 'industrial container', 'garbage container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/garbage-container']","['garbage', 'trash']","['https://www.turbosquid.com/Search/3D-Models/garbage', 'https://www.turbosquid.com/Search/3D-Models/trash']" +End table square metal/glass 010 ,"============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 55.5cm x 55.5cm x 55.8cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios",Orchidea Studios,Free, - All Extended Uses,2019-03-25,"['FBX 2012', 'OBJ ']","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['end', 'table', 'square', 'contemporary', 'metal', 'glass']","['https://www.turbosquid.com/Search/3D-Models/end', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/square', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/glass']" +End table square metal/glass 006 ,"============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 45.0cm x 45.0cm x 49.8cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios",Orchidea Studios,Free, - All Extended Uses,2019-03-25,"['FBX 2012', 'OBJ ']","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['end', 'table', 'square', 'contemporary', 'metal', 'glass']","['https://www.turbosquid.com/Search/3D-Models/end', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/square', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/glass']" +End table square metal/glass 004,"============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 40.0cm x 40.3cm x 52.1cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios",Orchidea Studios,Free, - All Extended Uses,2019-03-25,"['FBX 2012', 'OBJ ']","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['end', 'table', 'square', 'contemporary', 'metal', 'glass']","['https://www.turbosquid.com/Search/3D-Models/end', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/square', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/glass']" +Free wheel models ,FREE 3D MODELSHigh quality and free 3d model of wheel.2 versions for 3ds Max included : V-Ray and default materials.Colors can be easily modified.Previews rendered with 3ds max and V-Ray.Thank you for downloading and rating our free 3d models.3D Horse,3D Horse,Free, - All Extended Uses,2019-03-25,"['3D Studio', 'OBJ ']","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel', 'truck tire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel', 'https://www.turbosquid.com/3d-model/truck-tire']","['free', 'wheels', 'classic', 'tire', 'tyre', 'tread', 'rim', 'disk', 'disc', 'wheel', 'rubber', 'car', 'truck', 'van', 'part', 'protector', 'off-road', 'ride', 'vehicle', 'plane', 'aircraft', 'chassis', 'sava']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/wheels', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/tyre', 'https://www.turbosquid.com/Search/3D-Models/tread', 'https://www.turbosquid.com/Search/3D-Models/rim', 'https://www.turbosquid.com/Search/3D-Models/disk', 'https://www.turbosquid.com/Search/3D-Models/disc', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/rubber', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/van', 'https://www.turbosquid.com/Search/3D-Models/part', 'https://www.turbosquid.com/Search/3D-Models/protector', 'https://www.turbosquid.com/Search/3D-Models/off-road', 'https://www.turbosquid.com/Search/3D-Models/ride', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/plane', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/chassis', 'https://www.turbosquid.com/Search/3D-Models/sava']" +Lowpoly subway,lowpoly Subway for you all!,MeisterKaio,Free, - All Extended Uses,2019-03-25,"['OBJ ', 'FBX ']","['3D Model', 'vehicles', 'trains', 'subway car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/trains', 'https://www.turbosquid.com/3d-model/subway-car']","['LowPoly', 'Subway', 'and', 'Train']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/subway', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/train']" +Dragon ,Cartoon dragon Modeling Base,RealUnreal,Free, - All Extended Uses,2019-03-24,['FBX '],"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'dragon']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/dragon-creature']","['Dragon', 'Cartoon']","['https://www.turbosquid.com/Search/3D-Models/dragon', 'https://www.turbosquid.com/Search/3D-Models/cartoon']" +Firepit ,"Wrought Iron FirepitThis design is not animated. 24940 quadrilateral polygons20509 triangular polygons70389 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL, .STEP; .IGES",DTG Amusements,Free, - All Extended Uses,2019-03-24,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'IGES 2013', 'OBJ 2013', 'Other STEP', 'STL 2013', 'Other PDF1', 'Other PDF2']","['3D Model', 'architecture', 'site components', 'fireplace']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fireplace']","['Fire', 'Firepit']","['https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/firepit']" +Vase ,Low poly vase,Brian31,Free, - All Extended Uses,2019-03-23,Unknown,"['3D Model', 'interior design', 'housewares', 'general decor', 'vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase']","['Vase', 'pot', 'low', 'poly']","['https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly']" +Ram skul ,It is a skull of a ram without textures.You can use it for everything you want but the back and the inner of the skull isnt really detailed.,EinSteph,Free, - All Extended Uses,2019-03-23,Unknown,Unknown,Unknown,"['ram', 'skull', 'deco', 'bone', 'desert', 'death']","['https://www.turbosquid.com/Search/3D-Models/ram', 'https://www.turbosquid.com/Search/3D-Models/skull', 'https://www.turbosquid.com/Search/3D-Models/deco', 'https://www.turbosquid.com/Search/3D-Models/bone', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/death']" +Pergola ,Pergola High Resulotion,ibulb,Free, - All Extended Uses,2019-03-23,"['3D Studio', 'Collada ', 'Other ', 'FBX ', 'OBJ ']","['3D Model', 'architecture', 'site components', 'outdoor structure', 'gazebo', 'pergola']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/outdoor-structure', 'https://www.turbosquid.com/3d-model/gazebo', 'https://www.turbosquid.com/3d-model/pergola']",['Engineering'],['https://www.turbosquid.com/Search/3D-Models/engineering'] +Wall carving 1 ,"Wall Carving 1An intricate unique stone wall carving from Thailand. Since the texture process came out substandard this one is for free. Please see 'Wall Carving 2' for better results.Photoscan InformationPhotoscanning offers the ability to capture the world around us and bring it into the 3D. Each model comes in a variety of different resolutions for easy management and use throughout many programs. Due to the nature of photoscanning, the models are not perfect, but our intention is to provide a large range of items in high detail captured from the real world for use in your creations whether it be architectural visualisation, game development or more.Please note that there are generally five resolutions (decimation ratios) for each model, where 'Blender' [.blend] and WaveFront [.obj] are the native formats. Other file types available include -- BLENDER 2.78- OBJ- DAE- FBX- 3DS MAX [2017 + 2014]- STL- PLY- SKETCHUP V8All ZIP files contain:Highest - 1,000,000 facesHigh - 500,000 facesMedium - 100,000 facesLow - 50,000 facesLowest - 10,000 facesNOTESFor 3DSMAX, the models contained within the files (2014 & 2017) need their textures re-linked to the texture images contained within the MAX.ZIP/OBJ folder. Also please note that the title of the item online may differ from the file names when downloading.Blender Cycles [v2.78] file only contains the 1000K resolution mesh, please download the Blender [v2.71] version for all mesh LODs.The rendered imagery for this model has been captured from the 'Highest' model within Blender Cycles. Depending on the model complexity the above resolutions may differ, i.e. there may be need for a +1000K item which will be stated in this description when required.The goal of providing these models and assets for you is use within your own game development, level design, film animatics, storyboarding, architectural design, historic study, educational use and much more. Spacescan aims to create and provide a vast library of assets that cannot be easily made digitally or 'within the box' so to speak.Best Regards,Jamie.",SPACESCAN,Free, - All Extended Uses,2019-03-23,"['Collada ', 'FBX ', 'OBJ ', 'Other PLY', 'STL ', 'Other ']","['3D Model', 'architecture', 'building components', 'wall', 'stone wall']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/wall', 'https://www.turbosquid.com/3d-model/stone-wall']","['stone', 'sculpture', 'wall', 'freeze', 'statue', 'ancient', 'carving', 'crypt', 'dungeon', 'temple', 'church', 'indianna', 'jones', 'tomb', 'raider', 'game', 'development']","['https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/freeze', 'https://www.turbosquid.com/Search/3D-Models/statue', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/carving', 'https://www.turbosquid.com/Search/3D-Models/crypt', 'https://www.turbosquid.com/Search/3D-Models/dungeon', 'https://www.turbosquid.com/Search/3D-Models/temple', 'https://www.turbosquid.com/Search/3D-Models/church', 'https://www.turbosquid.com/Search/3D-Models/indianna', 'https://www.turbosquid.com/Search/3D-Models/jones', 'https://www.turbosquid.com/Search/3D-Models/tomb', 'https://www.turbosquid.com/Search/3D-Models/raider', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/development']" +Action and faction bones for dune dice game - board game - free ,"Dices (bones) action and faction for board game - Dune Dice gameCan be 3d printed in 1.5x1.5x1.5 cm or 2x2x2 cm as maximum.For playing you need 4 faction and 3 action bones. For all other bones you can use regular 6 points bones.Made in Blender 3D, rendered in Cycles. Printed on Creality 3D - size = 2x2x2 cm, layer height = 0.15, filling = 35%",finn163,Free, - All Extended Uses,2019-03-22,['STL '],"['3D Model', 'toys and games', 'games', 'dice']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dice']","['dune', 'dice', 'game', 'board', 'free', 'blender', 'cycles', 'devil', 'bones', 'dices', 'stones', 'printed', 'for', '3d', 'print']","['https://www.turbosquid.com/Search/3D-Models/dune', 'https://www.turbosquid.com/Search/3D-Models/dice', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/board', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/cycles', 'https://www.turbosquid.com/Search/3D-Models/devil', 'https://www.turbosquid.com/Search/3D-Models/bones', 'https://www.turbosquid.com/Search/3D-Models/dices', 'https://www.turbosquid.com/Search/3D-Models/stones', 'https://www.turbosquid.com/Search/3D-Models/printed', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/print']" +Realistic wolf maya rig,Grey Wolf Maya rig. Originally from CoD. Modified by Ilyass Fouad.   Rigged by Truong Cg Artist.Available for non-commercial use only.Software: Maya 2014 (or higher). Rigged using Advanced Skeleton.Happy animating!Truong Cg Artist (look up my name if you have any trouble)ps: please click on my username for other products of mine.,cvbtruong,Free, - Editorial Uses Only,2019-03-22,['Other '],"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'canine', 'wolf']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/canine-animal', 'https://www.turbosquid.com/3d-model/wolf']","['realistic', 'grey', 'gray', 'white', 'snow', 'wolf', 'big', 'dog', 'husky']","['https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/grey', 'https://www.turbosquid.com/Search/3D-Models/gray', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/snow', 'https://www.turbosquid.com/Search/3D-Models/wolf', 'https://www.turbosquid.com/Search/3D-Models/big', 'https://www.turbosquid.com/Search/3D-Models/dog', 'https://www.turbosquid.com/Search/3D-Models/husky']" +Stool chair ,Round stool chair for yours free. This free model does not come with UV and texture. Polycount 298 polygons.,theflyingtim,Free, - All Extended Uses,2019-03-22,['FBX '],"['3D Model', 'furnishings', 'seating', 'chair', 'stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool']","['furniture', 'chair', 'stool', 'stoolchair', 'interior', 'livingroom', 'furnish', 'round', 'free', 'lowpoly', 'gameready', 'game']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/stoolchair', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/livingroom', 'https://www.turbosquid.com/Search/3D-Models/furnish', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/game']" +Koffing pokemon,"Model dimensions:- ball surface diameter 70 mm- outer diameter - 80 mmDesigned in Solid Works 2012, rendered in Keyshot 5.0.99.",Dmytro Kotliar,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-22,"['Other ', 'OBJ ', 'STL ']","['3D Model', 'characters', 'movie and television character']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/movie-and-television-character']","['pokemon', 'koffing', 'toy', 'game', 'print', 'printable']","['https://www.turbosquid.com/Search/3D-Models/pokemon', 'https://www.turbosquid.com/Search/3D-Models/koffing', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/printable']" +Round rosette 022 ,3D model of round rosette--------------------------------------------------------------------------Size of model in mm: 100x100x20In case of need please use subdivision modificators for more smooth resultsRegular model ready for visualization- Count of polys of regular model: 43 232High poly model ready for CNC production- Count of polys of HQ model: 1 383 484Please rate and write the review of our model--------------------------------------------------------------------------Intagli3D,Intagli 3D,Free, - All Extended Uses,2019-03-22,"['FBX ', 'OBJ ', 'STL ']","['3D Model', 'interior design', 'finishes', 'molding', 'rosette']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/finishes', 'https://www.turbosquid.com/3d-model/molding', 'https://www.turbosquid.com/3d-model/rosette']","['rosette', 'molding', 'finishes', 'decor', 'carved', 'classic', 'ornament', 'flower', 'medallion', 'stl', 'obj', 'CNC', 'round', 'Max', 'wood', '3Dmodel', 'intagli3D', 'ceiling', 'stucco', 'acant']","['https://www.turbosquid.com/Search/3D-Models/rosette', 'https://www.turbosquid.com/Search/3D-Models/molding', 'https://www.turbosquid.com/Search/3D-Models/finishes', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/carved', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/ornament', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/medallion', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/3dmodel', 'https://www.turbosquid.com/Search/3D-Models/intagli3d', 'https://www.turbosquid.com/Search/3D-Models/ceiling', 'https://www.turbosquid.com/Search/3D-Models/stucco', 'https://www.turbosquid.com/Search/3D-Models/acant']" +Dota 2 logo for print,"This 3D Model is ready to be printed on a 3D Printer.Very fine surface, can be directly 3D printing and manufacturing files.Originally built in SolidWorks to achieve highest accuracy.********************************* Hope you like it! Also check out my other models, just click on my user name to see complete gallery.",3d_new,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-21,"['IGES 5', '3\n', 'STL 80', 'FBX 2009']","['3D Model', 'symbols', 'logo']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes', 'https://www.turbosquid.com/3d-model/logo']","['3D', 'Model', 'dota', '2', 'game', 'logo', 'sports', 'steam', 'valve', 'warcraft', 'dota2', 'print', 'printable', 'cosplay', 'replica']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/dota', 'https://www.turbosquid.com/Search/3D-Models/2', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/logo', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/steam', 'https://www.turbosquid.com/Search/3D-Models/valve', 'https://www.turbosquid.com/Search/3D-Models/warcraft', 'https://www.turbosquid.com/Search/3D-Models/dota2', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/cosplay', 'https://www.turbosquid.com/Search/3D-Models/replica']" +Free cabinet ,A cabinet model for yours free.This free model does not come with UV and texture.Click on 'theflyingtim' to see more models.,theflyingtim,Free, - All Extended Uses,2019-03-21,['FBX '],"['3D Model', 'furnishings', 'dresser']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/dresser']","['cabinet', 'storage', 'furniture', 'free', 'shelf', 'interior', 'bedroom', 'game', 'lowpoly', 'fbx', 'design', 'poly', 'vizarch', 'shelving']","['https://www.turbosquid.com/Search/3D-Models/cabinet', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/shelf', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/vizarch', 'https://www.turbosquid.com/Search/3D-Models/shelving']" +Candle chandelier ,"Medieval themed candle chandelierThis design is not animated. 131393 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL",DTG Amusements,Free, - All Extended Uses,2019-03-21,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013', 'STL 2013', 'Other PDF']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp', 'chandelier', 'candle chandelier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp', 'https://www.turbosquid.com/3d-model/chandelier', 'https://www.turbosquid.com/3d-model/candle-chandelier']","['Lamp', 'Chandelier', 'Medieval', '1001', 'nights', 'Arabic', 'Candle', 'Ceiling', 'Moroccan', 'Islamic', 'Arab']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/chandelier', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/1001', 'https://www.turbosquid.com/Search/3D-Models/nights', 'https://www.turbosquid.com/Search/3D-Models/arabic', 'https://www.turbosquid.com/Search/3D-Models/candle', 'https://www.turbosquid.com/Search/3D-Models/ceiling', 'https://www.turbosquid.com/Search/3D-Models/moroccan', 'https://www.turbosquid.com/Search/3D-Models/islamic', 'https://www.turbosquid.com/Search/3D-Models/arab']" +Male body anatomy,"Male anatomy body modell rendered with fast, effective GPU render Redshift- Zbrush sculpt- Full scene with cameras, lights, and render settings- Real world scale- Properly organized scene- Ztool- OBJ- FBX- No retopoed- No post work in these rendersHope you like it!",sculpt_m,Free, - All Extended Uses,2019-03-20,"['FBX ', 'OBJ ']","['3D Model', 'science', 'anatomy', 'complete human anatomy', 'complete male anatomy']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/complete-human-anatomy', 'https://www.turbosquid.com/3d-model/complete-male-anatomy']","['human', 'male', 'body', 'anatomy', 'muscle', 'pose', 'turntable', 'man', 'bone', 'clay', 'zbrush', 'sculpt', 'redshift', 'ztool', 'hand', 'leg', 'torso', 'head', 'full']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/muscle', 'https://www.turbosquid.com/Search/3D-Models/pose', 'https://www.turbosquid.com/Search/3D-Models/turntable', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/bone', 'https://www.turbosquid.com/Search/3D-Models/clay', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/sculpt', 'https://www.turbosquid.com/Search/3D-Models/redshift', 'https://www.turbosquid.com/Search/3D-Models/ztool', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/leg', 'https://www.turbosquid.com/Search/3D-Models/torso', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/full']" +Dumbbells,Dumbbells modeling by maya 2013,waleedsalah,Free, - All Extended Uses,2019-03-20,Unknown,"['3D Model', 'sports', 'exercise equipment', 'weight training', 'weights', 'dumbbell']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/weight-training', 'https://www.turbosquid.com/3d-model/weights', 'https://www.turbosquid.com/3d-model/dumbbell']","['Dumbbells', 'Sport', 'Body', 'bodybuilding', 'Weight']","['https://www.turbosquid.com/Search/3D-Models/dumbbells', 'https://www.turbosquid.com/Search/3D-Models/sport', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/bodybuilding', 'https://www.turbosquid.com/Search/3D-Models/weight']" +Low poly goat ,Low Poly Goat made in blender 2.79b,LuanEspedito,Free, - All Extended Uses,2019-03-20,Unknown,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'farm animals', 'goat']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/farm-animals', 'https://www.turbosquid.com/3d-model/goat']","['low', 'poly', 'goat']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/goat']" +Mtr like pistol for unity ,this is animated pistol for unity.animations--------------------------------------------------------------------shootreload startreload endmaterials-----------------------------------------------------------------------blackchrome,GAMEASS,Free, - All Extended Uses,2019-03-20,Unknown,"['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun']","['unity', 'game', 'ready', 'pistol', 'weapon', 'mateba', 'MTR-8', 'gun']","['https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/mateba', 'https://www.turbosquid.com/Search/3D-Models/mtr-8', 'https://www.turbosquid.com/Search/3D-Models/gun']" +3d real plane fighter jet ,free 3d fighter aircraft model by Zahid wadfiwale it support all formats and works with gameguru unity unreal gammaker rpg and all other engine,Zahid MZIWA,Free, - All Extended Uses,2018-12-26,"['FBX 3', '4\n']","['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter jet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-jet']","['3ds', 'max', 'plane', '3d', 'fighter', 'jet', 'flying', 'animation', 'fbx', 'x', 'DirectX', 'a', 'pilot', 'zahid', 'mziwa']","['https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/plane', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/fighter', 'https://www.turbosquid.com/Search/3D-Models/jet', 'https://www.turbosquid.com/Search/3D-Models/flying', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/x', 'https://www.turbosquid.com/Search/3D-Models/directx', 'https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/pilot', 'https://www.turbosquid.com/Search/3D-Models/zahid', 'https://www.turbosquid.com/Search/3D-Models/mziwa']" +Boy for unity,"humanoid rigged boy for unity game enginethis package also contains bunch of apparels however,they are useless as his equipment. (my bad)'cloth simulation' component in unity might be help... i think",GAMEASS,Free, - All Extended Uses,2018-12-18,Unknown,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'humanoid']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/humanoid']","['unity', 'humanoid', 'rigged', 'child', 't', 'shirts', 'pants', 'shoes', 'kids', 'game']","['https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/humanoid', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/child', 'https://www.turbosquid.com/Search/3D-Models/t', 'https://www.turbosquid.com/Search/3D-Models/shirts', 'https://www.turbosquid.com/Search/3D-Models/pants', 'https://www.turbosquid.com/Search/3D-Models/shoes', 'https://www.turbosquid.com/Search/3D-Models/kids', 'https://www.turbosquid.com/Search/3D-Models/game']" +Lowpoly sedan ,A lowpoly sedan. body and wheel separated.,ptrusted,Free, - All Extended Uses,2019-03-19,['OBJ '],"['3D Model', 'vehicles', 'car', 'fictional automobile', 'cartoon car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/fictional-automobile', 'https://www.turbosquid.com/3d-model/cartoon-car']",['Lowpoly'],['https://www.turbosquid.com/Search/3D-Models/lowpoly'] +Cheerleader megaphone ,"This is a high quality, photo real model creat in 3ds max 2011 render vary 2.4 *********************************Available in the following file formats: - 3ds Max 2011 with V-Ray 2.4 - FBX 2011 - OBJ 2011 - 3ds 2011 -DXF 2011*********************************- Completely ready for use in visualization - Just put model in your scene and render -Ideal for photorealistic visualizations - All Materials are logically named - Colors easily modified - Highly detailed model-HDRI is not attched*********************************Hope you like it!thanks!",tomb3d,Free, - All Extended Uses,2019-03-19,"['3D Studio', '2011\n', 'DXF 2011', 'FBX 2011', 'OBJ 2011']","['3D Model', 'technology', 'audio devices', 'bullhorn', 'megaphone (acoustic)']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/audio-devices', 'https://www.turbosquid.com/3d-model/bullhorn', 'https://www.turbosquid.com/3d-model/megaphone-acoustic']","['Megaphone', 'Cheerleader', 'Bullhorn', 'tool', 'voice', 'event', 'crowd', 'director', 'chant', 'vintage', 'cheer', 'old', 'horn', 'retro', 'sports', 'cone', 'message', 'amplify', 'loud', 'antique', 'vray']","['https://www.turbosquid.com/Search/3D-Models/megaphone', 'https://www.turbosquid.com/Search/3D-Models/cheerleader', 'https://www.turbosquid.com/Search/3D-Models/bullhorn', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/voice', 'https://www.turbosquid.com/Search/3D-Models/event', 'https://www.turbosquid.com/Search/3D-Models/crowd', 'https://www.turbosquid.com/Search/3D-Models/director', 'https://www.turbosquid.com/Search/3D-Models/chant', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/cheer', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/horn', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/cone', 'https://www.turbosquid.com/Search/3D-Models/message', 'https://www.turbosquid.com/Search/3D-Models/amplify', 'https://www.turbosquid.com/Search/3D-Models/loud', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/vray']" +Wonderland mirror ,"Wonderland Mirror by Dante Good and Bads | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Dante Good and Bads, GermanyDesigner: Christophe De La FontaineDesign Connected ID: 9048BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'housewares', 'general decor', 'mirror', 'wall mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/mirror', 'https://www.turbosquid.com/3d-model/wall-mirror']","['Mirrors', 'Dante-Good-and-Bads', 'Christophe-De-La-Fontaine', 'Glass', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bathroom']","['https://www.turbosquid.com/Search/3D-Models/mirrors', 'https://www.turbosquid.com/Search/3D-Models/dante-good-and-bads', 'https://www.turbosquid.com/Search/3D-Models/christophe-de-la-fontaine', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bathroom']" +Dauphine floor lamp ,"Dauphine Floor Lamp by CB2 | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CB2, USADesigner: N/ADesign Connected ID: 9047BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'CB2', 'Fabric', 'Brass', 'Natural-stone', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/cb2', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Emerald mirror,"Emerald Mirror by Baker | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Baker, USADesigner: Thomas PheasantDesign Connected ID: 9036BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'housewares', 'general decor', 'mirror', 'wall mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/mirror', 'https://www.turbosquid.com/3d-model/wall-mirror']","['Mirrors', 'Baker', 'Thomas-Pheasant', 'Glass', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/mirrors', 'https://www.turbosquid.com/Search/3D-Models/baker', 'https://www.turbosquid.com/Search/3D-Models/thomas-pheasant', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Beaubien double shade wall lamp ,"Beaubien Double Shade Wall Lamp by Lambert et Fils | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Lambert et Fils, CanadaDesigner: N/ADesign Connected ID: 9035BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Lambert-et-Fils', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/lambert-et-fils', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Magnifier lamp ,"Magnifier Lamp by Formafantasma | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4- Autodesk 3ds ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Formafantasma, NetherlandsDesigner: N/ADesign Connected ID: 9032BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', '3D Studio', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Formafantasma', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/formafantasma', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Projekt pendant ,"Projekt Pendant by Tech Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Tech Lighting, USADesigner: N/ADesign Connected ID: 9021BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Tech-Lighting', 'Colored-glass', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/tech-lighting', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Cercle et trat suspension lamp ,"Cercle et Trat Suspension Lamp by CVL | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX ADDITIONAL FILE FORMATS UPON REQUEST- Cinema4D R16 or above- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CVL, FranceDesigner: N/ADesign Connected ID: 8969BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'CVL', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/cvl', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Argento l pendant lamp ,"Argento L Pendant Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8968BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Eichholtz', 'Glass', 'Brass', 'Painted-metal', 'Contemporary-design', 'Modern-luxury', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/modern-luxury', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Bower floor lamp ,"Bower Floor Lamp by West Elm | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: West Elm, Designer: Bower Studio Design Connected ID: 8963BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'West-Elm', 'Bower-Studio-', 'Brass', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/west-elm', 'https://www.turbosquid.com/Search/3D-Models/bower-studio-', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Strike pendant lamp,"Strike Pendant Lamp by Current Collection | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Current Collection, USADesigner: Nash MartinezDesign Connected ID: 8962BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Current-Collection', 'Nash-Martinez', 'Brass', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/current-collection', 'https://www.turbosquid.com/Search/3D-Models/nash-martinez', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Mobil wall lamp ,"Mobil Wall Lamp by Pholc | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Pholc, SwedenDesigner: Monika MulderDesign Connected ID: 8957BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Pholc', 'Monika-Mulder', 'Glass', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/pholc', 'https://www.turbosquid.com/Search/3D-Models/monika-mulder', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Calee pendants ,"Calee Pendants by CVL | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CVL, FranceDesigner: POOL Design Connected ID: 8956BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'CVL', 'POOL-', 'Brass', 'Chrome', 'Copper', 'Gold', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/cvl', 'https://www.turbosquid.com/Search/3D-Models/pool-', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Parma 160 wall light ,"Parma 160 Wall Light by Astro Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Astro Lighting, United KingdomDesigner: N/ADesign Connected ID: 8954BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Astro-Lighting', 'Plastic', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/astro-lighting', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Tr bulb suspension lamp ,"TR Bulb Suspension Lamp by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Tim RundleDesign Connected ID: 8953BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Menu', 'Tim-Rundle', 'Glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/menu', 'https://www.turbosquid.com/Search/3D-Models/tim-rundle', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Ring wall lamp,"Ring Wall Lamp by CTO Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CTO Lighting, United KingdomDesigner: N/ADesign Connected ID: 8952BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'CTO-Lighting', 'Brass', 'Chrome', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/cto-lighting', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Le sfere 2 wall lamp ,"Le Sfere 2 Wall Lamp by Astep | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Astep, DenmarkDesigner: Gino SarfattiDesign Connected ID: 8951BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Astep', 'Gino-Sarfatti', 'Colored-glass', 'Brass', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/astep', 'https://www.turbosquid.com/Search/3D-Models/gino-sarfatti', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Heron floor light ,"Heron Floor Light by CTO Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CTO Lighting, United KingdomDesigner: Michaël VerheydenDesign Connected ID: 8947BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Reading-lights', 'CTO-Lighting', 'Michaël-Verheyden', 'Brass', 'Natural-stone', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/reading-lights', 'https://www.turbosquid.com/Search/3D-Models/cto-lighting', 'https://www.turbosquid.com/Search/3D-Models/micha%c3%abl-verheyden', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Yasmin table lamp ,"Yasmin Table Lamp by Arteriors | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Arteriors, USADesigner: N/ADesign Connected ID: 8940BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Arteriors', 'Colored-glass', 'Brass', 'Natural-stone', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/arteriors', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Crescent table lamp ,"Crescent Table Lamp by Lee Broom | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Design Connected native - Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4- Collada ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave PRODUCT DESCRIPTIONBrand: Lee Broom, United KingdomDesigner: Lee BroomDesign Connected ID: 8939BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Lee-Broom', 'Glass', 'Brass', 'Gold', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/lee-broom', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Time hourglasses,"Time Hourglasses by Hay | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Hay, DenmarkDesigner: N/ADesign Connected ID: 8934BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'housewares', 'general decor', 'hourglass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/hourglass']","['Clocks', 'Decorative-objects', 'Hay', 'Colored-glass', 'Glass', 'Contemporary-design', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/clocks', 'https://www.turbosquid.com/Search/3D-Models/decorative-objects', 'https://www.turbosquid.com/Search/3D-Models/hay', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Setai table lamp ,"Setai Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8931BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Eichholtz', 'Colored-glass', 'Fabric', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Opal lampshades,"Opal Lampshades by Ferm Living | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ferm Living, Designer: N/ADesign Connected ID: 8930BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Ferm-Living', 'Colored-glass', 'Painted-metal', 'Scandinavian-design', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Kitchen', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/ferm-living', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Kizu table lamp small,"Kizu Table Lamp Small by New Works | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: New Works, DenmarkDesigner: Lars TornøeDesign Connected ID: 8929BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'New-Works', 'Lars-Tornøe', 'Colored-glass', 'Ceramic-and-porcelain', 'Scandinavian-design', 'Contemporary-design', 'Minimalist-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/new-works', 'https://www.turbosquid.com/Search/3D-Models/lars-torn%c3%b8e', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/ceramic-and-porcelain', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Masina table lamp ,"Masina Table Lamp by Bert Frank | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Bert Frank, United KingdomDesigner: N/ADesign Connected ID: 8927BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Bert-Frank', 'Colored-glass', 'Brass', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/bert-frank', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Academia table lamp ,"Academia Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8926BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Eichholtz', 'Fabric', 'Crystal', 'Contemporary-design', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/crystal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +South beach table lamp ,"South Beach Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8925BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Eichholtz', 'Painted-metal', 'Contemporary-design', 'Sculptural-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/sculptural-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Stasis wall light ,"Stasis Wall Light by Bert Frank | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Bert Frank, United KingdomDesigner: N/ADesign Connected ID: 8922BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Bert-Frank', 'Brass', 'Copper', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/bert-frank', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Marco table lamp ,"Marco Table Lamp by Mitchell Gold + Bob Williams | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Mitchell Gold + Bob Williams, USADesigner: N/ADesign Connected ID: 8919BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Mitchell-Gold-+-Bob-Williams', 'Plastic', 'Brass', 'Steel', 'Natural-stone', 'Mid-Century-Modern', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/mitchell-gold-%2b-bob-williams', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Joan small mirror ,"Joan Small Mirror by Alberta | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Alberta, ItalyDesigner: Castello LagravineseDesign Connected ID: 8918BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'housewares', 'general decor', 'mirror', 'wall mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/mirror', 'https://www.turbosquid.com/3d-model/wall-mirror']","['Mirrors', 'Alberta', 'Castello-Lagravinese', 'Glass', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/mirrors', 'https://www.turbosquid.com/Search/3D-Models/alberta', 'https://www.turbosquid.com/Search/3D-Models/castello-lagravinese', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Lanterne ii table,"Lanterne II Table by N/A | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: N/A, Designer: Christian LiaigreDesign Connected ID: 8916BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Floor-lights', 'Table-lights', 'Christian-Liaigre', 'Paper', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/christian-liaigre', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Eclipse desk lamp,"Eclipse Desk Lamp by Dutchbone | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Dutchbone, NetherlandsDesigner: N/ADesign Connected ID: 8911BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'desk lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/desk-lamp']","['Table-lights', 'Dutchbone', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/dutchbone', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Hollie table lamp,"Hollie Table Lamp by Care of Bankeryd | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Care of Bankeryd, SwedenDesigner: Lyktan BankerydDesign Connected ID: 8909BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Care-of-Bankeryd', 'Lyktan-Bankeryd', 'Plastic', 'Colored-glass', 'Glass', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/care-of-bankeryd', 'https://www.turbosquid.com/Search/3D-Models/lyktan-bankeryd', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Diana table lamp ,"Diana Table Lamp by Delightfull | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Delightfull, PortugalDesigner: N/ADesign Connected ID: 8908BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Delightfull', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/delightfull', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Kaschkasch vase ,"Kaschkasch Vase by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: KaschkaschDesign Connected ID: 8907BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'housewares', 'general decor', 'vase', 'modern vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase', 'https://www.turbosquid.com/3d-model/modern-vase']","['Vases', 'Ligne-Roset', '-Kaschkasch', 'Brass', 'Steel', 'Copper', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/vases', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/-kaschkasch', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Jolly roger ,"Jolly Roger by Gufram | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gufram, ItalyDesigner: Fabio NovembreDesign Connected ID: 8903BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['Armchairs', 'Gufram', 'Fabio-Novembre', 'Plastic', 'Contemporary-design', 'Living', 'Outdoor']","['https://www.turbosquid.com/Search/3D-Models/armchairs', 'https://www.turbosquid.com/Search/3D-Models/gufram', 'https://www.turbosquid.com/Search/3D-Models/fabio-novembre', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/outdoor']" +Spilla lamp ,"Spilla Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Pascal MourgueDesign Connected ID: 8902BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Reading-lights', 'Ligne-Roset', 'Pascal-Mourgue', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/reading-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/pascal-mourgue', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Mayfair coffee table ,"Mayfair Coffee Table by Molteni & C | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Molteni & C, ItalyDesigner: Rodolfo DordoniDesign Connected ID: 8892BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['Coffee-tables', 'Molteni-and-C', 'Rodolfo-Dordoni', 'Glass', 'Painted-metal', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/molteni-and-c', 'https://www.turbosquid.com/Search/3D-Models/rodolfo-dordoni', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Bridger oval side table,"Bridger Oval Side Table by Caste | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Caste, USADesigner: Ty BestDesign Connected ID: 8891BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['Occasional-tables', 'Side-tables', 'Caste', 'Ty-Best', 'Solid-wood', 'Natural-stone', 'Painted-metal', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/side-tables', 'https://www.turbosquid.com/Search/3D-Models/caste', 'https://www.turbosquid.com/Search/3D-Models/ty-best', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Car light vase ,"Car Light Vase by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Nathalie DewezDesign Connected ID: 8886BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'housewares', 'general decor', 'vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase']","['Vases', 'Ligne-Roset', 'Nathalie-Dewez', 'Colored-glass', 'Contemporary-design', 'Dining', 'Kitchen', 'Living']","['https://www.turbosquid.com/Search/3D-Models/vases', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/nathalie-dewez', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living']" +Backyard office ,This is a backyard office that could be a great piece of your exterior.Model: 3Ds MAXRender: V-Ray,Alona Smulska,Free, - All Extended Uses,2019-03-18,"['OBJ 2018', 'FBX 2018']","['3D Model', 'architecture', 'building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building']","['backyard', 'exterior', 'office', 'architecure', 'bakyardoffice']","['https://www.turbosquid.com/Search/3D-Models/backyard', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/architecure', 'https://www.turbosquid.com/Search/3D-Models/bakyardoffice']" +Balancer floor lamp,"Balancer Floor Lamp by Northern Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Northern Lighting, NorwayDesigner: Yuue Design Connected ID: 8885BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Northern-Lighting', 'Yuue-', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/northern-lighting', 'https://www.turbosquid.com/Search/3D-Models/yuue-', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Cloche table lamp ,"Cloche Table Lamp by Hay | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Hay, DenmarkDesigner: Lars Beller FjetlandDesign Connected ID: 8884BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Hay', 'Lars-Beller-Fjetland', 'Brass', 'Copper', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/hay', 'https://www.turbosquid.com/Search/3D-Models/lars-beller-fjetland', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Nelson night clock ,"Nelson Night Clock by Vitra | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Vitra, SwitzerlandDesigner: George NelsonDesign Connected ID: 8881BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'housewares', 'general decor', 'clock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/clock']","['Clocks', 'Vitra', 'George-Nelson', 'Glass', 'Brass', 'Mid-Century-Modern', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/clocks', 'https://www.turbosquid.com/Search/3D-Models/vitra', 'https://www.turbosquid.com/Search/3D-Models/george-nelson', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Eiffel wall lamp ,"Eiffel Wall Lamp by Frama | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Frama, DenmarkDesigner: Krøyer - Sætter - LassenDesign Connected ID: 8880BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Frama', '-Krøyer---Sætter---Lassen', 'Colored-glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/frama', 'https://www.turbosquid.com/Search/3D-Models/-kr%c3%b8yer---s%c3%a6tter---lassen', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Pull floor lamp,"Pull Floor Lamp by Muuto | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Muuto, DenmarkDesigner: Whatswhat Design Connected ID: 8865BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Muuto', 'Whatswhat-', 'Solid-wood', 'Painted-metal', 'Scandinavian-design', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/muuto', 'https://www.turbosquid.com/Search/3D-Models/whatswhat-', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Jwda table lamp,"JWDA Table Lamp by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Jonas WagellDesign Connected ID: 8862BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Menu', 'Jonas-Wagell', 'Natural-stone', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/menu', 'https://www.turbosquid.com/Search/3D-Models/jonas-wagell', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Small table d.555.1 ,"Small Table D.555.1 by Molteni & C | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Molteni & C, ItalyDesigner: Gio PontiDesign Connected ID: 8859BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['Coffee-tables', 'Molteni-and-C', 'Gio-Ponti', 'Glass', 'Painted-metal', 'Mid-Century-Modern', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/molteni-and-c', 'https://www.turbosquid.com/Search/3D-Models/gio-ponti', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living']" +Fuwl cage table ,"Fuwl Cage Table by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Form Us With Love Design Connected ID: 8851BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['Coffee-tables', 'Menu', 'Form-Us-With-Love-', 'Solid-wood', 'Natural-stone', 'Painted-metal', 'Scandinavian-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/menu', 'https://www.turbosquid.com/Search/3D-Models/form-us-with-love-', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Moon lounge table ,"Moon Lounge Table by Gubi | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gubi, DenmarkDesigner: SPACE CopenhagenDesign Connected ID: 8836BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['Occasional-tables', 'Side-tables', 'Gubi', '-SPACE-Copenhagen', 'Solid-wood', 'Natural-stone', 'Scandinavian-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/side-tables', 'https://www.turbosquid.com/Search/3D-Models/gubi', 'https://www.turbosquid.com/Search/3D-Models/-space-copenhagen', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Eclisse table lamp ,"Eclisse Table Lamp by Artemide | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Artemide, ItalyDesigner: Vico MagistrettiDesign Connected ID: 8834BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Artemide', 'Vico-Magistretti', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/artemide', 'https://www.turbosquid.com/Search/3D-Models/vico-magistretti', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Grace trolley ,"Grace Trolley by Schönbuch | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Schönbuch, GermanyDesigner: Sebastian HerknerDesign Connected ID: 8825BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'kitchen cart']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/kitchen-cart']","['Occasional-tables', 'Trays', 'Schönbuch', 'Sebastian-Herkner', 'Plywood', 'Painted-metal', 'Contemporary-design', 'Dining', 'Kitchen', 'Living']","['https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/trays', 'https://www.turbosquid.com/Search/3D-Models/sch%c3%b6nbuch', 'https://www.turbosquid.com/Search/3D-Models/sebastian-herkner', 'https://www.turbosquid.com/Search/3D-Models/plywood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living']" +Tama console,"Tama Console by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Carlo ColomboDesign Connected ID: 8824BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'table', 'console table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/console-table']","['Console-tables', 'Gallotti-and-Radice', 'Carlo-Colombo', 'Solid-wood', 'Painted-metal', 'Contemporary-design', 'Modern-luxury', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/console-tables', 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice', 'https://www.turbosquid.com/Search/3D-Models/carlo-colombo', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/modern-luxury', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Tama crédence,"Tama Crédence by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Carlo ColomboDesign Connected ID: 8823BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'sideboard']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/sideboard']","['Sideboards', 'Gallotti-and-Radice', 'Carlo-Colombo', 'Solid-wood', 'Painted-metal', 'Contemporary-design', 'Modern-luxury', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/sideboards', 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice', 'https://www.turbosquid.com/Search/3D-Models/carlo-colombo', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/modern-luxury', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Roly-poly chair ,"Roly-Poly Chair by Driade | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Driade, ItalyDesigner: Faye ToogoodDesign Connected ID: 8816BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'furnishings', 'seating', 'chair', 'side chair', 'occasional chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/side-chair', 'https://www.turbosquid.com/3d-model/occasional-chair']","['Chairs', 'Driade', 'Faye-Toogood', 'Plastic', 'Contemporary-design', 'Sculptural-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/chairs', 'https://www.turbosquid.com/Search/3D-Models/driade', 'https://www.turbosquid.com/Search/3D-Models/faye-toogood', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/sculptural-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Calee table lamp ,"Calee Table Lamp by South Hill Home | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: South Hill Home, USADesigner: N/ADesign Connected ID: 8778BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'South-Hill-Home', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/south-hill-home', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Song coffee tables,"Song Coffee Tables by Minotti | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Minotti, ItalyDesigner: Rodolfo DordoniDesign Connected ID: 8776BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['Coffee-tables', 'Minotti', 'Rodolfo-Dordoni', 'Natural-stone', 'Wood-veneer', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/minotti', 'https://www.turbosquid.com/Search/3D-Models/rodolfo-dordoni', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/wood-veneer', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Neil table lamp ,"Neil Table Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Ligne RosetDesign Connected ID: 8772BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Ligne-Roset', '-Ligne-Roset', 'Glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Office', 'Bathroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/-ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bathroom']" +Melusine table lamp ,"Melusine Table Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Peter MalyDesign Connected ID: 8770BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Ligne-Roset', 'Peter-Maly', 'Solid-wood', 'Painted-metal', 'Contemporary-design', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/peter-maly', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Mategot trolley,"Mategot Trolley by Gubi | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gubi, DenmarkDesigner: Mathieu MategotDesign Connected ID: 8766BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'industrial', 'tools', 'cart']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cart-tool']","['Console-tables', 'Occasional-tables', 'Gubi', 'Mathieu-Mategot', 'Painted-metal', 'Scandinavian-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/console-tables', 'https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/gubi', 'https://www.turbosquid.com/Search/3D-Models/mathieu-mategot', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/living']" +Inciucio pendant lamp ,"Inciucio Pendant Lamp by Gibas | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gibas, ItalyDesigner: N/ADesign Connected ID: 8747BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Gibas', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/gibas', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Riki trolley,"Riki Trolley by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Pierangelo GallottiDesign Connected ID: 8746BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'kitchen cart']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/kitchen-cart']","['Trays', 'Gallotti-and-Radice', 'Pierangelo-Gallotti', 'Glass', 'Brass', 'Chrome', 'Mid-Century-Modern', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/trays', 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice', 'https://www.turbosquid.com/Search/3D-Models/pierangelo-gallotti', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']" +Cancan floor light ,"Cancan Floor Light by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Patrick ZulaufDesign Connected ID: 8743BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Ligne-Roset', 'Patrick-Zulauf', 'Colored-glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/patrick-zulauf', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Passe-passe coat rack ,"Passe-Passe Coat Rack by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Philippe NigroDesign Connected ID: 8698BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,"['FBX ', 'Other ']","['3D Model', 'furnishings', 'rack', 'clothes rack', 'coat tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/rack', 'https://www.turbosquid.com/3d-model/clothes-rack', 'https://www.turbosquid.com/3d-model/coat-tree']","['Cloth-stands', 'Ligne-Roset', 'Philippe-Nigro', 'Solid-wood', 'Painted-wood', 'Contemporary-design', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/cloth-stands', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/philippe-nigro', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-wood', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']" +Destructuree pendant lamp ,"Destructuree Pendant Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Kazuhiro YamanakaDesign Connected ID: 8680BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!",Designconnected,Free, - Editorial Uses Only,2019-03-18,['FBX '],"['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Ligne-Roset', 'Kazuhiro-Yamanaka', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Kitchen', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/kazuhiro-yamanaka', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living']" +Sports bottle ,"***********************************************************************This is a metal sport bottle with plastic cap. (cap is unscrewable)Objects: - metal bottle - plastic capMultiple file formats : .fbx .obj .blend .3ds .x3d Native file: .blend***********************************************************************Please, rate the model. It will help a lot!***********************************************************************",bomi1337,Free, - All Extended Uses,2019-03-18,"['FBX ', 'Other ', 'OBJ ', 'STL ']","['3D Model', 'sports', 'exercise equipment', 'sports bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/sports-bottle']","['bottle', 'metal', 'sport', 'sports', 'drink', 'hydro', 'vacuum', 'stainless', 'steel']","['https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/sport', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/hydro', 'https://www.turbosquid.com/Search/3D-Models/vacuum', 'https://www.turbosquid.com/Search/3D-Models/stainless', 'https://www.turbosquid.com/Search/3D-Models/steel']" +Lego_bricks,Lego Bricks Basic,anubhav462,Free, - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-17,['FBX '],"['3D Model', 'toys and games', 'toys', 'building toys', 'lego', 'lego brick']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/toys', 'https://www.turbosquid.com/3d-model/building-toys', 'https://www.turbosquid.com/3d-model/lego-toy', 'https://www.turbosquid.com/3d-model/lego-brick']","['Lego', 'Bricks']","['https://www.turbosquid.com/Search/3D-Models/lego', 'https://www.turbosquid.com/Search/3D-Models/bricks']" +Kids chair ,cinema 4d model of simple kids table and chair set,rayson278,Free, - All Extended Uses,2019-03-17,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', ""children's chair"", 'high chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/childrens-chair', 'https://www.turbosquid.com/3d-model/high-chair']","['table', 'and', 'chair']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/chair']" +Antique oil lamp,"A collection of antique oil lampsThis design is not animated. 111056 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL",DTG Amusements,Free, - All Extended Uses,2019-03-16,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013', 'STL 2013', 'Other PDF']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/oil-lamp']","['Lamp', 'oil', 'lamp']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/lamp']" +Diwali oil lamp ,"Diwali Oil LampThis design is not animated. 8005 quadrilateral polygons7187 triangular polygons23197 total triangular polygons after forced triangulationPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL, .STEP; .IGES",DTG Amusements,Free, - All Extended Uses,2019-03-16,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'IGES 2013', 'OBJ 2013', 'Other 2013', 'STL 2013', 'Other PDF']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/oil-lamp']","['Lamp', 'Diwali', 'Oil', 'Lamp']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/diwali', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/lamp']" +Antique oil lamp,"Antique Oil LampThis design is not animated. 47716 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL",DTG Amusements,Free, - All Extended Uses,2019-03-16,"['3D Studio', '2013\n', 'AutoCAD drawing', '2013\n', 'DXF 2013', 'FBX 2013', 'OBJ 2013', 'STL 2013', 'Other PDF']","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/oil-lamp']","['Lamp', 'Oil', 'Lamp']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/lamp']" +Casual couple lowpoly rigged (free sample) ,"LowPoly Style Couple, casual man and woman. Created with 3ds max 2015, easy to export to any software that support FBX.ATTENTION: This FREE SAMPLE is part of a 20 characters bundle, see product ID: 1379814 Suitable for Low Poly concept designs, presentations, advertising animations, explaining videos, games and architectural visualizations.|| CONCEPT & DESIGN ||Casual humans male and blond female with Low Poly Art style, with relatively attractive body shape and neutral expression face. They are wearing a casual attire, with fresh colors. These cartoons are intended to represent common people.This character is an original creation from the author based on its own designs, knowledge and research. Any similarity with existing characters, or real persons, living or dead, is purely coincidental.|| SPECS ||Each model have around 850 polygons average. This model is not intended for mesh subdivision from its original concept but you can experiment for achieving new effects.Units system is: 1 unit = 1 cm.Characters are around 165cm to 185cm tall.The material is standard with a diffuse color. Suitable for lit or unlit rendering.Each file contains a single character with its skeleton without any lights or cameras. The intention is to be ready and clean for import elsewhere. || TEXTURES ||One unique texture small PNG of 256x256 pixels. Each polygon is mapped to a single texel color. Very easy to edit with pX Poly Paint scripted tool also included. || SETUP ||Each model is a single Editable Poly mesh rigged with Skin modifier and Biped system. When exporting as FBX use 'toExport' named selection set.Tested for Unity 5 and Unity 2018 humanoid rig compatibility. Poses in renders, and rendering scenes not included.|| CUSTOMIZATION ||Made to be customized. Each character preserve the Symmetry modifier and the Skin was applied without manual vertex edit, only envelop adjustments. So you can any time go down the stack and edit the mesh without hassle. Download and Enjoy!Rating and feedback is very appreciated! Any questions please contact via support.",Denys Almaral,Free, - All Extended Uses,2019-03-16,['FBX 2014'],"['3D Model', 'characters', 'people', 'man', 'cartoon man']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/cartoon-man']","['people', 'rigged', 'character', 'lowpoly', 'style', 'woman', 'man', 'toon', 'human', 'casual', 'body', 'girl', 'low', 'poly', 'unity', 'realtime', 'cartoon', 'blond', 'blonde', 'sexy', 'cute', 'free']","['https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/style', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/casual', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/girl', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/realtime', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/blond', 'https://www.turbosquid.com/Search/3D-Models/blonde', 'https://www.turbosquid.com/Search/3D-Models/sexy', 'https://www.turbosquid.com/Search/3D-Models/cute', 'https://www.turbosquid.com/Search/3D-Models/free']" +Simple pouf,Simple PoufDimensions: L 450 x W 450 x H 350 mmColors: Yellow / Red / Blue / GreenVersion: 3ds max 2014 / V-ray 3.4 + FBXPolys: 55.000Verts: 55.000I hope you like it. Thanks.,Desert Night,Free, - All Extended Uses,2019-03-16,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', 'foot rest', 'ottoman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/foot-rest', 'https://www.turbosquid.com/3d-model/ottoman']","['simple', 'pouf', 'chair', 'fabric', 'modern', '3d', 'model']","['https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/pouf', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model']" +Classic water fountain,"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support.",Marc Mons,Free, - All Extended Uses,2019-03-15,"['OBJ 2016', 'FBX 2016']","['3D Model', 'architecture', 'site components', 'landscape architecture', 'fountain']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/fountain']","['water', 'fountain', 'architecture', 'exterior', 'stream', 'structure', 'outdoor', 'city', 'town', 'garden', 'pool', 'building', 'waterfall', 'bush', 'flower', 'splash', 'park', 'free', 'freefountain', 'fbx']","['https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/fountain', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/stream', 'https://www.turbosquid.com/Search/3D-Models/structure', 'https://www.turbosquid.com/Search/3D-Models/outdoor', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/pool', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/waterfall', 'https://www.turbosquid.com/Search/3D-Models/bush', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/splash', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/freefountain', 'https://www.turbosquid.com/Search/3D-Models/fbx']" +Kitchen chef's knife ,"It's a simple chef's knife with a wooden handle and brass pins, created originally in solidworks the exported and materialized in 3Ds MAX.- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**> **Please Rate and Comment What You Think.**",sepandj,Free, - All Extended Uses,2019-03-15,"['OBJ ', 'Other ', 'FBX ', 'OpenFlight ', 'IGES ', '3D Studio', 'Collada ', 'AutoCAD drawing', 'DXF ', 'Targa ']","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cooking utensil', 'kitchen knife', ""chef's knife""]","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cooking-utensil', 'https://www.turbosquid.com/3d-model/kitchen-knife', 'https://www.turbosquid.com/3d-model/chefs-knife']","['knife', 'kitchen', 'sharp', 'still', 'wood', 'brass', 'blade', 'weapon', 'chef', 'cook', 'cooking', 'cut', 'cutting', 'regular', 'simple', 'realistic', 'melee', 'fight', 'chop', 'chopping', 'house', 'kitchenware']","['https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/sharp', 'https://www.turbosquid.com/Search/3D-Models/still', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/chef', 'https://www.turbosquid.com/Search/3D-Models/cook', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/cut', 'https://www.turbosquid.com/Search/3D-Models/cutting', 'https://www.turbosquid.com/Search/3D-Models/regular', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/fight', 'https://www.turbosquid.com/Search/3D-Models/chop', 'https://www.turbosquid.com/Search/3D-Models/chopping', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/kitchenware']" +Dirty steam punk knight for unity,"humanoid rigged character for unity.this package contains 4 types of materialsblue, green, crusader, redeach materials have 3 texture maps(defuse, metalness smoothness, normal)all 4 types of knights are already prefabed anywayenjoy!",GAMEASS,Free, - All Extended Uses,2019-03-15,Unknown,"['3D Model', 'characters', 'people', 'military people', 'knight']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/military-people', 'https://www.turbosquid.com/3d-model/knight-warrior']","['knight', 'unity', 'humanoid', 'rigged', 'character', 'soldier']","['https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/humanoid', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/soldier']" +Shotgun (free) ,"Free shotgun ready to use for your game, fully UV mapped. For an upgraded version of this with arms to hold the shotgun, and a revolver, consider checking out the Shotgun & Revolver pack on my profile.",maskedmole,Free, - All Extended Uses,2019-03-15,['FBX '],"['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/shotgun']","['shotgun', 'free', 'firearm']","['https://www.turbosquid.com/Search/3D-Models/shotgun', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/firearm']" +Quin the mantis for unity remake ,"'CREATURE FOR UNITY' REMAKED!QUIN the mantis REMAKE with 16 animations for unity game engine!!differences----------------------------------------------------------------retopologized: 15,504 to 6468 in trisweights fixednew texture types: 7 types of textures-------------------------------------------------------standardwoodlanddrylandmedieval ironconcretesci_fi mosquitobeachanimations-----------------------------------------------------------------idleidle_crouchidle_cleaningwalk_fwdwalk_fwd_on_swampwalk_bkwdwalk_RTwalk_LTattack_RTattack_LTattack_botheatthreatthreat_simplejumpdeath_blowedall animations are 120 -------------------------------------------------------------------------------",GAMEASS,Free, - All Extended Uses,2019-03-15,Unknown,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['unity', 'RPG', 'monster', 'bug', 'creature', 'sci', 'fi', 'fantasy']","['https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/rpg', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/bug', 'https://www.turbosquid.com/Search/3D-Models/creature', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/fantasy']" +Urn,"This is an older looking Medieval or Victorian style kitchen.This model is primarily metal. A concrete slab under the whole thing and a brick chimney are the only two exceptions. There is a metallic mask to separate the metal and the dielectric parts of the model in the material. The kitchen includes a large basin on the left to deep-fry or boil food in. The brick chimney channels the oil vapor upwards and out of the house(wouldn't want the oil fumes to make a fireball in the house). On the right end are several shelves that a fire can be built under to keep food warm or to bake breads and/or cakes in. The main part of the kitchen is a big surface which can be heated and then used to cook food on.The mesh is very clean and quite low resolution if you want to use it in a game.Although this model is pretty cool and will stand on its own in a scene, it does have a slight Medieval or Victorian style and works well with the other Victorian assets I have made. I will be uploading the full pack soon!The textures have been uploaded separately in a .zip from the rest of the 3D model files. They (the textures) come in only one size, 2K resolution. I made this model for usage in games or as a background detail for a big scene so the textures are not super hi-res.This model includes: Color map Normal map Displacement map Specular map Metallic maskThe separate maps were generated using Photoshop.If you like the model, rate it. I would really appreciate it!Thanks!",Iridesium,Free, - Editorial Uses Only,2019-03-14,"['FBX ', 'OBJ ', 'STL ', 'Other ']","['3D Model', 'interior design', 'housewares', 'general decor', 'urn']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/urn']","['urn', 'ashes', 'tomb', 'bottle', 'jar', 'ancient', 'ossuary', 'dust', 'vase', 'container', 'grave', 'sorrow', 'funeral', 'crematorium', 'cemetery', 'cremation', 'cremate', 'low', 'poly', 'game', 'ready', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/urn', 'https://www.turbosquid.com/Search/3D-Models/ashes', 'https://www.turbosquid.com/Search/3D-Models/tomb', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/jar', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/ossuary', 'https://www.turbosquid.com/Search/3D-Models/dust', 'https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/grave', 'https://www.turbosquid.com/Search/3D-Models/sorrow', 'https://www.turbosquid.com/Search/3D-Models/funeral', 'https://www.turbosquid.com/Search/3D-Models/crematorium', 'https://www.turbosquid.com/Search/3D-Models/cemetery', 'https://www.turbosquid.com/Search/3D-Models/cremation', 'https://www.turbosquid.com/Search/3D-Models/cremate', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']" +Armchair - fabric/wood materials ,"| MODEL DESCRIPTION |-This is a model of a modern design armchair.-This model is suitable for use in architectural scenes or game scenes-Dimension: 50cm x 58cm x 70cm (WxDxH) | TECHNICAL SPECIFICATION |-Real-world scale-Units used: Centimetres-Gamma used: 2.2-Total Polys: 2349-Total Verts: 1650-Model is composed in various objects linked togheter with 'parent-child relationship'-All objects of the model are named-All textures are named-All materials are named-All preview images are rendered with V-Ray | ARCHIVE CONTAINS |-.max file with scene fully configured for render with materials, lights and camera-.max file with only model objects-.fbx file with only model objects-.obj file with only model objects-Textures folder | ADDITIONAL NOTES |-If you like this model I would kindly ask you to rate it",matredo,Free, - All Extended Uses,2019-03-14,Unknown,"['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['chair', 'armchair', 'furniture', 'interior', 'design']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design']" +Low poly grass pack ,"Pack Contains: 13 types of Grass(FBX),7 types of Bunch of Grass(FBX),Blend File.",Moi Loy,Free, - All Extended Uses,2019-03-14,['FBX '],"['3D Model', 'nature', 'plants', 'cartoon plant']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/cartoon-plant']","['lowpoly', 'grass']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/grass']" +Piano bench ,"This is an older, worn, piano bench (or any kind of bench). This is an old, wooden piano bench. This model is made to go with the old Grand Piano model I have for sale. The bench is exclusively wooden and is a little worn.The mesh is very clean. And quite low resolution if you want to use it in a game.Although this model is pretty cool and will stand on its own in a scene, it does have a slight Medieval or Victorian style and works well with the other Victorian assets I have made. I will be uploading the full pack soon!The textures have been uploaded separately in a .zip from the rest of the 3D model files. They (the textures) come in only one size, 256x256 resolution. I made this model for usage in games or as a background detail for a big scene so the textures are not super hi-res.This model includes: Color map Normal map Displacement map Specular mapThe separate maps were generated using Photoshop.Thanks!",Iridesium,Free, - All Extended Uses,2019-03-13,"['FBX ', 'OBJ ', 'STL ', 'Other ']","['3D Model', 'furnishings', 'seating', 'bench', 'wooden bench']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/bench', 'https://www.turbosquid.com/3d-model/wooden-bench']","['Piano', 'bench', 'grand', 'seat', 'stool', 'desk', 'side', 'table', 'Yamaha', 'sitting']","['https://www.turbosquid.com/Search/3D-Models/piano', 'https://www.turbosquid.com/Search/3D-Models/bench', 'https://www.turbosquid.com/Search/3D-Models/grand', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/side', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/yamaha', 'https://www.turbosquid.com/Search/3D-Models/sitting']" diff --git a/your-code/dataset_api.csv b/your-code/dataset_api.csv new file mode 100644 index 0000000..0dc45f1 --- /dev/null +++ b/your-code/dataset_api.csv @@ -0,0 +1,4251 @@ +,creatorName,creatorUrl,currentVersionNumber,description,downloadCount,files,id,isFeatured,isPrivate,isReviewed,kernelCount,lastUpdated,licenseName,ownerName,ownerRef,ref,subtitle,tags,title,topicCount,totalBytes,url,usabilityRating,versions,viewCount,voteCount +0,jvent,,17,"# Cryptocurrency Market Data +## Historical Cryptocurrency Prices For ALL Tokens! + +### **Summary** + > Observations: 758,534 + > Variables: 13 + > Crypto Tokens: 1,584 + > Start Date: 28/04/2017 + > End Date: 21/05/2018 + +### **Description** + All historic open, high, low, close, trading volume and market cap info for all cryptocurrencies. + + I've had to go over the code with a fine tooth comb to get it compatible with CRAN so there have been significant enhancements to how some of the field conversions have been undertaken and the data being cleaned. This should eliminate a few issues around number formatting or unexpected handling of scientific notations. + +### **Data Structure** + Observations: 649,051 + Variables: 13 + $ slug ",9042,"[{'ref': 'crypto-markets.csv', 'creationDate': '2018-12-01T13:56:44.37Z', 'datasetRef': 'jessevent/all-crypto-currencies', 'description': '### Observations: 942,000 Variables: 13 Crypto Tokens: 2,071\nAll historic open, high, low, close values for all cryptocurrencies.\n\n - Fixed duplicate coins sharing symbol by introducing coin slug \n - Data current as of 21 May 2018\n - Added two new variables, close_ratio and spread\n - Close ratio is the daily close rate, min-maxed with the high and low values for the day. \n Close Ratio = (Close-Low)/(High-Low)\n - Spread is the $USD difference between the high and low values for the day.', 'fileType': '.csv', 'name': 'crypto-markets.csv', 'ownerRef': 'jessevent', 'totalBytes': 88582391, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'slug', 'type': 'String', 'originalType': '', 'description': 'ETHEREUM'}, {'order': 1, 'name': 'symbol', 'type': 'String', 'originalType': '', 'description': 'BTC'}, {'order': 2, 'name': 'name', 'type': 'String', 'originalType': '', 'description': 'Bitcoin'}, {'order': 3, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': '01/01/2015'}, {'order': 4, 'name': 'ranknow', 'type': 'Uuid', 'originalType': '', 'description': 'rank from 1 to 2000'}, {'order': 5, 'name': 'open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'high', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'volume', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'market', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'close_ratio', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'spread', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",1963,False,False,True,63,2018-12-01T13:56:58.277Z,Other (specified in description),jvent,jessevent,jessevent/all-crypto-currencies,"Daily crypto markets open, close, low, high data for every token ever","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}]",Every Cryptocurrency Daily Market Price,29,23636187,https://www.kaggle.com/jessevent/all-crypto-currencies,0.852941155,"[{'versionNumber': 17, 'creationDate': '2018-12-01T13:56:58.277Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Updated data as of 30/11/2018', 'status': 'Ready'}, {'versionNumber': 16, 'creationDate': '2018-06-07T16:10:57.673Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Data refresh 080618', 'status': 'Ready'}, {'versionNumber': 15, 'creationDate': '2018-05-20T17:10:38.863Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Data refreshed', 'status': 'Ready'}, {'versionNumber': 14, 'creationDate': '2018-05-20T17:07:40.193Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'latest update 21 May', 'status': 'Ready'}, {'versionNumber': 13, 'creationDate': '2018-03-26T14:51:04.597Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Data current as of 27/03/2018', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2018-02-22T03:47:32.9Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Updated data as of 22 Feb 2018', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2018-02-06T21:30:46.24Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'updated data', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2018-01-28T13:04:23.35Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Refreshed as of 28 Jan', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2018-01-11T13:04:12.203Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Updated Data as of 11/01/2017', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2018-01-03T12:37:47.117Z', 'creatorName': 'jvent', 'creatorRef': 'all-crypto-currencies', 'versionNotes': 'Fixed duplicates, new variables, refreshed data', 'status': 'Ready'}]",76266,378 +1,Albert Costas,,8,"«Datasets per la comparació de moviments i patrons entre els principals índexs borsatils espanyols i les crypto-monedes» + +### Context + +En aquest cas el context és detectar o preveure els diferents moviments que es produeixen per una serie factors, tant de moviment interns (compra-venda), com externs (moviments polítics, econòmics, etc...), en els principals índexs borsatils espanyols i de les crypto-monedes. + +Hem seleccionat diferents fonts de dades per generar fitxers «csv», guardar diferents valors en el mateix període de temps. És important destacar que ens interessa més les tendències alcistes o baixes, que podem calcular o recuperar en aquests períodes de temps. + +### Content + +En aquest cas el contingut està format per diferents csv, especialment tenim els fitxers de moviments de cryptomoneda, els quals s’ha generat un fitxer per dia del període de temps estudiat. + +Pel que fa als moviments del principals índexs borsatils s’ha generat una carpeta per dia del període, en cada directori un fitxer amb cadascun del noms dels índexs. Degut això s’han comprimit aquests últims abans de publicar-los en el directori de «open data» kaggle.com. + +Pel que fa als camps, ens interessà detectar els moviments alcistes i baixistes, o almenys aquelles que tenen un patró similar en les cryptomonedes i els índexs. Els camps especialment destacats són: + + • Nom: Nom empresa o cryptomoneda; + • Preu: Valor en euros d’una acció o una cryptomoneda; + • Volum: En euros/volum 24 hores,acumulat de les transaccions diàries en milions d’euros + • Simbol: Símbol o acrònim de la moneda + • Cap de mercat: Valor total de totes les monedes en el moment actual + • Oferta circulant: Valor en oportunitat de negoci + • % 1h, % 2h i %7d, tant per cent del valor la moneda en 1h, 2h o 7d sobre la resta de cyprtomonedes. + +### Acknowledgements + +En aquest cas les fonts de dades que s’han utilitzat per a la realització dels datasets corresponent a: + + - http://www.eleconomista.es + - https://coinmarketcap.com + +Per aquest fet, les dades de borsa i crypto-moneda estan en última instància sota llicència de les webs respectivament. +Pel que fa a la terminologia financera podem veure vocabulari en renta4banco. +[https://www.r4.com/que-necesitas/formacion/diccionario] + +### Inspiration + +Hi ha un estudi anterior on poder tenir primícies de com han enfocat els algoritmes: + + - https://arxiv.org/pdf/1410.1231v1.pdf + +En aquest cas el «trading» en cryptomoneda és relativament nou, força popular per la seva formulació com a mitja digital d’intercanvi, utilitzant un protocol que garanteix la seguretat, integritat i equilibri del seu estat de compte per mitjà d’un entramat d’agents. + +La comunitat podrà respondre, entre altres preguntes, a: + + - Està afectant o hi ha patrons comuns en les cotitzacions de cryptomonedes i el mercat de valors principals del país d'Espanya? + - Els efectes o agents externs afecten per igual a les accions o cryptomonedes? + - Hi ha relacions cause efecte entre les acciones i cryptomonedes? + +### Project repository +https://github.com/acostasg/scraping + +### Datasets +Els fitxers csv generats que componen el dataset s’han publicat en el repositori kaggle.com: + +* https://www.kaggle.com/acostasg/stock-index/ +* https://www.kaggle.com/acostasg/crypto-currencies + +Per una banda, els fitxers els «stock-index» estan comprimits per carpetes amb la data d’extracció i cada fitxer amb el nom dels índexs borsatil. De forma diferent, les cryptomonedes aquestes estan dividides per fitxer on són totes les monedes amb la data d’extracció.",565,"[{'ref': '1_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:13.870238Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '1_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 101192, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '13_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:08.5578765Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '13_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91133, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '14_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:10.1984558Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '14_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91637, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '15_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:10.9171916Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '15_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91455, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '16_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:11.5577978Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '16_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91773, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '17_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:11.9872266Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '17_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92709, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '18_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:12.4640233Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '18_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92201, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '19_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:13.3077525Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '19_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91649, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '19_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:54:55.994Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '19_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 106161, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '2_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:18.5107496Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '2_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 101942, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '2_12_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:54:53.866Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '2_12_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 108044, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '20_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:14.3702249Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '20_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92359, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '21_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:14.6671077Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '21_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 93669, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '22_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:14.9170902Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '22_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92502, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '23_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:15.2139562Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '23_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98285, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '24_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:15.4171167Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '24_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98455, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '25_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:15.8858288Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '25_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98362, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '26_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:16.479546Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '26_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98199, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '27_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:16.9482933Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '27_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 99216, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '28_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:17.2295326Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '28_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 99282, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '29_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:17.918516Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '29_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 100115, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '3_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:19.4950937Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '3_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 102437, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '3_12_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:54:52.472Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '3_12_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 108674, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '30_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:18.9326097Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '30_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 100856, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '31_10_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:19.166981Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '31_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 100580, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '4_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:19.8700966Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '4_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 102520, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '5_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:20.2502969Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '5_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 102864, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '6_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:20.609674Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '6_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 103617, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '7_11_2017_crypto_currencies.csv', 'creationDate': '2017-12-03T18:55:21.0159327Z', 'datasetRef': 'acostasg/crypto-currencies', 'description': '', 'fileType': '.csv', 'name': '7_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 103452, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}]",2963,False,False,False,2,2017-12-03T18:55:04.34Z,"Database: Open Database, Contents: Database Contents",Albert Costas,acostasg,acostasg/crypto-currencies,Cryptocurrency Market Capitalizations,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Crypto Currencies,0,1321667,https://www.kaggle.com/acostasg/crypto-currencies,0.7058824,"[{'versionNumber': 8, 'creationDate': '2017-12-03T18:55:04.34Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'New data csv', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2017-11-07T21:58:24.473Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'update dataset with csv', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2017-10-28T18:57:06.873Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'New csv to 27 and 28 to 10-2017', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2017-10-26T21:01:41.18Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'Add 26-10-2017 file csv', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2017-10-24T20:47:12.753Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'Add new dataset csv', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-10-22T21:47:11.823Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'Add new csv in the dataset between 13_10_2017 and 19_10_210', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-10-15T22:44:22.087Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'Crypto Currencies', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-10-13T00:12:59.23Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies', 'versionNotes': 'Initial release', 'status': 'Ready'}]",7767,12 +2,Albert Costas,,2,"«Datasets per la comparació de moviments i patrons entre els principals índexs borsatils espanyols i les crypto-monedes» + +### Context + +En aquest cas el context és detectar o preveure els diferents moviments que es produeixen per una serie factors, tant de moviment interns (compra-venda), com externs (moviments polítics, econòmics, etc...), en els principals índexs borsatils espanyols i de les crypto-monedes. + +Hem seleccionat diferents fonts de dades per generar fitxers «csv», guardar diferents valors en el mateix període de temps. És important destacar que ens interessa més les tendències alcistes o baixes, que podem calcular o recuperar en aquests períodes de temps. + +### Content + +En aquest cas el contingut està format per diferents csv, especialment tenim els fitxers de moviments de cryptomoneda, els quals s’ha generat un fitxer per dia del període de temps estudiat. + +Pel que fa als moviments del principals índexs borsatils s’ha generat una carpeta per dia del període, en cada directori un fitxer amb cadascun del noms dels índexs. Degut això s’han comprimit aquests últims abans de publicar-los en el directori de «open data» kaggle.com. + +Pel que fa als camps, ens interessà detectar els moviments alcistes i baixistes, o almenys aquelles que tenen un patró similar en les cryptomonedes i els índexs. Els camps especialment destacats són: + + • Data: Data de la observació + • Nom: Nom empresa o cryptomoneda, per identificar de quina moneda o index estem representant. + • Símbol: Símbol de la moneda o del index borsatil, per realitzar gràfic posteriorment d’una forma mes senzilla que el nom. + • Preu: Valor en euros d’una acció o una cryptomoneda (transformarem la moneda a euros en el cas de estigui en dòlars amb l'última cotització (un dollar a 0,8501 euro) + • Tipus_cotitzacio: Valor nou que agregarem per discretitzar entre la cotització: baix (0 i 1), normal (1 i 100), alt (100 i 1000), molt_alt (>1000) + +# Script R + +* Anàlisis de les observacions i el domini de les dades +* Anàlisis en especial de Bitcoin i la IOTA. +* Test de Levene per veure la homogeneitat +* Kmeans per creació de cluster per veure la homegeneitat +* Freqüències de les distribucions +* Test de contrast d'hipòtesis de variables dependents (Wilcoxon) +* Test de Shapiro-Wilk per veure la normalitat de les dades, per normalitzar-les o no +* Correlació d'índexs borsatils, per eliminar complexitat dels índexs amb grau més alt de correlació +* Iteració de Regressions lineals per obtenir el model amb més qualitat, observa'n el p-valor i l'índex de correlació +* Validació de la qualitat del model +* Representació grafica + +### Acknowledgements + +En aquest cas les fonts de dades que s’han utilitzat per a la realització dels datasets corresponent a: + + - http://www.eleconomista.es + - https://coinmarketcap.com + +Per aquest fet, les dades de borsa i crypto-moneda estan en última instància sota llicència de les webs respectivament. +Pel que fa a la terminologia financera podem veure vocabulari en renta4banco. +[https://www.r4.com/que-necesitas/formacion/diccionario] + +### Inspiration + +Hi ha un estudi anterior on poder tenir primícies de com han enfocat els algoritmes: + + - https://arxiv.org/pdf/1410.1231v1.pdf + +En aquest cas el «trading» en cryptomoneda és relativament nou, força popular per la seva formulació com a mitja digital d’intercanvi, utilitzant un protocol que garanteix la seguretat, integritat i equilibri del seu estat de compte per mitjà d’un entramat d’agents. + +La comunitat podrà respondre, entre altres preguntes, a: + + - Està afectant o hi ha patrons comuns en les cotitzacions de cryptomonedes i el mercat de valors principals del país d'Espanya? + - Els efectes o agents externs afecten per igual a les accions o cryptomonedes? + - Hi ha relacions cause efecte entre les acciones i cryptomonedes? + +### Project repository +https://github.com/acostasg/scraping + +### Datasets +Els fitxers csv generats que componen el dataset s’han publicat en el repositori kaggle.com: + +* https://www.kaggle.com/acostasg/stock-index/ +* https://www.kaggle.com/acostasg/crypto-currencies + +Per una banda, els fitxers els «stock-index» estan comprimits per carpetes amb la data d’extracció i cada fitxer amb el nom dels índexs borsatil. De forma diferent, les cryptomonedes aquestes estan dividides per fitxer on són totes les monedes amb la data d’extracció.",515,"[{'ref': 'dataset.csv', 'creationDate': '2017-12-13T22:38:19.326Z', 'datasetRef': 'acostasg/cryptocurrenciesvsstockindex', 'description': '', 'fileType': '.csv', 'name': 'dataset.csv', 'ownerRef': 'acostasg', 'totalBytes': 2943466, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Data', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Tipus', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu (Euros)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Tipus_cotitzacio', 'type': 'String', 'originalType': '', 'description': None}]}]",6902,False,False,True,1,2017-12-13T22:38:33.32Z,"Database: Open Database, Contents: © Original Authors",Albert Costas,acostasg,acostasg/cryptocurrenciesvsstockindex,Relation and patterns between movements of stock exchange indexes and cryptocurrency,"[{'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Analysis about crypto currencies and Stock Index,0,681413,https://www.kaggle.com/acostasg/cryptocurrenciesvsstockindex,0.7058824,"[{'versionNumber': 2, 'creationDate': '2017-12-13T22:38:33.32Z', 'creatorName': 'Albert Costas', 'creatorRef': 'cryptocurrenciesvsstockindex', 'versionNotes': 'Delete empty values', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-12-12T22:18:07.377Z', 'creatorName': 'Albert Costas', 'creatorRef': 'cryptocurrenciesvsstockindex', 'versionNotes': 'Initial release', 'status': 'Ready'}]",5822,18 +3,mitillo,,3,"### Context + +This is a different timeframe currencies csv from a trading program + + +### Content +There are 42 . csv of different dataframes and currencies. + + +### Acknowledgements + +I acknowlege every person in the world who spend their time sharing there knowledge from youtube to blogs. That people make world a better place to live. + + +### Inspiration + +I want to create code to select the ones that have a tf of 1 day amonng others. My intention is create a code to help us to select the documents we want inside a messy folder.",134,"[{'ref': 'currencies.rar', 'creationDate': '2017-09-24T19:50:59.9733313Z', 'datasetRef': 'mitillo/currencies', 'description': 'This a zip file from different timeframes currencies from a trading program', 'fileType': '.rar', 'name': 'currencies.rar', 'ownerRef': 'mitillo', 'totalBytes': 978167, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'EURUSD1440.csv', 'creationDate': '2017-09-24T19:50:59.9733313Z', 'datasetRef': 'mitillo/currencies', 'description': '', 'fileType': '.csv', 'name': 'EURUSD1440.csv', 'ownerRef': 'mitillo', 'totalBytes': 100793, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2009.12.21', 'type': 'DateTime', 'originalType': '', 'description': ''}, {'order': 1, 'name': '00:00', 'type': 'DateTime', 'originalType': '', 'description': ''}, {'order': 2, 'name': '1.43110', 'type': 'Numeric', 'originalType': '', 'description': ''}, {'order': 3, 'name': '1.43710', 'type': 'Numeric', 'originalType': '', 'description': ''}, {'order': 4, 'name': '1.42650', 'type': 'Numeric', 'originalType': '', 'description': ''}, {'order': 5, 'name': '1.42740', 'type': 'Numeric', 'originalType': '', 'description': ''}, {'order': 6, 'name': '40886', 'type': 'Numeric', 'originalType': '', 'description': ''}]}, {'ref': 'USDJPY1440.csv', 'creationDate': '2017-09-24T09:05:46Z', 'datasetRef': 'mitillo/currencies', 'description': '', 'fileType': '.csv', 'name': 'USDJPY1440.csv', 'ownerRef': 'mitillo', 'totalBytes': 629098, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '1971.01.04', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '00:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': '357.730', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '357.730', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '357.730', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '357.730', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",2661,False,False,False,1,2017-09-24T19:50:59.687Z,Unknown,mitillo,mitillo,mitillo/currencies,,[],Currencies,0,1151577,https://www.kaggle.com/mitillo/currencies,0.4117647,"[{'versionNumber': 3, 'creationDate': '2017-09-24T19:50:59.687Z', 'creatorName': 'mitillo', 'creatorRef': 'currencies', 'versionNotes': 'Added USDJPY', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-09-24T10:06:53.427Z', 'creatorName': 'mitillo', 'creatorRef': 'currencies', 'versionNotes': 'currencies2', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-09-24T08:53:16.153Z', 'creatorName': 'mitillo', 'creatorRef': 'currencies', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1234,2 +4,Sebastian,,2,"This dataset contains the daily currency exchange rates as reported to the *International Monetary Fund* by the issuing central bank. Included are 51 currencies over the period from 01-01-1995 to 11-04-2018. + +The format is known as *currency units per U.S. Dollar*. Explained by example, each rate in the *Euro* column says how much *U.S. Dollar* you had to pay at a certain date to buy 1 Euro. Hence, the rates in the column *U.S. Dollar* are always `1`.",521,"[{'ref': 'currency_exchange_rates_02-01-1995_-_02-05-2018.csv', 'creationDate': '2018-05-02T17:48:05.084Z', 'datasetRef': 'thebasss/currency-exchange-rates', 'description': '', 'fileType': '.csv', 'name': 'currency_exchange_rates_02-01-1995_-_02-05-2018.csv', 'ownerRef': 'thebasss', 'totalBytes': 1785624, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Algerian Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Australian Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Bahrain Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Bolivar Fuerte', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Botswana Pula', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Brazilian Real', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Brunei Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Canadian Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Chilean Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Chinese Yuan', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Colombian Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Czech Koruna', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Danish Krone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Euro', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Hungarian Forint', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Icelandic Krona', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Indian Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Indonesian Rupiah', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Iranian Rial', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Israeli New Sheqel', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Japanese Yen', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Kazakhstani Tenge', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'Korean Won', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Kuwaiti Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Libyan Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Malaysian Ringgit', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Mauritian Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Mexican Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Nepalese Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'New Zealand Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'Norwegian Krone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'Nuevo Sol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Pakistani Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Peso Uruguayo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Philippine Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Polish Zloty', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Qatar Riyal', 'type': 'String', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Rial Omani', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Russian Ruble', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'Saudi Arabian Riyal', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Singapore Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'South African Rand', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'Sri Lanka Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Swedish Krona', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'Swiss Franc', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'Thai Baht', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'Trinidad And Tobago Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'Tunisian Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'U.A.E. Dirham', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'U.K. Pound Sterling', 'type': 'String', 'originalType': '', 'description': None}, {'order': 51, 'name': 'U.S. Dollar', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",20872,False,False,False,0,2018-05-02T17:48:28.943Z,CC0: Public Domain,Sebastian,thebasss,thebasss/currency-exchange-rates,Daily exchange rates for 51 currencies from 1995 to 2018,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",Currency Exchange Rates,1,596854,https://www.kaggle.com/thebasss/currency-exchange-rates,0.647058845,"[{'versionNumber': 2, 'creationDate': '2018-05-02T17:48:28.943Z', 'creatorName': 'Sebastian', 'creatorRef': 'currency-exchange-rates', 'versionNotes': 'Adding data for April 2018', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-04-11T08:28:55.873Z', 'creatorName': 'Sebastian', 'creatorRef': 'currency-exchange-rates', 'versionNotes': 'Initial release', 'status': 'Ready'}]",2601,21 +5,Albert Costas,,1,"«Datasets per la comparació de moviments i patrons entre els principals índexs borsatils espanyols i les crypto-monedes» + +### Context + +En aquest cas el context és detectar o preveure els diferents moviments que es produeixen per una serie factors, tant de moviment interns (compra-venda), com externs (moviments polítics, econòmics, etc...), en els principals índexs borsatils espanyols i de les crypto-monedes. + +Hem seleccionat diferents fonts de dades per generar fitxers «csv», guardar diferents valors en el mateix període de temps. És important destacar que ens interessa més les tendències alcistes o baixes, que podem calcular o recuperar en aquests períodes de temps. + +### Content + +En aquest cas el contingut està format per diferents csv, especialment tenim els fitxers de moviments de cryptomoneda, els quals s’ha generat un fitxer per dia del període de temps estudiat. + +Pel que fa als moviments del principals índexs borsatils s’ha generat una carpeta per dia del període, en cada directori un fitxer amb cadascun del noms dels índexs. Degut això s’han comprimit aquests últims abans de publicar-los en el directori de «open data» kaggle.com. + +Pel que fa als camps, ens interessà detectar els moviments alcistes i baixistes, o almenys aquelles que tenen un patró similar en les cryptomonedes i els índexs. Els camps especialment destacats són: + + • Nom: Nom empresa o cryptomoneda; + • Preu: Valor en euros d’una acció o una cryptomoneda; + • Volum: En euros/volum 24 hores,acumulat de les transaccions diàries en milions d’euros + • Simbol: Símbol o acrònim de la moneda + • Cap de mercat: Valor total de totes les monedes en el moment actual + • Oferta circulant: Valor en oportunitat de negoci + • % 1h, % 2h i %7d, tant per cent del valor la moneda en 1h, 2h o 7d sobre la resta de cyprtomonedes. + +### Acknowledgements + +En aquest cas les fonts de dades que s’han utilitzat per a la realització dels datasets corresponent a: + + - http://www.eleconomista.es + - https://coinmarketcap.com + +Per aquest fet, les dades de borsa i crypto-moneda estan en última instància sota llicència de les webs respectivament. +Pel que fa a la terminologia financera podem veure vocabulari en renta4banco. +[https://www.r4.com/que-necesitas/formacion/diccionario] + +### Inspiration + +Hi ha un estudi anterior on poder tenir primícies de com han enfocat els algoritmes: + + - https://arxiv.org/pdf/1410.1231v1.pdf + +En aquest cas el «trading» en cryptomoneda és relativament nou, força popular per la seva formulació com a mitja digital d’intercanvi, utilitzant un protocol que garanteix la seguretat, integritat i equilibri del seu estat de compte per mitjà d’un entramat d’agents. + +La comunitat podrà respondre, entre altres preguntes, a: + + - Està afectant o hi ha patrons comuns en les cotitzacions de cryptomonedes i el mercat de valors principals del país d'Espanya? + - Els efectes o agents externs afecten per igual a les accions o cryptomonedes? + - Hi ha relacions cause efecte entre les acciones i cryptomonedes? + +### Project repository +https://github.com/acostasg/scraping + +### Datasets +Els fitxers csv generats que componen el dataset s’han publicat en el repositori kaggle.com: + +* https://www.kaggle.com/acostasg/stock-index/ +* https://www.kaggle.com/acostasg/crypto-currencies + +Per una banda, els fitxers els «stock-index» estan comprimits per carpetes amb la data d’extracció i cada fitxer amb el nom dels índexs borsatil. De forma diferent, les cryptomonedes aquestes estan dividides per fitxer on són totes les monedes amb la data d’extracció.",160,"[{'ref': '1_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:22.819Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '1_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 101192, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '13_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:22.878Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '13_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91133, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '14_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:23.373Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '14_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91637, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '15_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:23.891Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '15_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91455, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '16_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.473Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '16_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91773, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '17_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:23.666Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '17_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92709, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '18_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.67Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '18_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92201, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '19_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.224Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '19_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 91649, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '2_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.257Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '2_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 101942, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '20_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:23.694Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '20_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 92359, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '21_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:23.978Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '21_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 93669, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '24_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.545Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '24_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98455, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '25_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.846Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '25_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98362, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '26_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.712Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '26_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 98199, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '27_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.225Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '27_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 99216, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '28_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:24.923Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '28_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 99282, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '29_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:25.141Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '29_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 100115, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '3_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:22.661Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '3_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 102437, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '30_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:26.641Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '30_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 100856, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '31_10_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:26.557Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '31_10_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 100580, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '4_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:22.755Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '4_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 102520, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '5_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:22.887Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '5_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 102864, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '6_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:22.811Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '6_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 103617, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': '7_11_2017_crypto_currencies.csv', 'creationDate': '2017-11-07T20:18:23.298Z', 'datasetRef': 'acostasg/crypto-currencies-data', 'description': '', 'fileType': '.csv', 'name': '7_11_2017_crypto_currencies.csv', 'ownerRef': 'acostasg', 'totalBytes': 103452, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Numero', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Nom', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Simbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Cap de mercat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Preu', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Oferta circulant', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volum 24 hores', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '% 1h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '% 2h', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': '% 7d', 'type': 'String', 'originalType': '', 'description': None}]}]",4161,False,False,False,0,2017-11-07T20:19:07.32Z,"Database: Open Database, Contents: Database Contents",Albert Costas,acostasg,acostasg/crypto-currencies-data,Cryptocurrency Market Capitalizations,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Crypto Currencies,0,1082628,https://www.kaggle.com/acostasg/crypto-currencies-data,0.647058845,"[{'versionNumber': 1, 'creationDate': '2017-11-07T20:19:07.32Z', 'creatorName': 'Albert Costas', 'creatorRef': 'crypto-currencies-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1486,1 +6,Pablo Lopez Santori,,1,"### Context + +I put together this dataset when I decided to build a Deep Learning model to detect a coin from an image. + + +### Content + +A collection of 211 different coins from 32 currencies. + +* ``cat_to_name.json`` maps the folder id with a specific coin. + +* ``data`` contains all the coin images. The dataset has already been splitted in train, validation and test. + + +### Acknowledgements + +**I am not the owner of this data. Most of these images have been downloaded from [ucoin.net][1] and other online sources. These images may be subject of copyright.** + + + [1]: http://ucoin.net",69,"[{'ref': 'cat_to_name.json', 'creationDate': '2019-03-27T09:17:48.014Z', 'datasetRef': 'wanderdust/coin-images', 'description': '``cat_to_name.json`` maps the folder id with a specific coin.', 'fileType': '.json', 'name': 'cat_to_name.json', 'ownerRef': 'wanderdust', 'totalBytes': 9667, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'coins.zip', 'creationDate': '2019-03-27T09:23:56.902Z', 'datasetRef': 'wanderdust/coin-images', 'description': '211 different coin types from 32 different currencies.', 'fileType': '.zip', 'name': 'coins.zip', 'ownerRef': 'wanderdust', 'totalBytes': 481314462, 'url': 'https://www.kaggle.com/', 'columns': []}]",150253,False,False,False,1,2019-03-27T09:26:10.133Z,Other (specified in description),Pablo Lopez Santori,wanderdust,wanderdust/coin-images,A collection of coin images from 32 different currencies.,"[{'ref': 'image data', 'competitionCount': 63, 'datasetCount': 534, 'description': None, 'fullPath': 'data type > image data', 'isAutomatic': False, 'name': 'image data', 'scriptCount': 317, 'totalCount': 914}, {'ref': 'cnn', 'competitionCount': 0, 'datasetCount': 46, 'description': None, 'fullPath': 'algorithms > cnn', 'isAutomatic': False, 'name': 'cnn', 'scriptCount': 647, 'totalCount': 693}, {'ref': 'world', 'competitionCount': 0, 'datasetCount': 353, 'description': ""The kernels and datasets with this tag make the world go 'round."", 'fullPath': 'geography and places > world', 'isAutomatic': False, 'name': 'world', 'scriptCount': 42, 'totalCount': 395}, {'ref': 'countries', 'competitionCount': 0, 'datasetCount': 70, 'description': 'A country is a region that is identified as a distinct national entity in political geography.', 'fullPath': 'geography and places > countries', 'isAutomatic': False, 'name': 'countries', 'scriptCount': 34, 'totalCount': 104}]",World Coins,0,480602984,https://www.kaggle.com/wanderdust/coin-images,0.9375,"[{'versionNumber': 1, 'creationDate': '2019-03-27T09:26:10.133Z', 'creatorName': 'Pablo Lopez Santori', 'creatorRef': 'coin-images', 'versionNotes': 'Initial release', 'status': 'Ready'}]",417,5 +7,SRK,,13,"### Context + +Things like Block chain, Bitcoin, Bitcoin cash, Ethereum, Ripple etc are constantly coming in the news articles I read. So I wanted to understand more about it and [this post][1] helped me get started. Once the basics are done, the data scientist inside me started raising questions like: + +1. How many cryptocurrencies are there and what are their prices and valuations? +2. Why is there a sudden surge in the interest in recent days? + +For getting answers to all these questions (and if possible to predict the future prices ;)), I started collecting data from [coinmarketcap][2] about the cryptocurrencies. + + + +So what next? +Now that we have the price data, I wanted to dig a little more about the factors affecting the price of coins. I started of with Bitcoin and there are quite a few parameters which affect the price of Bitcoin. Thanks to [Blockchain Info][3], I was able to get quite a few parameters on once in two day basis. + +This will help understand the other factors related to Bitcoin price and also help one make future predictions in a better way than just using the historical price. + + +### Content + +The dataset has one csv file for each currency. Price history is available on a daily basis from April 28, 2013. This dataset has the historical price information of some of the top crypto currencies by market capitalization. The currencies included are: + + - Bitcoin + - Ethereum + - Ripple + - Bitcoin cash + - Bitconnect + - Dash + - Ethereum Classic + - Iota + - Litecoin + - Monero + - Nem + - Neo + - Numeraire + - Stratis + - Waves + + + + - Date : date of observation + - Open : Opening price on the given day + - High : Highest price on the given day + - Low : Lowest price on the given day + - Close : Closing price on the given day + - Volume : Volume of transactions on the given day + - Market Cap : Market capitalization in USD + +**Bitcoin Dataset (bitcoin_dataset.csv) :** + +This dataset has the following features. + + - Date : Date of observation + - btc_market_price : Average USD market price across major bitcoin exchanges. + - btc_total_bitcoins : The total number of bitcoins that have already been mined. + - btc_market_cap : The total USD value of bitcoin supply in circulation. + - btc_trade_volume : The total USD value of trading volume on major bitcoin exchanges. + - btc_blocks_size : The total size of all block headers and transactions. + - btc_avg_block_size : The average block size in MB. + - btc_n_orphaned_blocks : The total number of blocks mined but ultimately not attached to the main Bitcoin blockchain. + - btc_n_transactions_per_block : The average number of transactions per block. + - btc_median_confirmation_time : The median time for a transaction to be accepted into a mined block. + - btc_hash_rate : The estimated number of tera hashes per second the Bitcoin network is performing. + - btc_difficulty : A relative measure of how difficult it is to find a new block. + - btc_miners_revenue : Total value of coinbase block rewards and transaction fees paid to miners. + - btc_transaction_fees : The total value of all transaction fees paid to miners. + - btc_cost_per_transaction_percent : miners revenue as percentage of the transaction volume. + - btc_cost_per_transaction : miners revenue divided by the number of transactions. + - btc_n_unique_addresses : The total number of unique addresses used on the Bitcoin blockchain. + - btc_n_transactions : The number of daily confirmed Bitcoin transactions. + - btc_n_transactions_total : Total number of transactions. + - btc_n_transactions_excluding_popular : The total number of Bitcoin transactions, excluding the 100 most popular addresses. + - btc_n_transactions_excluding_chains_longer_than_100 : The total number of Bitcoin transactions per day excluding long transaction chains. + - btc_output_volume : The total value of all transaction outputs per day. + - btc_estimated_transaction_volume : The total estimated value of transactions on the Bitcoin blockchain. + - btc_estimated_transaction_volume_usd : The estimated transaction value in USD value. + +**Ethereum Dataset (ethereum_dataset.csv):** + +This dataset has the following features + + - Date(UTC) : Date of transaction + - UnixTimeStamp : unix timestamp + - eth_etherprice : price of ethereum + - eth_tx : number of transactions per day + - eth_address : Cumulative address growth + - eth_supply : Number of ethers in supply + - eth_marketcap : Market cap in USD + - eth_hashrate : hash rate in GH/s + - eth_difficulty : Difficulty level in TH + - eth_blocks : number of blocks per day + - eth_uncles : number of uncles per day + - eth_blocksize : average block size in bytes + - eth_blocktime : average block time in seconds + - eth_gasprice : Average gas price in Wei + - eth_gaslimit : Gas limit per day + - eth_gasused : total gas used per day + - eth_ethersupply : new ether supply per day + - eth_chaindatasize : chain data size in bytes + - eth_ens_register : Ethereal Name Service (ENS) registrations per day + + + +### Acknowledgements + +This data is taken from [coinmarketcap][5] and it is [free][6] to use the data. + +Bitcoin dataset is obtained from [Blockchain Info][7]. + +Ethereum dataset is obtained from [Etherscan][8]. + +Cover Image : Photo by Thomas Malama on Unsplash + +### Inspiration + +Some of the questions which could be inferred from this dataset are: + + 1. How did the historical prices / market capitalizations of various currencies change over time? + 2. Predicting the future price of the currencies + 3. Which currencies are more volatile and which ones are more stable? + 4. How does the price fluctuations of currencies correlate with each other? + 5. Seasonal trend in the price fluctuations + +Bitcoin / Ethereum dataset could be used to look at the following: + + 1. Factors affecting the bitcoin / ether price. + 2. Directional prediction of bitcoin / ether price. (refer [this paper][9] for more inspiration) + 3. Actual bitcoin price prediction. + + + + [1]: https://www.linkedin.com/pulse/blockchain-absolute-beginners-mohit-mamoria + [2]: https://coinmarketcap.com/ + [3]: https://blockchain.info/ + [4]: https://etherscan.io/charts + [5]: https://coinmarketcap.com/ + [6]: https://coinmarketcap.com/faq/ + [7]: https://blockchain.info/ + [8]: https://etherscan.io/charts + [9]: http://cs229.stanford.edu/proj2014/Isaac%20Madan,%20Shaurya%20Saluja,%20Aojia%20Zhao,Automated%20Bitcoin%20Trading%20via%20Machine%20Learning%20Algorithms.pdf",19255,"[{'ref': 'bitcoin_cash_price.csv', 'creationDate': '2018-02-21T12:36:34.523Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitcoin_cash_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 16300, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'bitcoin_dataset.csv', 'creationDate': '2018-02-21T12:36:20.93Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitcoin_dataset.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 764011, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'btc_market_price', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'btc_total_bitcoins', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'btc_market_cap', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'btc_trade_volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'btc_blocks_size', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'btc_avg_block_size', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'btc_n_orphaned_blocks', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'btc_n_transactions_per_block', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'btc_median_confirmation_time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'btc_hash_rate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'btc_difficulty', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'btc_miners_revenue', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'btc_transaction_fees', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'btc_cost_per_transaction_percent', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'btc_cost_per_transaction', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'btc_n_unique_addresses', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'btc_n_transactions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'btc_n_transactions_total', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'btc_n_transactions_excluding_popular', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'btc_n_transactions_excluding_chains_longer_than_100', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'btc_output_volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'btc_estimated_transaction_volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'btc_estimated_transaction_volume_usd', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'bitcoin_price.csv', 'creationDate': '2018-02-21T12:36:31.241Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitcoin_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 129247, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'bitconnect_price.csv', 'creationDate': '2018-02-21T12:36:31.076Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitconnect_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 26774, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'dash_price.csv', 'creationDate': '2018-02-21T12:36:34.753Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'dash_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 92782, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ethereum_classic_price.csv', 'creationDate': '2018-02-21T12:36:34.434Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ethereum_classic_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 38569, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ethereum_dataset.csv', 'creationDate': '2018-02-21T12:36:21.792Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ethereum_dataset.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 140096, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date(UTC)', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'UnixTimeStamp', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'eth_etherprice', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'eth_tx', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'eth_address', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'eth_supply', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'eth_marketcap', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'eth_hashrate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'eth_difficulty', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'eth_blocks', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'eth_uncles', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'eth_blocksize', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'eth_blocktime', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'eth_gasprice', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'eth_gaslimit', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'eth_gasused', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'eth_ethersupply', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'eth_ens_register', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'ethereum_price.csv', 'creationDate': '2018-02-21T12:36:34.306Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ethereum_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 65244, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'iota_price.csv', 'creationDate': '2018-02-21T12:36:34.595Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'iota_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 19114, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'litecoin_price.csv', 'creationDate': '2018-02-21T12:36:33.444Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'litecoin_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 110073, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'monero_price.csv', 'creationDate': '2018-02-21T12:36:33.756Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'monero_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 93207, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'nem_price.csv', 'creationDate': '2018-02-21T12:36:36.217Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'nem_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 79107, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'neo_price.csv', 'creationDate': '2018-02-21T12:36:39.894Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'neo_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 37114, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'numeraire_price.csv', 'creationDate': '2018-02-21T12:36:33.961Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'numeraire_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 15485, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'omisego_price.csv', 'creationDate': '2018-02-21T12:36:37.604Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'omisego_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 14706, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'qtum_price.csv', 'creationDate': '2018-02-21T12:36:34.944Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'qtum_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 17781, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ripple_price.csv', 'creationDate': '2018-02-21T12:36:39.073Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ripple_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 126766, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'stratis_price.csv', 'creationDate': '2018-02-21T12:36:38.235Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'stratis_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 38241, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'waves_price.csv', 'creationDate': '2018-02-21T12:36:36.826Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'waves_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 43267, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",1869,False,False,False,39,2018-02-21T12:36:47.22Z,CC0: Public Domain,SRK,sudalairajkumar,sudalairajkumar/cryptocurrencypricehistory,"Prices of top cryptocurrencies including Bitcoin, Ethereum, Ripple, Bitcoin cash","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}]",Cryptocurrency Historical Prices,12,715347,https://www.kaggle.com/sudalairajkumar/cryptocurrencypricehistory,0.7058824,"[{'versionNumber': 13, 'creationDate': '2018-02-21T12:36:47.22Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'new version', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2017-11-08T16:54:28.017Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Updated on Nov 8, 2017', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2017-10-04T06:28:03.47Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on October 4, 2017', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2017-09-18T18:20:26.337Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'updated few files which were not updated properly', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2017-09-18T18:17:40.507Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Prices updated on Sept 18, 2017', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2017-09-06T11:03:03.107Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on September 6, 2017', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2017-08-30T13:06:06.35Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on August 30, 2017', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2017-08-29T10:39:08.747Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on August 29, 2017', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2017-08-28T13:20:01.267Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Added ethereum_dataset.csv which has details of features related to Ethereum', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2017-08-27T14:02:03.23Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Added bitcoin_dataset.csv which has other features along with bitcoin price', 'status': 'Ready'}]",140289,343 +8,Luigi,,1,"### Content + +over 10 years of historical exchange rate data of BRIC countries currencies/ U.S. dollar",102,"[{'ref': 'exchange.csv', 'creationDate': '2017-06-15T14:42:41Z', 'datasetRef': 'luigimersico/exchange-rate-bric-currenciesus-dollar', 'description': 'exchange rate', 'fileType': '.csv', 'name': 'exchange.csv', 'ownerRef': 'luigimersico', 'totalBytes': 9214, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'DATE;BRL/USD;RUB/USD;INR/USD;YUAN/USD', 'type': 'String', 'originalType': '', 'description': None}]}]",1407,False,False,False,2,2017-06-15T14:52:31.757Z,Unknown,Luigi,luigimersico,luigimersico/exchange-rate-bric-currenciesus-dollar,historical data monthly frequencies 01/07/1997 - 1/12/2015,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}]",Exchange rate BRIC currencies/US dollar,0,3657,https://www.kaggle.com/luigimersico/exchange-rate-bric-currenciesus-dollar,0.5294118,"[{'versionNumber': 1, 'creationDate': '2017-06-15T14:52:31.757Z', 'creatorName': 'Luigi', 'creatorRef': 'exchange-rate-bric-currenciesus-dollar', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1022,3 +9,Ulas Can Cengiz,,1,"### Context + +Here's one of the largest Crypto-Currency datasets. + + +### Content + +**1654 Coins** with *Open*, *Close*, *High*, *Low*, *Market Cap* and *Volume* values day by day since 2013. + + +### Acknowledgements + +The data is from [coinmarketcap][1] as they allow everyone to use it for academic or journalistic purposes. I definitely encourage you to check out their [terms][2] before you use the data. + + +### Inspiration + +You may use the data to understand the coin market and be creative about it. + + +### Contact + +You can find me on [Twitter][3] if you want to talk about the data and crypto-currencies in general. + + + [1]: https://coinmarketcap.com + [2]: https://coinmarketcap.com/faq + [3]: https://twitter.com/ulsc",102,"[{'ref': 'cc_histories.zip', 'creationDate': '2018-06-09T02:36:14.07Z', 'datasetRef': 'ulascengiz/price-history-of-1654-cryptocurrencies', 'description': '', 'fileType': '.zip', 'name': 'cc_histories.zip', 'ownerRef': 'ulascengiz', 'totalBytes': 19131516, 'url': 'https://www.kaggle.com/', 'columns': []}]",30652,False,False,False,0,2018-06-09T02:44:13.39Z,Other (specified in description),Ulas Can Cengiz,ulascengiz,ulascengiz/price-history-of-1654-cryptocurrencies,Historical Coin Prices to Understand the Big Picture,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}, {'ref': 'statistics', 'competitionCount': 0, 'datasetCount': 50, 'description': 'Statistics a field of mathematics where instead of saying 1+1=2, you might say ""I feel confident that 1+1 is at least 1 and no more than 3 most of the time"".', 'fullPath': 'mathematics and logic > statistics', 'isAutomatic': False, 'name': 'statistics', 'scriptCount': 103, 'totalCount': 153}, {'ref': 'forecasting', 'competitionCount': 0, 'datasetCount': 36, 'description': None, 'fullPath': 'machine learning > forecasting', 'isAutomatic': False, 'name': 'forecasting', 'scriptCount': 112, 'totalCount': 148}]",Price History of 1654 Crypto-Currencies,0,19131516,https://www.kaggle.com/ulascengiz/price-history-of-1654-cryptocurrencies,0.6875,"[{'versionNumber': 1, 'creationDate': '2018-06-09T02:44:13.39Z', 'creatorName': 'Ulas Can Cengiz', 'creatorRef': 'price-history-of-1654-cryptocurrencies', 'versionNotes': 'Initial release', 'status': 'Ready'}]",813,4 +10,wayward_artisan,,9,"### Cryptocurrencies + +Cryptocurrencies are fast becoming rivals to traditional currency across the world. The digital currencies are available to purchase in many different places, making it accessible to everyone, and with retailers accepting various cryptocurrencies it could be a sign that money as we know it is about to go through a major change. + +In addition, the blockchain technology on which many cryptocurrencies are based, with its revolutionary distributed digital backbone, has many other promising applications. Implementations of secure, decentralized systems can aid us in conquering organizational issues of trust and security that have plagued our society throughout the ages. In effect, we can fundamentally disrupt industries core to economies, businesses and social structures, eliminating inefficiency and human error. + +### Content + +The dataset contains all historical daily prices (open, high, low, close) for all cryptocurrencies listed on [CoinMarketCap]. + +### Acknowledgements + +- [Every Cryptocurrency Daily Market Price] - I initially developed kernels for this dataset before making my own scraper and dataset so that I could keep it regularly updated. +- [CoinMarketCap] - For the data + + [Every Cryptocurrency Daily Market Price]: https://www.kaggle.com/jessevent/all-crypto-currencies ""Every Cryptocurrency Daily Market Price"" + [CoinMarketCap]: https://coinmarketcap.com/ ""CoinMarketCap""",3104,"[{'ref': 'all_currencies.csv', 'creationDate': '2018-09-29T15:16:10.572Z', 'datasetRef': 'taniaj/cryptocurrency-market-history-coinmarketcap', 'description': '', 'fileType': '.csv', 'name': 'all_currencies.csv', 'ownerRef': 'taniaj', 'totalBytes': 40868354, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Market Cap', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",18281,False,False,True,8,2018-09-29T15:17:17.567Z,CC0: Public Domain,wayward_artisan,taniaj,taniaj/cryptocurrency-market-history-coinmarketcap,Daily historical prices for all cryptocurrencies listed on CoinMarketCap,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Complete Cryptocurrency Market History,1,13939281,https://www.kaggle.com/taniaj/cryptocurrency-market-history-coinmarketcap,0.7647059,"[{'versionNumber': 9, 'creationDate': '2018-09-29T15:17:17.567Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Updated with latest data', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2018-09-29T15:00:47.5Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Updated with latest data', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2018-06-03T19:01:58.633Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Updated with May 2018 data', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2018-05-05T07:57:04.583Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Updated with April market data', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2018-04-06T14:37:16.57Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Updated with current data', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2018-04-01T12:54:24.553Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Update with current data.', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-04-01T09:41:32.587Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Updated with current data.', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-03-25T08:56:20.227Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'descriptions', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-03-25T08:53:24.167Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'cryptocurrency-market-history-coinmarketcap', 'versionNotes': 'Initial release', 'status': 'Ready'}]",21360,122 +11,pmohun,,3,"**Context** + +Recent growing interest in cryptocurrencies, specifically as a speculative investment vehicle, has sparked global conversation over the past 12 months. Although this data is available across various sites, there is a lack of understanding as to what is driving the exponential rise of many individual currencies. This data set is intended to be a starting point for a detailed analysis into what is driving price action, and what can be done to predict future movement. + +**Content** + +Consolidated financial information for the top 200 cryptocurrencies by marketcap. Pulled from CoinMarketCap.com. Attributes include: + + - Currency name (e.g. bitcoin) + - Date + - Open + - High + - Low + - Close + - Volume + - Marketcap + +**Inspiration** + +For the past few months I have been searching for a reliable source for historical price information related to cryptocurrencies. I wasn't able to find anything that I could use to my liking, so I built my own data set. + +I've written a small script that scrapes historical price information for the top 200 coins by market cap as listed on CoinMarketCap.com. + +I plan to run some basic analysis on it to answer questions that I have a ""gut"" feeling about, but no quantitative evidence (yet!). + +Questions such as: + + - What is the correlation between bitcoin and alt coin prices? + - What is the average age of the top 10 coins by market cap? + - What day of the week is best to buy/sell? + - Which coins in the top two hundred are less than 6 months old? + - Which currencies are the most volatile? + - What the hell happens when we go to bed and Asia starts trading? + +Feel free to use this for your own purposes! I just ask that you share your results with the group when complete. Happy hunting!",2851,"[{'ref': 'consolidated_coin_data.csv', 'creationDate': '2019-04-25T00:36:55.911Z', 'datasetRef': 'philmohun/cryptocurrency-financial-data', 'description': 'csv file containing consolidated finanical information for the top 200 cryptocurrencies by marketcap. Pulled from CoinMarketCap.com. Attributes include:\n\nCurrency name (e.g. bitcoin)\nDate\nOpen\nHigh\nLow\nClose\nVolume\nMarketcap', 'fileType': '.csv', 'name': 'consolidated_coin_data.csv', 'ownerRef': 'philmohun', 'totalBytes': 1091855, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Currency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': 'Date refers to the calendar date for the particular row - 24 hours midnight to midnight'}, {'order': 2, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open is what the price was at the beginning of the day'}, {'order': 3, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'Highest recorded trading price of the day'}, {'order': 4, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Lowest recorded trading price of the day'}, {'order': 5, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close is what the price was at the end of the day'}, {'order': 6, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': 'Volume represents the monetary value of the currency traded in a 24 hour period, denoted in USD'}, {'order': 7, 'name': 'Market Cap', 'type': 'Uuid', 'originalType': '', 'description': 'Market cap is circulating supply x price of the coin. For example, if you have 100 coins that are worth $10 each your market cap is $1,000'}]}]",8629,False,False,True,4,2019-04-25T00:37:10.423Z,CC0: Public Domain,pmohun,philmohun,philmohun/cryptocurrency-financial-data,Top 200 Cryptocurrencies by Marketcap,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Complete Historical Cryptocurrency Financial Data,1,348672,https://www.kaggle.com/philmohun/cryptocurrency-financial-data,0.852941155,"[{'versionNumber': 3, 'creationDate': '2019-04-25T00:37:10.423Z', 'creatorName': 'pmohun', 'creatorRef': 'cryptocurrency-financial-data', 'versionNotes': 'Updated 4/24/2019', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-02-12T03:24:00.82Z', 'creatorName': 'pmohun', 'creatorRef': 'cryptocurrency-financial-data', 'versionNotes': 'Updated as of February 11th, 2018', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-01-04T18:22:57.497Z', 'creatorName': 'pmohun', 'creatorRef': 'cryptocurrency-financial-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",18864,120 +12,Sohier Dane,,1,"The Federal Reserve's H.10 statistical release provides data on exchange rates between the US dollar, 23 other currencies, and three benchmark indexes. The data extend back to 1971 for several of these. + +Please note that the csv has six header rows. The first contains the + +## Acknowledgements +This dataset was provided by the [US Federal Reserve][1]. If you need the current version, you can find their weekly updates [here][2]. + +## Inspiration + + - Venezuela is both unusually dependent on oil revenues and experiencing unusual degrees of political upheaval. Can you determine which movements in their currency were driven by changes in the oil price and which were driven by political events? + + [1]: https://www.federalreserve.gov/aboutthefed.htm + [2]: https://www.federalreserve.gov/releases/h10/Hist/",1240,"[{'ref': 'exchange_rates.csv', 'creationDate': '2017-09-05T20:29:27Z', 'datasetRef': 'federalreserve/exchange-rates', 'description': 'The data', 'fileType': '.csv', 'name': 'exchange_rates.csv', 'ownerRef': 'federalreserve', 'totalBytes': 659356, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Series Description', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'SPOT EXCHANGE RATE - EURO AREA ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'UNITED KINGDOM -- SPOT EXCHANGE RATE, US$/POUND (1/RXI_N.B.UK)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'SPOT EXCHANGE RATE - BRAZIL ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'CHINA -- SPOT EXCHANGE RATE, YUAN/US$ P.R. ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'DENMARK -- SPOT EXCHANGE RATE, KRONER/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'INDIA -- SPOT EXCHANGE RATE, RUPEES/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'JAPAN -- SPOT EXCHANGE RATE, YEN/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'KOREA -- SPOT EXCHANGE RATE, WON/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'MALAYSIA -- SPOT EXCHANGE RATE, RINGGIT/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'MEXICO -- SPOT EXCHANGE RATE, PESOS/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'NORWAY -- SPOT EXCHANGE RATE, KRONER/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'SWEDEN -- SPOT EXCHANGE RATE, KRONOR/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'SOUTH AFRICA -- SPOT EXCHANGE RATE, RAND/$US', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'SINGAPORE -- SPOT EXCHANGE RATE, SINGAPORE $/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'SWITZERLAND -- SPOT EXCHANGE RATE, FRANCS/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'TAIWAN -- SPOT EXCHANGE RATE, NT$/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'THAILAND -- SPOT EXCHANGE RATE, BAHT/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'SPOT EXCHANGE RATE - VENEZUELA ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Nominal Broad Dollar Index ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Nominal Major Currencies Dollar Index ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Nominal Other Important Trading Partners Dollar Index ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'AUSTRALIA -- SPOT EXCHANGE RATE US$/AU$ (RECIPROCAL OF RXI_N.B.AL)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'NEW ZEALAND -- SPOT EXCHANGE RATE, US$/NZ$ RECIPROCAL OF RXI_N.B.NZ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'CANADA -- SPOT EXCHANGE RATE, CANADIAN $/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'HONG KONG -- SPOT EXCHANGE RATE, HK$/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'SRI LANKA -- SPOT EXCHANGE RATE, RUPEES/US$ ', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",2343,False,False,True,13,2017-09-05T20:29:37.953Z,CC0: Public Domain,Federal Reserve,federalreserve,federalreserve/exchange-rates,Exchange rates as far back as 1971 between the USA and 23 countries,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}]",Exchange Rates,1,659356,https://www.kaggle.com/federalreserve/exchange-rates,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-09-05T20:29:37.953Z', 'creatorName': 'Sohier Dane', 'creatorRef': 'exchange-rates', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8231,30 +13,Shruti Mehta,,2,"### Context + +I really get fascinated by good quality food being served in the restaurants and would like to help community find the best cuisines around their area + +### Content + +Zomato API Analysis is one of the most useful analysis for foodies who want to taste the best cuisines of every part of the world which lies in their budget. This analysis is also for those who want to find the value for money restaurants in various parts of the country for the cuisines. Additionally, this analysis caters the needs of people who are striving to get the best cuisine of the country and which locality of that country serves that cuisines with maximum number of restaurants.♨️ + +For more information on Zomato API and Zomato API key +• Visit : https://developers.zomato.com/api#headline1 +• Data Collection: https://developers.zomato.com/documentation + +Data +Fetching the data: +• Data has been collected from the Zomato API in the form of .json files(raw data) using the url=https://developers.zomato.com/api/v2.1/search?entity_id=1&entity_type=city&start=1&count=20 +• Raw data can be seen here + +Data Collection: +Data collected can be seen as a raw .json file here + +Data Storage: +The collected data has been stored in the Comma Separated Value file Zomato.csv. Each restaurant in the dataset is uniquely identified by its Restaurant Id. Every Restaurant contains the following variables: + +• Restaurant Id: Unique id of every restaurant across various cities of the world +• Restaurant Name: Name of the restaurant +• Country Code: Country in which restaurant is located +• City: City in which restaurant is located +• Address: Address of the restaurant +• Locality: Location in the city +• Locality Verbose: Detailed description of the locality +• Longitude: Longitude coordinate of the restaurant's location +• Latitude: Latitude coordinate of the restaurant's location +• Cuisines: Cuisines offered by the restaurant +• Average Cost for two: Cost for two people in different currencies 👫 +• Currency: Currency of the country +• Has Table booking: yes/no +• Has Online delivery: yes/ no +• Is delivering: yes/ no +• Switch to order menu: yes/no +• Price range: range of price of food +• Aggregate Rating: Average rating out of 5 +• Rating color: depending upon the average rating color +• Rating text: text on the basis of rating of rating +• Votes: Number of ratings casted by people + + + + +### Acknowledgements + +I would like to thank Zomato API for helping me collecting data + + +### Inspiration +Data Processing has been done on the following categories: +Currency +City +Location +Rating Text",19144,"[{'ref': 'Country-Code.xlsx', 'creationDate': '2018-03-13T04:55:59.255Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Country codes', 'fileType': '.xlsx', 'name': 'Country-Code.xlsx', 'ownerRef': 'shrutimehta', 'totalBytes': 8783, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Country Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Country', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'file1.json', 'creationDate': '2018-03-13T04:56:26.9508117Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file1.json', 'ownerRef': 'shrutimehta', 'totalBytes': 2198732, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file2.json', 'creationDate': '2018-03-13T04:56:27.2794414Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file2.json', 'ownerRef': 'shrutimehta', 'totalBytes': 20006072, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file3.json', 'creationDate': '2018-03-13T04:56:27.7476789Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file3.json', 'ownerRef': 'shrutimehta', 'totalBytes': 15610388, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file4.json', 'creationDate': '2018-03-13T04:56:28.1226723Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file4.json', 'ownerRef': 'shrutimehta', 'totalBytes': 16427749, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file5.json', 'creationDate': '2018-03-13T04:56:28.5289496Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Country codes', 'fileType': '.json', 'name': 'file5.json', 'ownerRef': 'shrutimehta', 'totalBytes': 669503, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'zomato.csv', 'creationDate': '2018-03-13T04:56:26.6383525Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': '', 'fileType': '.csv', 'name': 'zomato.csv', 'ownerRef': 'shrutimehta', 'totalBytes': 2257316, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Restaurant ID', 'type': 'Numeric', 'originalType': '', 'description': 'Identification Number'}, {'order': 1, 'name': 'Restaurant Name', 'type': 'String', 'originalType': '', 'description': 'Name Of the Restaurant'}, {'order': 2, 'name': 'Country Code', 'type': 'Numeric', 'originalType': '', 'description': '216'}, {'order': 3, 'name': 'City', 'type': 'String', 'originalType': '', 'description': 'City Name of the Restaurant'}, {'order': 4, 'name': 'Address', 'type': 'String', 'originalType': '', 'description': ''}, {'order': 5, 'name': 'Locality', 'type': 'String', 'originalType': '', 'description': 'Shot Address Of the Restaurant'}, {'order': 6, 'name': 'Locality Verbose', 'type': 'String', 'originalType': '', 'description': 'Long Address of the Restaurant'}, {'order': 7, 'name': 'Longitude', 'type': 'Numeric', 'originalType': '', 'description': 'Longitude'}, {'order': 8, 'name': 'Latitude', 'type': 'Numeric', 'originalType': '', 'description': 'Latitude'}, {'order': 9, 'name': 'Cuisines', 'type': 'String', 'originalType': '', 'description': 'Types Of Cuisines Served'}, {'order': 10, 'name': 'Average Cost for two', 'type': 'Numeric', 'originalType': '', 'description': 'Average Cost if two people visit the Restaurant'}, {'order': 11, 'name': 'Currency', 'type': 'String', 'originalType': '', 'description': 'Dollars'}, {'order': 12, 'name': 'Has Table booking', 'type': 'String', 'originalType': '', 'description': 'Can we book tables in Restaurant? Yes/No'}, {'order': 13, 'name': 'Has Online delivery', 'type': 'String', 'originalType': '', 'description': 'Can we have online delivery ? Yes/No'}, {'order': 14, 'name': 'Is delivering now', 'type': 'String', 'originalType': '', 'description': 'Is the Restaurant delivering food now? Yes/No'}, {'order': 15, 'name': 'Switch to order menu', 'type': 'String', 'originalType': '', 'description': 'Switch to order menu ? Yes/ No'}, {'order': 16, 'name': 'Price range', 'type': 'Numeric', 'originalType': '', 'description': 'Categorized price between 1 -4'}, {'order': 17, 'name': 'Aggregate rating', 'type': 'Numeric', 'originalType': '', 'description': 'Categorizing ratings between 1-5 '}, {'order': 18, 'name': 'Rating color', 'type': 'String', 'originalType': '', 'description': 'Different colors representing Customer Rating'}, {'order': 19, 'name': 'Rating text', 'type': 'String', 'originalType': '', 'description': 'Different Rating like Excellent, Very Good ,Good, Avg., Poor, Not Rated'}, {'order': 20, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': 'No.Of Votes received by restaurant from customers.'}]}]",14506,False,False,True,54,2018-03-13T04:56:25.81Z,CC0: Public Domain,Shruti Mehta,shrutimehta,shrutimehta/zomato-restaurants-data,Analyzing the best restaurants of the major cities,"[{'ref': 'food and drink', 'competitionCount': 6, 'datasetCount': 145, 'description': ""If you love food and drink, don't look in this tag unless you want to ruin your day by learning how many calories burritos have. On the other hand, do look into these datasets and kernels for general nutrition facts, restaurant ratings, and various food and drink related reviews."", 'fullPath': 'culture and arts > culture and humanities > food and drink', 'isAutomatic': False, 'name': 'food and drink', 'scriptCount': 346, 'totalCount': 497}]",Zomato Restaurants Data,7,5732263,https://www.kaggle.com/shrutimehta/zomato-restaurants-data,0.7941176,"[{'versionNumber': 2, 'creationDate': '2018-03-13T04:56:25.81Z', 'creatorName': 'Shruti Mehta', 'creatorRef': 'zomato-restaurants-data', 'versionNotes': 'Added file Country codes', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-03-01T00:22:41.227Z', 'creatorName': 'Shruti Mehta', 'creatorRef': 'zomato-restaurants-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",95192,368 +14,beluga,,36,"### Context + +Numer.ai tournament results + + +### Acknowledgements + +1. The dataset was collected with [NumerApi](https://github.com/uuazed/numerapi) +2. The daily currency info is from [CoinMarketCap](https://coinmarketcap.com/currencies/numeraire/) + +Photo by Alex Knight on Unsplash",98,"[{'ref': 'CoinMarketCapNMR', 'creationDate': '2019-07-01T08:29:45.707Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '', 'name': 'CoinMarketCapNMR', 'ownerRef': 'gaborfodor', 'totalBytes': 36185, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'T126_competitions.csv', 'creationDate': '2019-07-01T08:29:53.7956896Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T126_competitions.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 3144, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'datasetId', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'openTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'participants', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'prizePoolNmr', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'prizePoolUsd', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'resolveTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'resolvedGeneral', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'resolvedStaking', 'type': 'Boolean', 'originalType': '', 'description': None}]}, {'ref': 'T126_leaderboards.csv', 'creationDate': '2019-07-01T08:29:54.1394498Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T126_leaderboards.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 9678481, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'tournament_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tournament_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'validationLogloss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'consistency', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'liveLogloss', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'originality.value', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'paymentStaking.nmrAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'paymentStaking.usdAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 10, 'name': 'stakeResolution.destroyed', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 11, 'name': 'stakeResolution.paid', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'stakeResolution.successful', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 13, 'name': 'totalPayments.nmrAmount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'totalPayments.usdAmount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'concordance.value', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 16, 'name': 'better_than_random', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 17, 'name': 'better_than_threshold', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 18, 'name': 'stake.confidence', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'stake.insertedAt', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 20, 'name': 'stake.value', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'T126_user_candidate_features.csv', 'creationDate': '2019-07-01T08:29:54.420392Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T126_user_candidate_features.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 64496896, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'user_name_x', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'user_name_y', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'round_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'l1_std_diff', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'l1_rank_diff', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'round_match', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'staking_round_match', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'round_chi2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'staking_round_chi2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'corr_cons', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'corr_vll', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'corr_lll', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'corr_of', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'median_stake_time_diff', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'median_submission_time_diff', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'prediction', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'T126_user_submission_info.csv', 'creationDate': '2019-07-01T08:29:54.667231Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T126_user_submission_info.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 6694548, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'roundNumber', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'submission.date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'submission.originality', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 3, 'name': 'submission.validationLogloss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'tournament', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'tournament_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'T137_competitions.csv', 'creationDate': '2019-07-01T08:29:54.9051185Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T137_competitions.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 4178, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'datasetId', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'openTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'participants', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'prizePoolNmr', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'prizePoolUsd', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'resolveTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'resolvedGeneral', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'resolvedStaking', 'type': 'Boolean', 'originalType': '', 'description': None}]}, {'ref': 'T137_leaderboards.csv', 'creationDate': '2019-07-01T08:29:55.1429266Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T137_leaderboards.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 12936868, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'tournament_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tournament_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'validationLogloss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'consistency', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'liveLogloss', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'paymentStaking.nmrAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 8, 'name': 'paymentStaking.usdAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'stakeResolution.destroyed', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 10, 'name': 'stakeResolution.paid', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'stakeResolution.successful', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 12, 'name': 'totalPayments.nmrAmount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'totalPayments.usdAmount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'concordance.value', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 15, 'name': 'better_than_random', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 16, 'name': 'better_than_threshold', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 17, 'name': 'stake.confidence', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'stake.insertedAt', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 19, 'name': 'stake.value', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'T156_competitions.csv', 'creationDate': '2019-07-01T08:29:55.4018368Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T156_competitions.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 6534, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'datasetId', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'openTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'participants', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'prizePoolNmr', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'prizePoolUsd', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'resolveTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'resolvedGeneral', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'resolvedStaking', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 9, 'name': 'ruleset', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'T156_leaderboards.csv', 'creationDate': '2019-07-01T08:29:55.6964776Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T156_leaderboards.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 18358940, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'tournament_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tournament_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'validationLogloss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'consistency', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'liveLogloss', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'paymentStaking.nmrAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 8, 'name': 'paymentStaking.usdAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'stakeResolution.destroyed', 'type': None, 'originalType': '', 'description': None}, {'order': 10, 'name': 'stakeResolution.paid', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'stakeResolution.successful', 'type': None, 'originalType': '', 'description': None}, {'order': 12, 'name': 'concordance.value', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 13, 'name': 'better_than_random', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 14, 'name': 'better_than_threshold', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 15, 'name': 'stake.confidence', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'stake.insertedAt', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 17, 'name': 'stake.value', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'T166_competitions.csv', 'creationDate': '2019-07-01T08:29:31.021Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T166_competitions.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 7536, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'datasetId', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'openTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'participants', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'prizePoolNmr', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'prizePoolUsd', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'resolveTime', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'resolvedGeneral', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'resolvedStaking', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 9, 'name': 'ruleset', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'T166_leaderboards.csv', 'creationDate': '2019-07-01T08:29:22.885Z', 'datasetRef': 'gaborfodor/meta-numerai', 'description': '', 'fileType': '.csv', 'name': 'T166_leaderboards.csv', 'ownerRef': 'gaborfodor', 'totalBytes': 32707769, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'number', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'tournament_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tournament_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'validationLogloss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'consistency', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'liveLogloss', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'paymentStaking.nmrAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 8, 'name': 'paymentStaking.usdAmount', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'stakeResolution.destroyed', 'type': None, 'originalType': '', 'description': None}, {'order': 10, 'name': 'stakeResolution.paid', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'stakeResolution.successful', 'type': None, 'originalType': '', 'description': None}, {'order': 12, 'name': 'concordance.value', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 13, 'name': 'liveAuroc', 'type': None, 'originalType': '', 'description': None}, {'order': 14, 'name': 'paymentGeneral', 'type': None, 'originalType': '', 'description': None}, {'order': 15, 'name': 'paymentStaking', 'type': None, 'originalType': '', 'description': None}, {'order': 16, 'name': 'stakeResolution', 'type': None, 'originalType': '', 'description': None}, {'order': 17, 'name': 'submissionId', 'type': None, 'originalType': '', 'description': None}, {'order': 18, 'name': 'validationAuroc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'better_than_random', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 20, 'name': 'better_than_threshold', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 21, 'name': 'stake.confidence', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'stake.insertedAt', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 23, 'name': 'stake.value', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",29393,False,False,False,11,2019-07-01T08:29:53.457Z,CC0: Public Domain,beluga,gaborfodor,gaborfodor/meta-numerai,Numerai Tournament Results,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}]",Meta Numerai,0,41912215,https://www.kaggle.com/gaborfodor/meta-numerai,0.7058824,"[{'versionNumber': 36, 'creationDate': '2019-07-01T08:29:53.457Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T166', 'status': 'Ready'}, {'versionNumber': 35, 'creationDate': '2019-04-24T13:57:40.623Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T156', 'status': 'Ready'}, {'versionNumber': 34, 'creationDate': '2019-04-17T15:03:47.97Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T155 resolved', 'status': 'Ready'}, {'versionNumber': 33, 'creationDate': '2019-04-10T13:21:56.92Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T154', 'status': 'Ready'}, {'versionNumber': 32, 'creationDate': '2019-03-27T15:54:21.173Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T148 resolved', 'status': 'Ready'}, {'versionNumber': 31, 'creationDate': '2019-03-19T20:40:33.69Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T151', 'status': 'Ready'}, {'versionNumber': 30, 'creationDate': '2019-03-05T19:47:25.503Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T145 resolved', 'status': 'Ready'}, {'versionNumber': 29, 'creationDate': '2019-02-20T16:15:25.46Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T143 resolved', 'status': 'Ready'}, {'versionNumber': 28, 'creationDate': '2019-02-13T17:32:57.603Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T142 fix', 'status': 'Ready'}, {'versionNumber': 27, 'creationDate': '2019-02-13T14:37:19.543Z', 'creatorName': 'beluga', 'creatorRef': 'meta-numerai', 'versionNotes': 'T142 resolved', 'status': 'Ready'}]",1232,11 +15,Anas Shahid,,1,"### Context + +Historical data for crypto currencies. + + +### Content + +The dataset contains historical data of the last 5 years (1-May-13 to 8-May-18) from CoinMarketCap of the following crypto currencies. + + - Bitcoin + - Ethereum + - Lite coin + - Ripple + - Verge + - Bitcoin Cash + - Ethereum Classic + - Neo + - Nano + - Dash + - EOS + - IOTA + - Tron + - Stellar + +**Note: ** For the coins not older than 5 years, the dataset contains the data from their listing on CoinMarketCap + +### Acknowledgements + +The data has been scraped from **CoinMarketCap** + + +### Inspiration + +Trend Analysis for currencies. +Symptoms of price change. +Reason of price crash. +Growth rate and possible market leader.",163,"[{'ref': 'CoinMarketData-bitcoin-cash.csv', 'creationDate': '2018-05-08T14:37:33.817Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-bitcoin-cash.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 23881, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-bitcoin.csv', 'creationDate': '2018-05-08T14:37:33.303Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-bitcoin.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 140915, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-dash.csv', 'creationDate': '2018-05-08T14:37:33.742Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-dash.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 98715, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-eos.csv', 'creationDate': '2018-05-08T14:37:35.266Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-eos.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 21334, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-ethereum-classic.csv', 'creationDate': '2018-05-08T14:37:32.579Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-ethereum-classic.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 43890, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-ethereum.csv', 'creationDate': '2018-05-08T14:37:34.211Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-ethereum.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 71393, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-iota.csv', 'creationDate': '2018-05-08T14:37:34.213Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-iota.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 24160, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-litecoin.csv', 'creationDate': '2018-05-08T14:37:32.564Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-litecoin.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 115574, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-nano.csv', 'creationDate': '2018-05-08T14:37:33.43Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-nano.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 29145, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-neo.csv', 'creationDate': '2018-05-08T14:37:32.562Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-neo.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 42484, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-ripple.csv', 'creationDate': '2018-05-08T14:37:34.552Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-ripple.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 133053, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-stellar.csv', 'creationDate': '2018-05-08T14:37:33.161Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-stellar.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 103491, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-tron.csv', 'creationDate': '2018-05-08T14:37:33.359Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-tron.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 18868, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CoinMarketData-verge.csv', 'creationDate': '2018-05-08T14:37:33.242Z', 'datasetRef': 'anasshahid88/crypto-market-data', 'description': '', 'fileType': '.csv', 'name': 'CoinMarketData-verge.csv', 'ownerRef': 'anasshahid88', 'totalBytes': 90968, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",25711,False,False,False,0,2018-05-08T14:38:02.187Z,CC0: Public Domain,Anas Shahid,anasshahid88,anasshahid88/crypto-market-data,CoinMarketCap data from 1/May/13 to 8/5/18 of popular crypto currencies,"[{'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}, {'ref': 'marketing analytics', 'competitionCount': 0, 'datasetCount': 29, 'description': None, 'fullPath': 'analysis > marketing analytics', 'isAutomatic': False, 'name': 'marketing analytics', 'scriptCount': 46, 'totalCount': 75}, {'ref': 'timelines', 'competitionCount': 1, 'datasetCount': 12, 'description': 'A timeline is a display of a list of events in chronological order. It is typically a graphic design showing a long bar labelled with dates alongside itself and usually events.', 'fullPath': 'history and events > historiography > timelines', 'isAutomatic': False, 'name': 'timelines', 'scriptCount': 7, 'totalCount': 20}]",Crypto Market Data,0,313499,https://www.kaggle.com/anasshahid88/crypto-market-data,0.647058845,"[{'versionNumber': 1, 'creationDate': '2018-05-08T14:38:02.187Z', 'creatorName': 'Anas Shahid', 'creatorRef': 'crypto-market-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",956,3 +16,Megan Risdal,,4,"## Context + +Bitcoin and other cryptocurrencies have captured the imagination of technologists, financiers, and economists. Digital currencies are only one application of the underlying blockchain technology. Like its predecessor, Bitcoin, the [Ethereum][1] blockchain can be described as an immutable distributed ledger. However, creator Vitalik Buterin also extended the set of capabilities by including a virtual machine that can execute arbitrary code stored on the blockchain as smart contracts. + +Both Bitcoin and Ethereum are essentially [OLTP][2] databases, and provide little in the way of [OLAP][3] (analytics) functionality. However the Ethereum dataset is notably distinct from the Bitcoin dataset: + +* The Ethereum blockchain has as its primary unit of value Ether, while the Bitcoin blockchain has Bitcoin. However, the majority of value transfer on the Ethereum blockchain is composed of so-called tokens. Tokens are created and managed by smart contracts. + +* Ether value transfers are precise and direct, resembling accounting ledger debits and credits. This is in contrast to the Bitcoin value transfer mechanism, for which it can be difficult to determine the balance of a given wallet address. + +* Addresses can be not only wallets that hold balances, but can also contain smart contract bytecode that allows the programmatic creation of agreements and automatic triggering of their execution. An aggregate of coordinated smart contracts could be used to build a [decentralized autonomous organization][4]. + +## Content + +The Ethereum blockchain data are now available for exploration with BigQuery. All historical data are in the [`ethereum_blockchain dataset`][5], which updates daily. + +Our hope is that by making the data on public blockchain systems more readily available it promotes technological innovation and increases societal benefits. + +## Querying BigQuery tables + +You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at `bigquery-public-data.crypto_ethereum.[TABLENAME]`. **[Fork this kernel to get started][6]**. + +## Acknowledgements + +[Cover photo by Thought Catalog][7] on Unsplash + +## Inspiration + +* What are the most popularly exchanged digital tokens, represented by ERC-721 and ERC-20 smart contracts? +* Compare transaction volume and transaction networks over time +* Compare transaction volume to historical prices by joining with other available data sources like [Bitcoin Historical Data][8] + + + [1]: https://ethereum.org/ + [2]: https://en.wikipedia.org/wiki/Online_transaction_processing + [3]: https://en.wikipedia.org/wiki/Online_analytical_processing + [4]: https://en.wikipedia.org/wiki/Decentralized_autonomous_organization + [5]: https://bigquery.cloud.google.com/dataset/bigquery-public-data:ethereum_blockchain + [6]: https://www.kaggle.com/mrisdal/visualizing-average-ether-costs-over-time + [7]: https://unsplash.com/photos/bj8U389A9N8 + [8]: https://www.kaggle.com/bigquery/bitcoin-blockchain",0,[],41998,False,False,True,20,2019-03-04T14:57:55.953Z,CC0: Public Domain,Google BigQuery,bigquery,bigquery/ethereum-blockchain,Complete live historical Ethereum blockchain data (BigQuery),"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}, {'ref': 'bigquery', 'competitionCount': 0, 'datasetCount': 61, 'description': None, 'fullPath': 'data type > bigquery', 'isAutomatic': False, 'name': 'bigquery', 'scriptCount': 311, 'totalCount': 372}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Ethereum Blockchain,3,910127001043,https://www.kaggle.com/bigquery/ethereum-blockchain,0.7058824,"[{'versionNumber': 4, 'creationDate': '2019-03-04T14:57:55.953Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'ethereum-blockchain', 'versionNotes': 'Auto Updated', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2019-02-12T00:41:49.753Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'ethereum-blockchain', 'versionNotes': 'Auto Updated', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-09-05T09:15:05.793Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'ethereum-blockchain', 'versionNotes': 'Auto Updated', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-08-08T17:13:51.22Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'ethereum-blockchain', 'versionNotes': 'Initial release', 'status': 'Ready'}]",29626,85 +17,inaba,,1,"### Context + +I made this dataset for Coursera assignment ([Applied Plotting, Charting & Data Representation in Python](https://www.coursera.org/learn/python-plotting)). + +### Content + +Price transition of crypto-currencies in 2017. +These data were downloaded via Poloniex API.",149,"[{'ref': 'CHART_DATA_ALTCOINS_2017.csv', 'creationDate': '2017-12-31T15:01:05.211Z', 'datasetRef': 'minaba/bitcoin-altcoins-in-2017', 'description': '', 'fileType': '.csv', 'name': 'CHART_DATA_ALTCOINS_2017.csv', 'ownerRef': 'minaba', 'totalBytes': 2303633, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ticker', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'high', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'quoteVolume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'weightedAverage', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CHART_DATA_BITCOIN_2017.csv', 'creationDate': '2017-12-31T15:00:47.697Z', 'datasetRef': 'minaba/bitcoin-altcoins-in-2017', 'description': '', 'fileType': '.csv', 'name': 'CHART_DATA_BITCOIN_2017.csv', 'ownerRef': 'minaba', 'totalBytes': 40893, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ticker', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'high', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'quoteVolume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'weightedAverage', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",8346,False,False,False,3,2017-12-31T15:01:20.877Z,CC BY-SA 4.0,inaba,minaba,minaba/bitcoin-altcoins-in-2017,Price transition of bitcoin and altcoins in 2017,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}]",Bitcoin & Altcoins in 2017,0,803789,https://www.kaggle.com/minaba/bitcoin-altcoins-in-2017,0.7058824,"[{'versionNumber': 1, 'creationDate': '2017-12-31T15:01:20.877Z', 'creatorName': 'inaba', 'creatorRef': 'bitcoin-altcoins-in-2017', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1300,4 +18,Anton Savchenko,,4,"### Context + +I have generated this set of auxilary tables to complement the [dataset of Kickstarter projects][1] with the focus on videogames. + +### Content + +Currently the set contains three tables: + +**SteamSpy** table contains aggregate information on released games tracked by SteamSpy + +**KSreleased** table links the Steam appid's with Kickstarter project IDs for those KS games, that after a successful campaign were finished and released on Steam + +**Currencies** table shows historical currency exchange rates to USD($) for each week since the earliest campaign deadline among those in KSreleased + +### Acknowledgements + +SteamSpy table was created using the site's [API][2] and I would like to take this opportunity to praise the site's creator **Sergey Galyonkin** + +KSreleased table was generated by crawling [Kickstarter ""Play now"" pages][3] + +Currencies table was generated using Fixer.io [API][4] + +If you would like to know the details/see the code that I wrote to generate the data, I uploaded it as the ""DEMO: generate data"" kernel. It won't work online (otherwise I wouldn't have the need to create the dataset in the first place), but you can download the notebook and run it locally or just check my poor coding style :) + +### Inspiration + +I intend to finalize my analysis on KS games that were released on Steam and publish it here, but of course I would like you to find more uses for this data beyond what I would have thought of. And again, I don't think this dataset is useful on its own, so please don't forget to connect to the [KS projects dataset][1] by Kemical + + + [1]: https://www.kaggle.com/kemical/kickstarter-projects + [2]: http://steamspy.com/api.php + [3]: https://www.kickstarter.com/play + [4]: http://fixer.io/",181,"[{'ref': 'KS-Steam-Connection-201801.sqlite', 'creationDate': '2018-01-21T23:53:12.438Z', 'datasetRef': 'tonyplaysguitar/steam-spy-data-from-api-request', 'description': ""Currently the set contains three tables:\n\n**SteamSpy** table contains aggregate information on released games tracked by SteamSpy\n\n**KSreleased** table links the Steam appid's with Kickstarter project IDs for those KS games, that after a successful campaign were finished and released on Steam \n\n**Currencies** table shows historical currency exchange rates to USD($) for each week since the earliest campaign deadline among those in KSreleased"", 'fileType': '.sqlite', 'name': 'KS-Steam-Connection-201801.sqlite', 'ownerRef': 'tonyplaysguitar', 'totalBytes': 1966080, 'url': 'https://www.kaggle.com/', 'columns': []}]",8969,False,False,False,2,2018-01-21T23:54:08.17Z,CC0: Public Domain,Anton Savchenko,tonyplaysguitar,tonyplaysguitar/steam-spy-data-from-api-request,A dataset collected from Kickstarter and SteamSpy,"[{'ref': 'video games', 'competitionCount': 1, 'datasetCount': 135, 'description': 'Video games were originally created to prevent people from going to college and getting good jobs. That back-fired and now we have data centers full of GPUs training models to tell the difference between cats and dogs. All thanks to gamers.', 'fullPath': 'culture and arts > games and toys > video games', 'isAutomatic': False, 'name': 'video games', 'scriptCount': 203, 'totalCount': 339}, {'ref': 'crowdfunding', 'competitionCount': 1, 'datasetCount': 19, 'description': None, 'fullPath': 'society and social sciences > society > finance > crowdfunding', 'isAutomatic': False, 'name': 'crowdfunding', 'scriptCount': 40, 'totalCount': 60}]",Kickstarter videogames released on Steam,0,1080727,https://www.kaggle.com/tonyplaysguitar/steam-spy-data-from-api-request,0.875,"[{'versionNumber': 4, 'creationDate': '2018-01-21T23:54:08.17Z', 'creatorName': 'Anton Savchenko', 'creatorRef': 'steam-spy-data-from-api-request', 'versionNotes': 'Added currency exchange rates table to determine KS USD pledge values', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-01-13T09:10:47.783Z', 'creatorName': 'Anton Savchenko', 'creatorRef': 'steam-spy-data-from-api-request', 'versionNotes': 'Minor update - removed duplicate entries', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-01-12T13:27:23.903Z', 'creatorName': 'Anton Savchenko', 'creatorRef': 'steam-spy-data-from-api-request', 'versionNotes': 'Added a table linking Kickstarter project ID with steam appID for KS games released on Steam', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-01-08T09:22:50.38Z', 'creatorName': 'Anton Savchenko', 'creatorRef': 'steam-spy-data-from-api-request', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1705,5 +19,Kâzım Anıl Eren,,3,"# Kaggle Challenge: Predict Future Sales. +This dataset aims to publish the files that I will use on the Kaggle challenge called [Predict Future Sales](https://www.kaggle.com/c/competitive-data-science-predict-future-sales) + +# Data +- I have downloaded **test** and **train** data from the [competition webpage](https://www.kaggle.com/c/competitive-data-science-predict-future-sales/data). +- I have downloaded **shop** and **item** information data from the English translations of [@deargle](https://www.kaggle.com/deargle) from [this post](https://www.kaggle.com/c/competitive-data-science-predict-future-sales/discussion/54949). Then I have made some changes in the data described in this [R file](https://github.com/kazimanil/predict-future-sales/blob/master/data-manipulation-once-used.R). +- I have collected historical **USD/RUB** rates from [Investing.com](https://www.investing.com/currencies/usd-rub-historical-data). I have used the most recent data for the days which does not include a rate info (i.e. Saturdays and Sundays which markets are closed). +- I have prepared a calendar depicting public holidays and weekends. Public Holiday info for Russia is collected from [this site](https://www.officeholidays.com/countries/russia/).",243,"[{'ref': 'calendar.csv', 'creationDate': '2018-05-10T13:07:41.1576836Z', 'datasetRef': 'kazimanil/predict-future-sales-supplementary', 'description': 'I have prepared a calendar showing public holidays and weekends. Public Holiday info for Russia is collected from [this site](https://www.officeholidays.com/countries/russia/).', 'fileType': '.csv', 'name': 'calendar.csv', 'ownerRef': 'kazimanil', 'totalBytes': 16446, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'holiday', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'weekend', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'item_category.csv', 'creationDate': '2018-05-10T13:07:41.548274Z', 'datasetRef': 'kazimanil/predict-future-sales-supplementary', 'description': 'I have downloaded shop and item information data from the English translations of [@deargle](https://www.kaggle.com/deargle) from [this post](https://www.kaggle.com/c/competitive-data-science-predict-future-sales/discussion/54949). Then I have made some changes in the data described in [this R file](https://github.com/kazimanil/predict-future-sales/blob/master/data-manipulation-once-used.R).', 'fileType': '.csv', 'name': 'item_category.csv', 'ownerRef': 'kazimanil', 'totalBytes': 1500032, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'item_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'item_name_translated', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'item_cat1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'item_cat2', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'shops-translated.csv', 'creationDate': '2018-05-10T13:07:18.278Z', 'datasetRef': 'kazimanil/predict-future-sales-supplementary', 'description': 'I have downloaded shop and item information data from the English translations of [@deargle](https://www.kaggle.com/deargle) from [this post](https://www.kaggle.com/c/competitive-data-science-predict-future-sales/discussion/54949). Then I have made some changes in the data described in [this R file](https://github.com/kazimanil/predict-future-sales/blob/master/data-manipulation-once-used.R).', 'fileType': '.csv', 'name': 'shops-translated.csv', 'ownerRef': 'kazimanil', 'totalBytes': 1841, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'usd-rub.csv', 'creationDate': '2018-05-10T13:07:41.8764303Z', 'datasetRef': 'kazimanil/predict-future-sales-supplementary', 'description': 'I have collected historical USD/RUB rates from [Investing.com](https://www.investing.com/currencies/usd-rub-historical-data). I have used the most recent data for the days which does not include a rate info (i.e. Saturdays and Sundays which markets are closed).', 'fileType': '.csv', 'name': 'usd-rub.csv', 'ownerRef': 'kazimanil', 'totalBytes': 20459, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'cur_rate', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",24159,False,False,False,4,2018-05-10T13:07:40.25Z,"Database: Open Database, Contents: Database Contents",Kâzım Anıl Eren,kazimanil,kazimanil/predict-future-sales-supplementary,Dataset provides some supplementary data for Predict Future Sales challenge.,"[{'ref': 'future prediction', 'competitionCount': 12, 'datasetCount': 54, 'description': None, 'fullPath': 'problem type > future prediction', 'isAutomatic': False, 'name': 'future prediction', 'scriptCount': 80, 'totalCount': 146}]",Predict Future Sales Supplementary,0,354256,https://www.kaggle.com/kazimanil/predict-future-sales-supplementary,0.7647059,"[{'versionNumber': 3, 'creationDate': '2018-05-10T13:07:40.25Z', 'creatorName': 'Kâzım Anıl Eren', 'creatorRef': 'predict-future-sales-supplementary', 'versionNotes': 'bugfix on csv.', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-05-10T13:02:48.543Z', 'creatorName': 'Kâzım Anıl Eren', 'creatorRef': 'predict-future-sales-supplementary', 'versionNotes': 'Shop21 converted from ""Other"" to ""TC""', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-04-28T10:17:52.617Z', 'creatorName': 'Kâzım Anıl Eren', 'creatorRef': 'predict-future-sales-supplementary', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1695,7 +20,Amandeep Rathee,,3,"# Context + +The **demonetization of ₹500 and ₹1000** banknotes was a step taken by the **Government of India** on 8 November 2016, ceasing the usage of all ₹500 and ₹1000 banknotes of the Mahatma Gandhi Series as a form of legal tender in India from 9 November 2016. + +The announcement was made by the Prime Minister of India **Narendra Modi** in an unscheduled live televised address to the nation at 20:15 Indian Standard Time (IST) the same day. In the announcement, Modi declared circulation of all ₹500 and ₹1000 banknotes of the Mahatma Gandhi Series as invalid and announced the issuance of new ₹500 and ₹2000 banknotes of the Mahatma Gandhi New Series in exchange for the old banknotes. + +# Content + +The data contains 6000 most recent tweets on #demonetization. There are 6000 rows(one for each tweet) and 14 columns. + +## Metadata: + +* Text (Tweets) +* favorited +* favoriteCount +* replyToSN +* created +* truncated +* replyToSID +* id +* replyToUID +* statusSource +* screenName +* retweetCount +* isRetweet +* retweeted + +# Acknowledgement + +The data was collected using the **""twitteR""** package in R using the twitter API. + +# Past Research + +I have performed my own analysis on the data. I only did a sentiment analysis and formed a word cloud. + +[Click here to see the analysis on GitHub](https://github.com/arathee2/demonetization-india/blob/master/demonetization-sentiment-analysis.md) + +# Inspiration + +* What percentage of tweets are negative, positive or neutral ? +* What are the most famous/re-tweeted tweets ?",4783,"[{'ref': 'demonetization-tweets.csv', 'creationDate': '2017-04-21T17:34:14Z', 'datasetRef': 'arathee2/demonetization-in-india-twitter-data', 'description': '14940 rows and 15 columns', 'fileType': '.csv', 'name': 'demonetization-tweets.csv', 'ownerRef': 'arathee2', 'totalBytes': 990156, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Numeric ID'}, {'order': 1, 'name': 'X', 'type': 'Numeric', 'originalType': 'String', 'description': 'Tweet'}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'favorited', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 4, 'name': 'favoriteCount', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'replyToSN', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'created', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'truncated', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'replyToSID', 'type': 'String', 'originalType': 'Numeric', 'description': 'Twitter ID of the tweet'}, {'order': 9, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'replyToUID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'statusSource', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'screenName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweetCount', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'isRetweet', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 15, 'name': 'retweeted', 'type': 'Boolean', 'originalType': '', 'description': None}]}]",430,False,False,True,171,2017-04-21T17:35:02.253Z,Unknown,Amandeep Rathee,arathee2,arathee2/demonetization-in-india-twitter-data,Data extracted from Twitter regarding the recent currency demonetization,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'human-computer interaction', 'competitionCount': 0, 'datasetCount': 35, 'description': 'Human computer interaction is the research of the design and use of computer technology, focused on the interfaces between users and computers.', 'fullPath': 'technology and applied sciences > computing > human-computer interaction', 'isAutomatic': False, 'name': 'human-computer interaction', 'scriptCount': 6, 'totalCount': 41}]",Demonetization in India Twitter Data,4,990156,https://www.kaggle.com/arathee2/demonetization-in-india-twitter-data,0.7352941,"[{'versionNumber': 3, 'creationDate': '2017-04-21T17:35:02.253Z', 'creatorName': 'Amandeep Rathee', 'creatorRef': 'demonetization-in-india-twitter-data', 'versionNotes': 'Added 6940 more tweets. Now the data set has almost 15000 tweets.', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2016-11-23T19:12:32.853Z', 'creatorName': 'Amandeep Rathee', 'creatorRef': 'demonetization-in-india-twitter-data', 'versionNotes': 'Added 2000 more tweets.', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2016-11-23T18:13:30.257Z', 'creatorName': 'Amandeep Rathee', 'creatorRef': 'demonetization-in-india-twitter-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",41844,104 +21,Michal Januszewski,,2,"# Context + +I've always wanted to have a proper sample Forex currency rates dataset for testing purposes, so I've created one. + + +# Content + +The data contains Forex EURUSD currency rates in 15-minute slices (OHLC - Open High Low Close, and Volume). BID price only. Spread is *not provided*, so be careful. + +(Quick reminder: Bid price + Spread = Ask price) + +The dates are in the yyyy-mm-dd hh:mm format, GMT. Volume is in Units. + +# Acknowledgements + +Dukascopy Bank SA +https://www.dukascopy.com/swiss/english/marketwatch/historical/ + +# Inspiration + +Just would like to see if there is still an way to beat the current Forex market conditions, with the prop traders' advanced automatic algorithms running in the wild.",1460,"[{'ref': 'EURUSD_15m_BID_01.01.2010-31.12.2016.csv', 'creationDate': '2017-02-22T14:40:08Z', 'datasetRef': 'meehau/EURUSD', 'description': ""New version - changed time format, changed column name to 'Time'"", 'fileType': '.csv', 'name': 'EURUSD_15m_BID_01.01.2010-31.12.2016.csv', 'ownerRef': 'meehau', 'totalBytes': 3296077, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'EURUSD_15m_BID_sample.csv', 'creationDate': '2017-02-22T14:39:38Z', 'datasetRef': 'meehau/EURUSD', 'description': 'Sample file with some data, reduced size for faster prototyping', 'fileType': '.csv', 'name': 'EURUSD_15m_BID_sample.csv', 'ownerRef': 'meehau', 'totalBytes': 859766, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",867,False,False,True,12,2017-02-22T14:42:13.003Z,CC BY-NC-SA 4.0,Michal Januszewski,meehau,meehau/EURUSD,"FOREX currency rates data for EURUSD, 15 minute candles, BID, years 2010-2016","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",EURUSD - 15m - 2010-2016,3,3494511,https://www.kaggle.com/meehau/EURUSD,0.8235294,"[{'versionNumber': 2, 'creationDate': '2017-02-22T14:42:13.003Z', 'creatorName': 'Michal Januszewski', 'creatorRef': 'EURUSD', 'versionNotes': ""Changed the datetime format (yyyy-mm-dd hh:mm), changed column name to 'Time', created a smaller sample file for testing purposes and faster prototyping"", 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-02-22T13:05:48.82Z', 'creatorName': 'Michal Januszewski', 'creatorRef': 'EURUSD', 'versionNotes': 'Initial release', 'status': 'Ready'}]",10674,47 +22,Sebastian,,2,"This dataset contains the daily currency exchange rates as reported to the *International Monetary Fund* by the issuing central bank. Included are 51 currencies over the period from 01-01-1995 to 11-04-2018. + +The format is known as *currency units per U.S. Dollar*. Explained by example, each rate in the *Euro* column says how much *U.S. Dollar* you had to pay at a certain date to buy 1 Euro. Hence, the rates in the column *U.S. Dollar* are always `1`.",521,"[{'ref': 'currency_exchange_rates_02-01-1995_-_02-05-2018.csv', 'creationDate': '2018-05-02T17:48:05.084Z', 'datasetRef': 'thebasss/currency-exchange-rates', 'description': '', 'fileType': '.csv', 'name': 'currency_exchange_rates_02-01-1995_-_02-05-2018.csv', 'ownerRef': 'thebasss', 'totalBytes': 1785624, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Algerian Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Australian Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Bahrain Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Bolivar Fuerte', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Botswana Pula', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Brazilian Real', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Brunei Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Canadian Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Chilean Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Chinese Yuan', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Colombian Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Czech Koruna', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Danish Krone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Euro', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Hungarian Forint', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Icelandic Krona', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Indian Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Indonesian Rupiah', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Iranian Rial', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Israeli New Sheqel', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Japanese Yen', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Kazakhstani Tenge', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'Korean Won', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Kuwaiti Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Libyan Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Malaysian Ringgit', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Mauritian Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Mexican Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Nepalese Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'New Zealand Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'Norwegian Krone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'Nuevo Sol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Pakistani Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Peso Uruguayo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Philippine Peso', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Polish Zloty', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Qatar Riyal', 'type': 'String', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Rial Omani', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Russian Ruble', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'Saudi Arabian Riyal', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Singapore Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'South African Rand', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'Sri Lanka Rupee', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Swedish Krona', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'Swiss Franc', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'Thai Baht', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'Trinidad And Tobago Dollar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'Tunisian Dinar', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'U.A.E. Dirham', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'U.K. Pound Sterling', 'type': 'String', 'originalType': '', 'description': None}, {'order': 51, 'name': 'U.S. Dollar', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",20872,False,False,False,0,2018-05-02T17:48:28.943Z,CC0: Public Domain,Sebastian,thebasss,thebasss/currency-exchange-rates,Daily exchange rates for 51 currencies from 1995 to 2018,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",Currency Exchange Rates,1,596854,https://www.kaggle.com/thebasss/currency-exchange-rates,0.647058845,"[{'versionNumber': 2, 'creationDate': '2018-05-02T17:48:28.943Z', 'creatorName': 'Sebastian', 'creatorRef': 'currency-exchange-rates', 'versionNotes': 'Adding data for April 2018', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-04-11T08:28:55.873Z', 'creatorName': 'Sebastian', 'creatorRef': 'currency-exchange-rates', 'versionNotes': 'Initial release', 'status': 'Ready'}]",2601,21 +23,Sudhir Kumar,,4,"### Context + +The data set consist currency exchange rate of different countries since 1950. + +### Content + +Exchange rates are defined as the price of one country's' currency in relation to another. Exchange rates may be expressed as the average rate for a period of time or as the rate at the end of the period. Exchange rates are classified by the International Monetary Fund in three broad categories, reflecting the role of the authorities in the determination of the exchange rates and/or the multiplicity of exchange rates in a country: the market rate, in which the rate ""floats"" and is largely set by market forces; the official rate, in which the rate is ""fixed"" by a country's authorities; and arrangements falling between the two, in which the rate holds a stable value against another currency or a composite of currencies. This indicator is measured in terms of national currency per US dollar. + +### Acknowledgements +* [ source :](https://data.oecd.org/conversion/exchange-rates.htm) +* [ Purchasing power of currency : wiki](https://en.wikipedia.org/wiki/Exchange_rate) +### Inspiration: +What is exchange rate variation by year? + +",182,"[{'ref': 'currency_exchange_rate.csv', 'creationDate': '2018-02-27T16:33:40.1319577Z', 'datasetRef': 'sudhirnl7/currency-excahnge-rate', 'description': '', 'fileType': '.csv', 'name': 'currency_exchange_rate.csv', 'ownerRef': 'sudhirnl7', 'totalBytes': 99593, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'LOCATION', 'type': 'String', 'originalType': '', 'description': 'myr'}, {'order': 2, 'name': 'TIME', 'type': 'Numeric', 'originalType': '', 'description': '2000'}, {'order': 3, 'name': 'Value', 'type': 'Numeric', 'originalType': '', 'description': 'Rate'}, {'order': 4, 'name': 'MEASURE', 'type': 'String', 'originalType': '', 'description': None}]}]",14323,False,False,False,1,2018-02-27T16:33:39.507Z,CC0: Public Domain,Sudhir Kumar,sudhirnl7,sudhirnl7/currency-excahnge-rate,Currency Exchange Rate from 1950-2017,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'countries', 'competitionCount': 0, 'datasetCount': 70, 'description': 'A country is a region that is identified as a distinct national entity in political geography.', 'fullPath': 'geography and places > countries', 'isAutomatic': False, 'name': 'countries', 'scriptCount': 34, 'totalCount': 104}]",Currency Exchange Rate,0,26714,https://www.kaggle.com/sudhirnl7/currency-excahnge-rate,0.7352941,"[{'versionNumber': 4, 'creationDate': '2018-02-27T16:33:39.507Z', 'creatorName': 'Sudhir Kumar', 'creatorRef': 'currency-excahnge-rate', 'versionNotes': 'currency_exchange_rate', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-02-27T16:13:25.11Z', 'creatorName': 'Sudhir Kumar', 'creatorRef': 'currency-excahnge-rate', 'versionNotes': 'Currency Exchange Rate', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-02-27T15:31:22.347Z', 'creatorName': 'Sudhir Kumar', 'creatorRef': 'currency-excahnge-rate', 'versionNotes': 'Currency Exchange rate', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-02-27T15:29:28.543Z', 'creatorName': 'Sudhir Kumar', 'creatorRef': 'currency-excahnge-rate', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1622,5 +24,Andrew Ryabov,,5,"### Context + +Each file contains klines for 1 month period with 1 minute intervals. File name formating looks like mm-yyyy-SMB1SMB2 (e.g. 11-2017-XRPBTC). + +This data set contains now only XRP/BTC and ETH/USDT symbol pair now, but it will be expand soon. + + +### Features + - Open time -> timestamp (milliseconds) + - Open price -> float + - High price -> float + - Low price -> float + - Close price -> float + - Volume -> float + - Quote asset volume -> float + - Close time -> timestamp (milliseconds) + - Number of trades -> int + - Taker buy base asset volume -> float + - Taker buy quote asset volume -> float + + +### Acknowledgements + +This dataset was collected from [Binance Exchange | Worlds Largest Crypto Exchange][1] + + +### Inspiration + +This data set could inspire you on most efficient trading algorithms. + + + [1]: https://www.binance.com",488,"[{'ref': '01-2018.zip', 'creationDate': '2018-04-08T09:58:44.3197492Z', 'datasetRef': 'binance/binance-crypto-klines', 'description': '', 'fileType': '.zip', 'name': '01-2018.zip', 'ownerRef': 'binance', 'totalBytes': 267868320, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '02-2018.zip', 'creationDate': '2018-04-08T09:45:48.808Z', 'datasetRef': 'binance/binance-crypto-klines', 'description': '', 'fileType': '.zip', 'name': '02-2018.zip', 'ownerRef': 'binance', 'totalBytes': 216187829, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '03-2018.zip', 'creationDate': '2018-04-08T09:57:01.759Z', 'datasetRef': 'binance/binance-crypto-klines', 'description': '', 'fileType': '.zip', 'name': '03-2018.zip', 'ownerRef': 'binance', 'totalBytes': 250592290, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '11-2017.zip', 'creationDate': '2018-04-08T09:58:44.7885738Z', 'datasetRef': 'binance/binance-crypto-klines', 'description': '', 'fileType': '.zip', 'name': '11-2017.zip', 'ownerRef': 'binance', 'totalBytes': 96174138, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '12-2017.zip', 'creationDate': '2018-04-08T09:58:45.6331931Z', 'datasetRef': 'binance/binance-crypto-klines', 'description': '', 'fileType': '.zip', 'name': '12-2017.zip', 'ownerRef': 'binance', 'totalBytes': 193245100, 'url': 'https://www.kaggle.com/', 'columns': []}]",9894,False,False,False,1,2018-04-08T09:58:41.477Z,CC0: Public Domain,Binance,binance,binance/binance-crypto-klines,"Minutely crypto currency open/close prices, high/low, trades and others","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Binance Crypto Klines,3,1004510014,https://www.kaggle.com/binance/binance-crypto-klines,0.75,"[{'versionNumber': 5, 'creationDate': '2018-04-08T09:58:41.477Z', 'creatorName': 'Andrew Ryabov', 'creatorRef': 'binance-crypto-klines', 'versionNotes': 'Provided February and March 2018 prices', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2018-02-20T13:32:22.917Z', 'creatorName': 'Andrew Ryabov', 'creatorRef': 'binance-crypto-klines', 'versionNotes': 'Provided January 2018 prices', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-01-30T12:08:38.407Z', 'creatorName': 'Andrew Ryabov', 'creatorRef': 'binance-crypto-klines', 'versionNotes': 'Provided November and December prices for all possible market symbols', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-01-20T17:54:58.847Z', 'creatorName': 'Andrew Ryabov', 'creatorRef': 'binance-crypto-klines', 'versionNotes': 'Added Ether and Bitcoin prices', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-01-16T15:43:23.903Z', 'creatorName': 'Andrew Ryabov', 'creatorRef': 'binance-crypto-klines', 'versionNotes': 'Initial release', 'status': 'Ready'}]",4856,37 +25,Husam Aamer,,2,"### Object detection dataset for Iraqi currency + +About 4000 images for both sides of each Iraqi currency with object position inside image. + + +**IMPORTANT** + +objects.json contains object frame as (midX, midY, Width, Height) inside each image with file name alphabetic sorting. + +This dataset used in training CoreML model for MoneyReader app for iOS: + +Download and try here: http://itunes.apple.com/app/id1421092136 + + +Dataset created by HusamAamer from AppChief.net + + + +### هذه البيانات هي للتعرف على للعملة العراقية داخل صورة + +حوالي ٤٠٠٠ صورة لوجهي كل فئة من فئات العملة العراقية مقسمة في مجلدات حسب الفئة + +**هــام** + +يحتوي ملف الجيسون على مصفوفة ، كل عنصر تابع لصورة معينة عند ترتيب الصور حسب الترتيب الأبجدي، وكل عنصر يحتوي معلومات موقع العملة داخل الصورة (المركز اكس ، المركز واي ، العرض ، الإرتفاع) + +تم استخدام هذه البيانات لغرض تدريب موديل CoreML لقارئ العملات العراقية على متجر التطبيقات + +حمل التطبيق وجربه مجاناً : http://itunes.apple.com/app/id1421092136",40,"[{'ref': '10000ar.zip', 'creationDate': '2018-08-23T08:43:38.539Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 10,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '10000ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 101916947, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '10000en.zip', 'creationDate': '2018-08-23T08:50:35.329Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 10,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '10000en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 107649180, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '1000ar.zip', 'creationDate': '2018-08-23T08:18:14.094Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 1,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '1000ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 111455532, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '1000en.zip', 'creationDate': '2018-08-23T08:20:05.906Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 1,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '1000en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 122015323, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '25000ar.zip', 'creationDate': '2018-08-23T09:00:07.438Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 25,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '25000ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 95555426, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '25000en.zip', 'creationDate': '2018-08-23T09:04:01.633Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 25,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '25000en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 89489658, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '250ar.zip', 'creationDate': '2018-08-23T09:28:33.7049748Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 250 Iraqi dinar IQD', 'fileType': '.zip', 'name': '250ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 107646769, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '250en.zip', 'creationDate': '2018-08-23T09:28:34.1425091Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 250 Iraqi dinar IQD', 'fileType': '.zip', 'name': '250en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 104867245, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '50000ar.zip', 'creationDate': '2018-08-23T09:12:46.21Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 50,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '50000ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 68723152, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '50000en.zip', 'creationDate': '2018-08-23T09:23:54.699Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 50,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '50000en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 68140798, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '5000ar.zip', 'creationDate': '2018-08-23T08:19:54.133Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 5,000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '5000ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 118878605, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '5000en.zip', 'creationDate': '2018-08-23T08:28:38.03Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 5000 Iraqi dinar IQD', 'fileType': '.zip', 'name': '5000en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 90975936, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '500ar.zip', 'creationDate': '2018-08-23T07:39:27.374Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'Arabic side of 500 Iraqi dinar IQD', 'fileType': '.zip', 'name': '500ar.zip', 'ownerRef': 'husamaamer', 'totalBytes': 120404533, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': '500en.zip', 'creationDate': '2018-08-23T07:43:15.361Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'English side of 500 Iraqi dinar IQD', 'fileType': '.zip', 'name': '500en.zip', 'ownerRef': 'husamaamer', 'totalBytes': 127085999, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'objects.json', 'creationDate': '2018-08-23T09:28:01.376Z', 'datasetRef': 'husamaamer/iraqi-currency-', 'description': 'objects.json contains object frame as (midX, midY, Width, Height) inside each image with file name alphabetic sorting.\n\nDownload and try here: http://itunes.apple.com/app/id1421092136 \n\n\nDataset created by HusamAamer from AppChief.net , fb.me/appchief\n\n**هــام**\n\nيحتوي ملف الجيسون على مصفوفة ، كل عنصر تابع لصورة معينة عند ترتيب الصور حسب الترتيب الأبجدي، وكل عنصر يحتوي معلومات موقع العملة داخل الصورة (المركز اكس ، المركز واي ، العرض ، الإرتفاع)\n\nتم استخدام هذه البيانات لغرض تدريب موديل CoreML لقارئ العملات العراقية على متجر التطبيقات\n\nحمل التطبيق وجربه مجاناً : http://itunes.apple.com/app/id1421092136', 'fileType': '.json', 'name': 'objects.json', 'ownerRef': 'husamaamer', 'totalBytes': 743614, 'url': 'https://www.kaggle.com/', 'columns': []}]",45977,False,False,False,2,2018-08-23T09:28:29.143Z,Unknown,Husam Aamer,husamaamer,husamaamer/iraqi-currency-,Object detection dataset for Iraqi currency,"[{'ref': 'object detection', 'competitionCount': 9, 'datasetCount': 57, 'description': None, 'fullPath': 'problem type > object detection', 'isAutomatic': False, 'name': 'object detection', 'scriptCount': 31, 'totalCount': 97}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}, {'ref': 'object recognition', 'competitionCount': 2, 'datasetCount': 33, 'description': None, 'fullPath': 'problem type > object recognition', 'isAutomatic': False, 'name': 'object recognition', 'scriptCount': 16, 'totalCount': 51}, {'ref': 'object labeling', 'competitionCount': 5, 'datasetCount': 15, 'description': None, 'fullPath': 'problem type > object labeling', 'isAutomatic': False, 'name': 'object labeling', 'scriptCount': 4, 'totalCount': 24}]",Iraqi Money العملة العراقية,0,1435021165,https://www.kaggle.com/husamaamer/iraqi-currency-,0.6875,"[{'versionNumber': 2, 'creationDate': '2018-08-23T09:28:29.143Z', 'creatorName': 'Husam Aamer', 'creatorRef': 'iraqi-currency-', 'versionNotes': 'v1', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-08-23T07:23:44.58Z', 'creatorName': 'Husam Aamer', 'creatorRef': 'iraqi-currency-', 'versionNotes': 'Initial release', 'status': 'Ready'}]",581,3 +26,Carsten,,2,"## About this dataset + +With the rise of crypto currency markets the interest in creating automated trading strategies, or trading bots, has grown. Developing algorithmic trading strategies however requires intensive backtesting to ensure profitable performance. It follows that access to high resolution historical trading data is the foundation of every successful algorithmic trading strategy. This dataset therefore provides open, high, low, close (OHLC) data at 1 minute resolution of various crypto currency pairs for the development of automated trading systems. + +### Content + +This dataset contains the historical trading data (OHLC) of 401 trading pairs at 1 minute resolution reaching back until the year 2013. It was collected from the Bitfinex exchange as described in [this article](https://medium.com/coinmonks/how-to-get-historical-crypto-currency-data-954062d40d2d). +The data in the CSV files is the raw output of the Bitfinex API. This means that there are no timestamps for time periods in which the exchange was down. Also if there were time periods without any activity or trades there will be no timestamp as well. + +### Inspiration + +This dataset is intended to facilitate the development of automatic trading strategies. Machine learning algorithms, as they are available through various open source libraries these days, typically require large amounts of training data to unveil their full power. Also the process of backtesting new strategies before deploying them rests on high quality data. Most crypto trading datasets that are currently available either have low temporal resolution, are not free of charge or focus only on a limited number of currency pairs. This dataset on the other hand provides high temporal resolution data of almost 400 currency pairs for the development of new trading algorithms.",119,"[{'ref': 'cryptoMinuteResolution.zip', 'creationDate': '2019-07-09T21:21:31.92Z', 'datasetRef': 'tencars/392-crypto-currency-pairs-at-minute-resolution', 'description': 'The dataset consists of 401 CSV files. The filename represents the trading pair. Each CSV file has 6 columns which contains the following information:\n\n- time: millisecond time stamp\n- open: opening price of the candle\n- close: closing price of the candle\n- high: highest price within the candles time bin\n- low: lowest price within the candles time bin\n- volume: Quantity traded within the candles time bin', 'fileType': '.zip', 'name': 'cryptoMinuteResolution.zip', 'ownerRef': 'tencars', 'totalBytes': 393638972, 'url': 'https://www.kaggle.com/', 'columns': []}]",246537,False,False,False,2,2019-07-09T21:25:22.227Z,CC BY-SA 4.0,Carsten,tencars,tencars/392-crypto-currency-pairs-at-minute-resolution,Historical crypto currency data from the Bitfinex exchange including Bitcoin,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}]",401 crypto currency pairs at 1-minute resolution,0,393638972,https://www.kaggle.com/tencars/392-crypto-currency-pairs-at-minute-resolution,1.0,"[{'versionNumber': 2, 'creationDate': '2019-07-09T21:25:22.227Z', 'creatorName': 'Carsten', 'creatorRef': '392-crypto-currency-pairs-at-minute-resolution', 'versionNotes': 'update: data until 06.07.2019', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2019-06-25T22:22:57.213Z', 'creatorName': 'Carsten', 'creatorRef': '392-crypto-currency-pairs-at-minute-resolution', 'versionNotes': 'Initial release', 'status': 'Ready'}]",884,6 +27,M Hansinger,,2,"### Context +One week of highly resolved crypto currency data from bittrex. + + +### Content + +The data set comprises four .csv files, containing market price, ask price, bid price and trading volume of all 196 crypto currency coin pairs, listed on bittrex. Bitcoin is the base currency, both for prices and trading volume. +The temporal resolution is one minute, the time stamp is in UNIX time. + +### Acknowledgements + +Thanks to the bittrex API which made the data available! + +### Inspiration +Gain more insights on the intra-day correlations among different currency pairs and price development related to trading volume. E.g., predict price pumps based on the changes in trading volume. + +",126,"[{'ref': 'BTC_PAIRS_ASK.csv', 'creationDate': '2018-04-15T16:34:29.521Z', 'datasetRef': 'mhansinger/bittrex-bitcoin-pairs', 'description': '', 'fileType': '.csv', 'name': 'BTC_PAIRS_ASK.csv', 'ownerRef': 'mhansinger', 'totalBytes': 77393309, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'UNIX_Time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'BTC_2GIVE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'BTC_ABY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BTC_ADA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'BTC_ADT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BTC_ADX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'BTC_AEON', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'BTC_AMP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'BTC_ANT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'BTC_ARDR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'BTC_ARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'BTC_AUR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'BTC_BAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'BTC_BAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'BTC_BCC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'BTC_BCPT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'BTC_BCY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'BTC_BITB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BTC_BLITZ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BTC_BLK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BTC_BLOCK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'BTC_BNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BTC_BRK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BTC_BRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BTC_BSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BTC_BTG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BTC_BURST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BTC_BYC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BTC_CANN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BTC_CFI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BTC_CLAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BTC_CLOAK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BTC_CLUB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BTC_COVAL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'BTC_CPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'BTC_CRB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'BTC_CRW', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'BTC_CURE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'BTC_CVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'BTC_DASH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'BTC_DCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'BTC_DCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'BTC_DGB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'BTC_DMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'BTC_DNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'BTC_DOGE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'BTC_DOPE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'BTC_DTB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BTC_DYN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BTC_EBST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'BTC_EDG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'BTC_EFL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'BTC_EGC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'BTC_EMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'BTC_EMC2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'BTC_ENG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'BTC_ENRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'BTC_ERC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'BTC_ETC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'BTC_ETH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'BTC_EXCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'BTC_EXP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'BTC_FAIR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'BTC_FCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'BTC_FLDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'BTC_FLO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'BTC_FTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'BTC_GAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'BTC_GAME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'BTC_GBG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'BTC_GBYTE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'BTC_GCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'BTC_GEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'BTC_GLD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'BTC_GNO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'BTC_GNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'BTC_GOLOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'BTC_GRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'BTC_GRS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 79, 'name': 'BTC_GUP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 80, 'name': 'BTC_HMQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 81, 'name': 'BTC_IGNIS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 82, 'name': 'BTC_INCNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 83, 'name': 'BTC_IOC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 84, 'name': 'BTC_ION', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 85, 'name': 'BTC_IOP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 86, 'name': 'BTC_KMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 87, 'name': 'BTC_KORE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 88, 'name': 'BTC_LBC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 89, 'name': 'BTC_LGD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 90, 'name': 'BTC_LMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 91, 'name': 'BTC_LRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 92, 'name': 'BTC_LSK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 93, 'name': 'BTC_LTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 94, 'name': 'BTC_LUN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 95, 'name': 'BTC_MANA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 96, 'name': 'BTC_MCO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 97, 'name': 'BTC_MEME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 98, 'name': 'BTC_MER', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 99, 'name': 'BTC_MLN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 100, 'name': 'BTC_MONA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 101, 'name': 'BTC_MUE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 102, 'name': 'BTC_MUSIC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 103, 'name': 'BTC_NAV', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 104, 'name': 'BTC_NBT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 105, 'name': 'BTC_NEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 106, 'name': 'BTC_NEOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 107, 'name': 'BTC_NLG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 108, 'name': 'BTC_NMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 109, 'name': 'BTC_NXC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 110, 'name': 'BTC_NXS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 111, 'name': 'BTC_NXT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 112, 'name': 'BTC_OK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 113, 'name': 'BTC_OMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 114, 'name': 'BTC_OMNI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 115, 'name': 'BTC_PART', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 116, 'name': 'BTC_PAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 117, 'name': 'BTC_PDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 118, 'name': 'BTC_PINK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 119, 'name': 'BTC_PIVX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 120, 'name': 'BTC_PKB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 121, 'name': 'BTC_POT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 122, 'name': 'BTC_POWR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 123, 'name': 'BTC_PPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 124, 'name': 'BTC_PTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 125, 'name': 'BTC_PTOY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 126, 'name': 'BTC_QRL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 127, 'name': 'BTC_QTUM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 128, 'name': 'BTC_QWARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 129, 'name': 'BTC_RADS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 130, 'name': 'BTC_RBY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 131, 'name': 'BTC_RCN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 132, 'name': 'BTC_RDD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 133, 'name': 'BTC_REP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 134, 'name': 'BTC_RLC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 135, 'name': 'BTC_RVR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 136, 'name': 'BTC_SALT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 137, 'name': 'BTC_SBD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 138, 'name': 'BTC_SC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 139, 'name': 'BTC_SEQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 140, 'name': 'BTC_SHIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 141, 'name': 'BTC_SIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 142, 'name': 'BTC_SLR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 143, 'name': 'BTC_SLS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 144, 'name': 'BTC_SNRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 145, 'name': 'BTC_SNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 146, 'name': 'BTC_SPHR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 147, 'name': 'BTC_SPR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 148, 'name': 'BTC_SRN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 149, 'name': 'BTC_START', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 150, 'name': 'BTC_STEEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 151, 'name': 'BTC_STORJ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 152, 'name': 'BTC_STRAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 153, 'name': 'BTC_SWIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 154, 'name': 'BTC_SWT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 155, 'name': 'BTC_SYNX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 156, 'name': 'BTC_SYS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 157, 'name': 'BTC_THC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 158, 'name': 'BTC_TIX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 159, 'name': 'BTC_TKS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 160, 'name': 'BTC_TRST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 161, 'name': 'BTC_TRUST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 162, 'name': 'BTC_TRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 163, 'name': 'BTC_TUSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 164, 'name': 'BTC_TX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 165, 'name': 'BTC_UBQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 166, 'name': 'BTC_UKG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 167, 'name': 'BTC_UNB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 168, 'name': 'BTC_VEE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 169, 'name': 'BTC_VIA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 170, 'name': 'BTC_VIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 171, 'name': 'BTC_VRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 172, 'name': 'BTC_VRM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 173, 'name': 'BTC_VTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 174, 'name': 'BTC_VTR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 175, 'name': 'BTC_WAVES', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 176, 'name': 'BTC_WAX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 177, 'name': 'BTC_WINGS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 178, 'name': 'BTC_XCP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 179, 'name': 'BTC_XDN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 180, 'name': 'BTC_XEL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 181, 'name': 'BTC_XEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 182, 'name': 'BTC_XLM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 183, 'name': 'BTC_XMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 184, 'name': 'BTC_XMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 185, 'name': 'BTC_XMY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 186, 'name': 'BTC_XRP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 187, 'name': 'BTC_XST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 188, 'name': 'BTC_XVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 189, 'name': 'BTC_XVG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 190, 'name': 'BTC_XWC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 191, 'name': 'BTC_XZC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 192, 'name': 'BTC_ZCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 193, 'name': 'BTC_ZEC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 194, 'name': 'BTC_ZEN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 195, 'name': 'BTC_ZRX', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BTC_PAIRS_BID.csv', 'creationDate': '2018-04-15T16:34:28.696Z', 'datasetRef': 'mhansinger/bittrex-bitcoin-pairs', 'description': '', 'fileType': '.csv', 'name': 'BTC_PAIRS_BID.csv', 'ownerRef': 'mhansinger', 'totalBytes': 77161002, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'UNIX_Time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'BTC_2GIVE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'BTC_ABY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BTC_ADA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'BTC_ADT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BTC_ADX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'BTC_AEON', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'BTC_AMP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'BTC_ANT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'BTC_ARDR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'BTC_ARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'BTC_AUR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'BTC_BAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'BTC_BAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'BTC_BCC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'BTC_BCPT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'BTC_BCY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'BTC_BITB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BTC_BLITZ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BTC_BLK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BTC_BLOCK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'BTC_BNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BTC_BRK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BTC_BRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BTC_BSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BTC_BTG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BTC_BURST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BTC_BYC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BTC_CANN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BTC_CFI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BTC_CLAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BTC_CLOAK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BTC_CLUB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BTC_COVAL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'BTC_CPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'BTC_CRB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'BTC_CRW', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'BTC_CURE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'BTC_CVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'BTC_DASH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'BTC_DCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'BTC_DCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'BTC_DGB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'BTC_DMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'BTC_DNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'BTC_DOGE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'BTC_DOPE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'BTC_DTB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BTC_DYN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BTC_EBST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'BTC_EDG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'BTC_EFL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'BTC_EGC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'BTC_EMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'BTC_EMC2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'BTC_ENG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'BTC_ENRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'BTC_ERC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'BTC_ETC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'BTC_ETH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'BTC_EXCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'BTC_EXP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'BTC_FAIR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'BTC_FCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'BTC_FLDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'BTC_FLO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'BTC_FTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'BTC_GAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'BTC_GAME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'BTC_GBG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'BTC_GBYTE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'BTC_GCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'BTC_GEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'BTC_GLD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'BTC_GNO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'BTC_GNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'BTC_GOLOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'BTC_GRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'BTC_GRS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 79, 'name': 'BTC_GUP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 80, 'name': 'BTC_HMQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 81, 'name': 'BTC_IGNIS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 82, 'name': 'BTC_INCNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 83, 'name': 'BTC_IOC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 84, 'name': 'BTC_ION', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 85, 'name': 'BTC_IOP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 86, 'name': 'BTC_KMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 87, 'name': 'BTC_KORE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 88, 'name': 'BTC_LBC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 89, 'name': 'BTC_LGD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 90, 'name': 'BTC_LMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 91, 'name': 'BTC_LRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 92, 'name': 'BTC_LSK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 93, 'name': 'BTC_LTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 94, 'name': 'BTC_LUN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 95, 'name': 'BTC_MANA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 96, 'name': 'BTC_MCO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 97, 'name': 'BTC_MEME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 98, 'name': 'BTC_MER', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 99, 'name': 'BTC_MLN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 100, 'name': 'BTC_MONA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 101, 'name': 'BTC_MUE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 102, 'name': 'BTC_MUSIC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 103, 'name': 'BTC_NAV', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 104, 'name': 'BTC_NBT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 105, 'name': 'BTC_NEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 106, 'name': 'BTC_NEOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 107, 'name': 'BTC_NLG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 108, 'name': 'BTC_NMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 109, 'name': 'BTC_NXC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 110, 'name': 'BTC_NXS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 111, 'name': 'BTC_NXT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 112, 'name': 'BTC_OK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 113, 'name': 'BTC_OMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 114, 'name': 'BTC_OMNI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 115, 'name': 'BTC_PART', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 116, 'name': 'BTC_PAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 117, 'name': 'BTC_PDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 118, 'name': 'BTC_PINK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 119, 'name': 'BTC_PIVX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 120, 'name': 'BTC_PKB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 121, 'name': 'BTC_POT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 122, 'name': 'BTC_POWR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 123, 'name': 'BTC_PPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 124, 'name': 'BTC_PTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 125, 'name': 'BTC_PTOY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 126, 'name': 'BTC_QRL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 127, 'name': 'BTC_QTUM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 128, 'name': 'BTC_QWARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 129, 'name': 'BTC_RADS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 130, 'name': 'BTC_RBY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 131, 'name': 'BTC_RCN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 132, 'name': 'BTC_RDD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 133, 'name': 'BTC_REP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 134, 'name': 'BTC_RLC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 135, 'name': 'BTC_RVR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 136, 'name': 'BTC_SALT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 137, 'name': 'BTC_SBD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 138, 'name': 'BTC_SC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 139, 'name': 'BTC_SEQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 140, 'name': 'BTC_SHIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 141, 'name': 'BTC_SIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 142, 'name': 'BTC_SLR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 143, 'name': 'BTC_SLS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 144, 'name': 'BTC_SNRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 145, 'name': 'BTC_SNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 146, 'name': 'BTC_SPHR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 147, 'name': 'BTC_SPR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 148, 'name': 'BTC_SRN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 149, 'name': 'BTC_START', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 150, 'name': 'BTC_STEEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 151, 'name': 'BTC_STORJ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 152, 'name': 'BTC_STRAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 153, 'name': 'BTC_SWIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 154, 'name': 'BTC_SWT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 155, 'name': 'BTC_SYNX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 156, 'name': 'BTC_SYS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 157, 'name': 'BTC_THC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 158, 'name': 'BTC_TIX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 159, 'name': 'BTC_TKS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 160, 'name': 'BTC_TRST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 161, 'name': 'BTC_TRUST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 162, 'name': 'BTC_TRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 163, 'name': 'BTC_TUSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 164, 'name': 'BTC_TX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 165, 'name': 'BTC_UBQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 166, 'name': 'BTC_UKG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 167, 'name': 'BTC_UNB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 168, 'name': 'BTC_VEE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 169, 'name': 'BTC_VIA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 170, 'name': 'BTC_VIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 171, 'name': 'BTC_VRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 172, 'name': 'BTC_VRM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 173, 'name': 'BTC_VTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 174, 'name': 'BTC_VTR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 175, 'name': 'BTC_WAVES', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 176, 'name': 'BTC_WAX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 177, 'name': 'BTC_WINGS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 178, 'name': 'BTC_XCP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 179, 'name': 'BTC_XDN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 180, 'name': 'BTC_XEL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 181, 'name': 'BTC_XEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 182, 'name': 'BTC_XLM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 183, 'name': 'BTC_XMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 184, 'name': 'BTC_XMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 185, 'name': 'BTC_XMY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 186, 'name': 'BTC_XRP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 187, 'name': 'BTC_XST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 188, 'name': 'BTC_XVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 189, 'name': 'BTC_XVG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 190, 'name': 'BTC_XWC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 191, 'name': 'BTC_XZC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 192, 'name': 'BTC_ZCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 193, 'name': 'BTC_ZEC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 194, 'name': 'BTC_ZEN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 195, 'name': 'BTC_ZRX', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BTC_PAIRS_PRICE.csv', 'creationDate': '2018-04-15T16:34:28.453Z', 'datasetRef': 'mhansinger/bittrex-bitcoin-pairs', 'description': '', 'fileType': '.csv', 'name': 'BTC_PAIRS_PRICE.csv', 'ownerRef': 'mhansinger', 'totalBytes': 77071476, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'UNIX_Time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'BTC_2GIVE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'BTC_ABY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BTC_ADA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'BTC_ADT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BTC_ADX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'BTC_AEON', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'BTC_AMP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'BTC_ANT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'BTC_ARDR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'BTC_ARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'BTC_AUR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'BTC_BAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'BTC_BAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'BTC_BCC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'BTC_BCPT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'BTC_BCY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'BTC_BITB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BTC_BLITZ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BTC_BLK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BTC_BLOCK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'BTC_BNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BTC_BRK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BTC_BRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BTC_BSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BTC_BTG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BTC_BURST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BTC_BYC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BTC_CANN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BTC_CFI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BTC_CLAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BTC_CLOAK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BTC_CLUB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BTC_COVAL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'BTC_CPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'BTC_CRB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'BTC_CRW', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'BTC_CURE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'BTC_CVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'BTC_DASH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'BTC_DCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'BTC_DCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'BTC_DGB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'BTC_DMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'BTC_DNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'BTC_DOGE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'BTC_DOPE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'BTC_DTB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BTC_DYN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BTC_EBST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'BTC_EDG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'BTC_EFL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'BTC_EGC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'BTC_EMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'BTC_EMC2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'BTC_ENG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'BTC_ENRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'BTC_ERC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'BTC_ETC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'BTC_ETH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'BTC_EXCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'BTC_EXP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'BTC_FAIR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'BTC_FCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'BTC_FLDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'BTC_FLO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'BTC_FTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'BTC_GAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'BTC_GAME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'BTC_GBG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'BTC_GBYTE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'BTC_GCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'BTC_GEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'BTC_GLD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'BTC_GNO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'BTC_GNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'BTC_GOLOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'BTC_GRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'BTC_GRS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 79, 'name': 'BTC_GUP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 80, 'name': 'BTC_HMQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 81, 'name': 'BTC_IGNIS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 82, 'name': 'BTC_INCNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 83, 'name': 'BTC_IOC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 84, 'name': 'BTC_ION', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 85, 'name': 'BTC_IOP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 86, 'name': 'BTC_KMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 87, 'name': 'BTC_KORE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 88, 'name': 'BTC_LBC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 89, 'name': 'BTC_LGD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 90, 'name': 'BTC_LMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 91, 'name': 'BTC_LRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 92, 'name': 'BTC_LSK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 93, 'name': 'BTC_LTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 94, 'name': 'BTC_LUN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 95, 'name': 'BTC_MANA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 96, 'name': 'BTC_MCO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 97, 'name': 'BTC_MEME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 98, 'name': 'BTC_MER', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 99, 'name': 'BTC_MLN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 100, 'name': 'BTC_MONA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 101, 'name': 'BTC_MUE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 102, 'name': 'BTC_MUSIC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 103, 'name': 'BTC_NAV', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 104, 'name': 'BTC_NBT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 105, 'name': 'BTC_NEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 106, 'name': 'BTC_NEOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 107, 'name': 'BTC_NLG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 108, 'name': 'BTC_NMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 109, 'name': 'BTC_NXC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 110, 'name': 'BTC_NXS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 111, 'name': 'BTC_NXT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 112, 'name': 'BTC_OK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 113, 'name': 'BTC_OMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 114, 'name': 'BTC_OMNI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 115, 'name': 'BTC_PART', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 116, 'name': 'BTC_PAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 117, 'name': 'BTC_PDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 118, 'name': 'BTC_PINK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 119, 'name': 'BTC_PIVX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 120, 'name': 'BTC_PKB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 121, 'name': 'BTC_POT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 122, 'name': 'BTC_POWR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 123, 'name': 'BTC_PPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 124, 'name': 'BTC_PTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 125, 'name': 'BTC_PTOY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 126, 'name': 'BTC_QRL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 127, 'name': 'BTC_QTUM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 128, 'name': 'BTC_QWARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 129, 'name': 'BTC_RADS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 130, 'name': 'BTC_RBY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 131, 'name': 'BTC_RCN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 132, 'name': 'BTC_RDD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 133, 'name': 'BTC_REP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 134, 'name': 'BTC_RLC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 135, 'name': 'BTC_RVR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 136, 'name': 'BTC_SALT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 137, 'name': 'BTC_SBD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 138, 'name': 'BTC_SC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 139, 'name': 'BTC_SEQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 140, 'name': 'BTC_SHIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 141, 'name': 'BTC_SIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 142, 'name': 'BTC_SLR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 143, 'name': 'BTC_SLS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 144, 'name': 'BTC_SNRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 145, 'name': 'BTC_SNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 146, 'name': 'BTC_SPHR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 147, 'name': 'BTC_SPR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 148, 'name': 'BTC_SRN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 149, 'name': 'BTC_START', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 150, 'name': 'BTC_STEEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 151, 'name': 'BTC_STORJ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 152, 'name': 'BTC_STRAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 153, 'name': 'BTC_SWIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 154, 'name': 'BTC_SWT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 155, 'name': 'BTC_SYNX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 156, 'name': 'BTC_SYS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 157, 'name': 'BTC_THC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 158, 'name': 'BTC_TIX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 159, 'name': 'BTC_TKS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 160, 'name': 'BTC_TRST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 161, 'name': 'BTC_TRUST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 162, 'name': 'BTC_TRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 163, 'name': 'BTC_TUSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 164, 'name': 'BTC_TX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 165, 'name': 'BTC_UBQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 166, 'name': 'BTC_UKG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 167, 'name': 'BTC_UNB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 168, 'name': 'BTC_VEE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 169, 'name': 'BTC_VIA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 170, 'name': 'BTC_VIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 171, 'name': 'BTC_VRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 172, 'name': 'BTC_VRM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 173, 'name': 'BTC_VTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 174, 'name': 'BTC_VTR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 175, 'name': 'BTC_WAVES', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 176, 'name': 'BTC_WAX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 177, 'name': 'BTC_WINGS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 178, 'name': 'BTC_XCP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 179, 'name': 'BTC_XDN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 180, 'name': 'BTC_XEL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 181, 'name': 'BTC_XEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 182, 'name': 'BTC_XLM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 183, 'name': 'BTC_XMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 184, 'name': 'BTC_XMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 185, 'name': 'BTC_XMY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 186, 'name': 'BTC_XRP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 187, 'name': 'BTC_XST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 188, 'name': 'BTC_XVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 189, 'name': 'BTC_XVG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 190, 'name': 'BTC_XWC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 191, 'name': 'BTC_XZC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 192, 'name': 'BTC_ZCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 193, 'name': 'BTC_ZEC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 194, 'name': 'BTC_ZEN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 195, 'name': 'BTC_ZRX', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BTC_PAIRS_VOLUME.csv', 'creationDate': '2018-04-15T16:34:59.18Z', 'datasetRef': 'mhansinger/bittrex-bitcoin-pairs', 'description': '', 'fileType': '.csv', 'name': 'BTC_PAIRS_VOLUME.csv', 'ownerRef': 'mhansinger', 'totalBytes': 90918648, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'UNIX_Time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'BTC_2GIVE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'BTC_ABY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BTC_ADA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'BTC_ADT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BTC_ADX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'BTC_AEON', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'BTC_AMP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'BTC_ANT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'BTC_ARDR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'BTC_ARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'BTC_AUR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'BTC_BAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'BTC_BAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'BTC_BCC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'BTC_BCPT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'BTC_BCY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'BTC_BITB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BTC_BLITZ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BTC_BLK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BTC_BLOCK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'BTC_BNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BTC_BRK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BTC_BRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BTC_BSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BTC_BTG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BTC_BURST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BTC_BYC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BTC_CANN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BTC_CFI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BTC_CLAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BTC_CLOAK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BTC_CLUB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BTC_COVAL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'BTC_CPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'BTC_CRB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'BTC_CRW', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'BTC_CURE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'BTC_CVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'BTC_DASH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'BTC_DCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'BTC_DCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'BTC_DGB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'BTC_DMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'BTC_DNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'BTC_DOGE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'BTC_DOPE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'BTC_DTB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BTC_DYN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BTC_EBST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'BTC_EDG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'BTC_EFL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'BTC_EGC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'BTC_EMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'BTC_EMC2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'BTC_ENG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'BTC_ENRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'BTC_ERC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'BTC_ETC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'BTC_ETH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'BTC_EXCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'BTC_EXP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'BTC_FAIR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'BTC_FCT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'BTC_FLDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'BTC_FLO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'BTC_FTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'BTC_GAM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'BTC_GAME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'BTC_GBG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'BTC_GBYTE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'BTC_GCR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'BTC_GEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'BTC_GLD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'BTC_GNO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'BTC_GNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'BTC_GOLOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'BTC_GRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'BTC_GRS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 79, 'name': 'BTC_GUP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 80, 'name': 'BTC_HMQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 81, 'name': 'BTC_IGNIS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 82, 'name': 'BTC_INCNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 83, 'name': 'BTC_IOC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 84, 'name': 'BTC_ION', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 85, 'name': 'BTC_IOP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 86, 'name': 'BTC_KMD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 87, 'name': 'BTC_KORE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 88, 'name': 'BTC_LBC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 89, 'name': 'BTC_LGD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 90, 'name': 'BTC_LMC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 91, 'name': 'BTC_LRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 92, 'name': 'BTC_LSK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 93, 'name': 'BTC_LTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 94, 'name': 'BTC_LUN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 95, 'name': 'BTC_MANA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 96, 'name': 'BTC_MCO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 97, 'name': 'BTC_MEME', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 98, 'name': 'BTC_MER', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 99, 'name': 'BTC_MLN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 100, 'name': 'BTC_MONA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 101, 'name': 'BTC_MUE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 102, 'name': 'BTC_MUSIC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 103, 'name': 'BTC_NAV', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 104, 'name': 'BTC_NBT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 105, 'name': 'BTC_NEO', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 106, 'name': 'BTC_NEOS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 107, 'name': 'BTC_NLG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 108, 'name': 'BTC_NMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 109, 'name': 'BTC_NXC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 110, 'name': 'BTC_NXS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 111, 'name': 'BTC_NXT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 112, 'name': 'BTC_OK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 113, 'name': 'BTC_OMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 114, 'name': 'BTC_OMNI', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 115, 'name': 'BTC_PART', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 116, 'name': 'BTC_PAY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 117, 'name': 'BTC_PDC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 118, 'name': 'BTC_PINK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 119, 'name': 'BTC_PIVX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 120, 'name': 'BTC_PKB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 121, 'name': 'BTC_POT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 122, 'name': 'BTC_POWR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 123, 'name': 'BTC_PPC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 124, 'name': 'BTC_PTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 125, 'name': 'BTC_PTOY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 126, 'name': 'BTC_QRL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 127, 'name': 'BTC_QTUM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 128, 'name': 'BTC_QWARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 129, 'name': 'BTC_RADS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 130, 'name': 'BTC_RBY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 131, 'name': 'BTC_RCN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 132, 'name': 'BTC_RDD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 133, 'name': 'BTC_REP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 134, 'name': 'BTC_RLC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 135, 'name': 'BTC_RVR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 136, 'name': 'BTC_SALT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 137, 'name': 'BTC_SBD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 138, 'name': 'BTC_SC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 139, 'name': 'BTC_SEQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 140, 'name': 'BTC_SHIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 141, 'name': 'BTC_SIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 142, 'name': 'BTC_SLR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 143, 'name': 'BTC_SLS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 144, 'name': 'BTC_SNRG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 145, 'name': 'BTC_SNT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 146, 'name': 'BTC_SPHR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 147, 'name': 'BTC_SPR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 148, 'name': 'BTC_SRN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 149, 'name': 'BTC_START', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 150, 'name': 'BTC_STEEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 151, 'name': 'BTC_STORJ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 152, 'name': 'BTC_STRAT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 153, 'name': 'BTC_SWIFT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 154, 'name': 'BTC_SWT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 155, 'name': 'BTC_SYNX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 156, 'name': 'BTC_SYS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 157, 'name': 'BTC_THC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 158, 'name': 'BTC_TIX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 159, 'name': 'BTC_TKS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 160, 'name': 'BTC_TRST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 161, 'name': 'BTC_TRUST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 162, 'name': 'BTC_TRX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 163, 'name': 'BTC_TUSD', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 164, 'name': 'BTC_TX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 165, 'name': 'BTC_UBQ', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 166, 'name': 'BTC_UKG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 167, 'name': 'BTC_UNB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 168, 'name': 'BTC_VEE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 169, 'name': 'BTC_VIA', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 170, 'name': 'BTC_VIB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 171, 'name': 'BTC_VRC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 172, 'name': 'BTC_VRM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 173, 'name': 'BTC_VTC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 174, 'name': 'BTC_VTR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 175, 'name': 'BTC_WAVES', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 176, 'name': 'BTC_WAX', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 177, 'name': 'BTC_WINGS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 178, 'name': 'BTC_XCP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 179, 'name': 'BTC_XDN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 180, 'name': 'BTC_XEL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 181, 'name': 'BTC_XEM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 182, 'name': 'BTC_XLM', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 183, 'name': 'BTC_XMG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 184, 'name': 'BTC_XMR', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 185, 'name': 'BTC_XMY', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 186, 'name': 'BTC_XRP', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 187, 'name': 'BTC_XST', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 188, 'name': 'BTC_XVC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 189, 'name': 'BTC_XVG', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 190, 'name': 'BTC_XWC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 191, 'name': 'BTC_XZC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 192, 'name': 'BTC_ZCL', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 193, 'name': 'BTC_ZEC', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 194, 'name': 'BTC_ZEN', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 195, 'name': 'BTC_ZRX', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",19182,False,False,False,0,2018-04-15T16:42:18.337Z,CC0: Public Domain,M Hansinger,mhansinger,mhansinger/bittrex-bitcoin-pairs,High resolution data of all BTC based pairs from bittrex. ,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'stochastic processes', 'competitionCount': 0, 'datasetCount': 4, 'description': None, 'fullPath': 'mathematics and logic > statistics > stochastic processes', 'isAutomatic': False, 'name': 'stochastic processes', 'scriptCount': 13, 'totalCount': 17}]",Crypto currency data,1,44064008,https://www.kaggle.com/mhansinger/bittrex-bitcoin-pairs,0.647058845,"[{'versionNumber': 2, 'creationDate': '2018-04-15T16:42:18.337Z', 'creatorName': 'M Hansinger', 'creatorRef': 'bittrex-bitcoin-pairs', 'versionNotes': 'A new version covering 27 days', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-03-31T12:50:14.11Z', 'creatorName': 'M Hansinger', 'creatorRef': 'bittrex-bitcoin-pairs', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1327,3 +28,Zielak,,16,"### Context +Bitcoin is the longest running and most well known cryptocurrency, first released as open source in 2009 by the anonymous Satoshi Nakamoto. Bitcoin serves as a decentralized medium of digital exchange, with transactions verified and recorded in a public distributed ledger (the blockchain) without the need for a trusted record keeping authority or central intermediary. Transaction blocks contain a SHA-256 cryptographic hash of previous transaction blocks, and are thus ""chained"" together, serving as an immutable record of all transactions that have ever occurred. As with any currency/commodity on the market, bitcoin trading and financial instruments soon followed public adoption of bitcoin and continue to grow. Included here is historical bitcoin market data at 1-min intervals for select bitcoin exchanges where trading takes place. Happy (data) mining! + +### Content + +coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv + +bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv + +CSV files for select bitcoin exchanges for the time period of Jan 2012 to March 2019, with minute to minute updates of OHLC (Open, High, Low, Close), Volume in BTC and indicated currency, and weighted bitcoin price. **Timestamps are in Unix time. Timestamps without any trades or activity have their data fields filled with NaNs.** If a timestamp is missing, or if there are jumps, this may be because the exchange (or its API) was down, the exchange (or its API) did not exist, or some other unforseen technical error in data reporting or gathering. All effort has been made to deduplicate entries and verify the contents are correct and complete to the best of my ability, but obviously trust at your own risk. + + +### Acknowledgements and Inspiration + +Bitcoin charts for the data. The various exchange APIs, for making it difficult or unintuitive enough to get OHLC and volume data at 1-min intervals that I set out on this data scraping project. Satoshi Nakamoto and the novel core concept of the blockchain, as well as its first execution via the bitcoin protocol. I'd also like to thank viewers like you! Can't wait to see what code or insights you all have to share. +",43353,"[{'ref': 'bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv', 'creationDate': '2019-03-15T16:19:02.329Z', 'datasetRef': 'mczielinski/bitcoin-historical-data', 'description': 'One minute OHLC data from Bitstamp, 2012-01-01 to 2019-03-13', 'fileType': '.csv', 'name': 'bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv', 'ownerRef': 'mczielinski', 'totalBytes': 231872383, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Timestamp', 'type': 'Uuid', 'originalType': '', 'description': 'Start time of time window (60s window), in Unix time'}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open price at start time window'}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'High price within time window'}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Low price within time window'}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close price at end of time window'}, {'order': 5, 'name': 'Volume_(BTC)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of BTC transacted in time window'}, {'order': 6, 'name': 'Volume_(Currency)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of Currency transacted in time window'}, {'order': 7, 'name': 'Weighted_Price', 'type': 'Uuid', 'originalType': '', 'description': 'volume-weighted average price (VWAP) '}]}, {'ref': 'coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv', 'creationDate': '2019-03-15T16:22:47.906Z', 'datasetRef': 'mczielinski/bitcoin-historical-data', 'description': 'One minute OHLC data from Coinbase, 2014-12-01 to 2019-01-09', 'fileType': '.csv', 'name': 'coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv', 'ownerRef': 'mczielinski', 'totalBytes': 150309532, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Timestamp', 'type': 'Uuid', 'originalType': '', 'description': 'Start time of time window (60s window), in Unix time'}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open price at start time window'}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'High price within time window'}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Low price within time window'}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close price at end of time window'}, {'order': 5, 'name': 'Volume_(BTC)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of BTC transacted in time window'}, {'order': 6, 'name': 'Volume_(Currency)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of Currency transacted in time window'}, {'order': 7, 'name': 'Weighted_Price', 'type': 'Uuid', 'originalType': '', 'description': 'volume-weighted average price (VWAP) '}]}]",1346,False,False,True,128,2019-03-15T16:22:58.397Z,CC BY-SA 4.0,Zielak,mczielinski,mczielinski/bitcoin-historical-data,"Bitcoin data at 1-min intervals from select exchanges, Jan 2012 to March 2019","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}]",Bitcoin Historical Data,27,123326534,https://www.kaggle.com/mczielinski/bitcoin-historical-data,1.0,"[{'versionNumber': 16, 'creationDate': '2019-03-15T16:22:58.397Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update 3/2019 (coinbase partial)', 'status': 'Ready'}, {'versionNumber': 15, 'creationDate': '2018-11-13T19:30:01.293Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update 11/2018', 'status': 'Ready'}, {'versionNumber': 14, 'creationDate': '2018-06-28T17:48:04.017Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update July 2018', 'status': 'Ready'}, {'versionNumber': 13, 'creationDate': '2018-03-28T18:50:42.693Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'March 2018 Corrected Names', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2018-03-28T18:43:17.747Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update March 2018', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2018-01-10T18:04:22.707Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update Jan 2018', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2017-11-16T22:32:52.747Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'fixed bitstampUSD filename', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2017-10-23T21:03:15.187Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated BitstampUSD', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2017-10-21T20:49:06.697Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated Coinbase USD', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2017-10-21T20:38:41.857Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated coincheckJPY', 'status': 'Ready'}]",326365,1284 +29,Shruti Mehta,,2,"### Context + +I really get fascinated by good quality food being served in the restaurants and would like to help community find the best cuisines around their area + +### Content + +Zomato API Analysis is one of the most useful analysis for foodies who want to taste the best cuisines of every part of the world which lies in their budget. This analysis is also for those who want to find the value for money restaurants in various parts of the country for the cuisines. Additionally, this analysis caters the needs of people who are striving to get the best cuisine of the country and which locality of that country serves that cuisines with maximum number of restaurants.♨️ + +For more information on Zomato API and Zomato API key +• Visit : https://developers.zomato.com/api#headline1 +• Data Collection: https://developers.zomato.com/documentation + +Data +Fetching the data: +• Data has been collected from the Zomato API in the form of .json files(raw data) using the url=https://developers.zomato.com/api/v2.1/search?entity_id=1&entity_type=city&start=1&count=20 +• Raw data can be seen here + +Data Collection: +Data collected can be seen as a raw .json file here + +Data Storage: +The collected data has been stored in the Comma Separated Value file Zomato.csv. Each restaurant in the dataset is uniquely identified by its Restaurant Id. Every Restaurant contains the following variables: + +• Restaurant Id: Unique id of every restaurant across various cities of the world +• Restaurant Name: Name of the restaurant +• Country Code: Country in which restaurant is located +• City: City in which restaurant is located +• Address: Address of the restaurant +• Locality: Location in the city +• Locality Verbose: Detailed description of the locality +• Longitude: Longitude coordinate of the restaurant's location +• Latitude: Latitude coordinate of the restaurant's location +• Cuisines: Cuisines offered by the restaurant +• Average Cost for two: Cost for two people in different currencies 👫 +• Currency: Currency of the country +• Has Table booking: yes/no +• Has Online delivery: yes/ no +• Is delivering: yes/ no +• Switch to order menu: yes/no +• Price range: range of price of food +• Aggregate Rating: Average rating out of 5 +• Rating color: depending upon the average rating color +• Rating text: text on the basis of rating of rating +• Votes: Number of ratings casted by people + + + + +### Acknowledgements + +I would like to thank Zomato API for helping me collecting data + + +### Inspiration +Data Processing has been done on the following categories: +Currency +City +Location +Rating Text",19144,"[{'ref': 'Country-Code.xlsx', 'creationDate': '2018-03-13T04:55:59.255Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Country codes', 'fileType': '.xlsx', 'name': 'Country-Code.xlsx', 'ownerRef': 'shrutimehta', 'totalBytes': 8783, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Country Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Country', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'file1.json', 'creationDate': '2018-03-13T04:56:26.9508117Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file1.json', 'ownerRef': 'shrutimehta', 'totalBytes': 2198732, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file2.json', 'creationDate': '2018-03-13T04:56:27.2794414Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file2.json', 'ownerRef': 'shrutimehta', 'totalBytes': 20006072, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file3.json', 'creationDate': '2018-03-13T04:56:27.7476789Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file3.json', 'ownerRef': 'shrutimehta', 'totalBytes': 15610388, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file4.json', 'creationDate': '2018-03-13T04:56:28.1226723Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Raw JSON file', 'fileType': '.json', 'name': 'file4.json', 'ownerRef': 'shrutimehta', 'totalBytes': 16427749, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'file5.json', 'creationDate': '2018-03-13T04:56:28.5289496Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': 'Country codes', 'fileType': '.json', 'name': 'file5.json', 'ownerRef': 'shrutimehta', 'totalBytes': 669503, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'zomato.csv', 'creationDate': '2018-03-13T04:56:26.6383525Z', 'datasetRef': 'shrutimehta/zomato-restaurants-data', 'description': '', 'fileType': '.csv', 'name': 'zomato.csv', 'ownerRef': 'shrutimehta', 'totalBytes': 2257316, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Restaurant ID', 'type': 'Numeric', 'originalType': '', 'description': 'Identification Number'}, {'order': 1, 'name': 'Restaurant Name', 'type': 'String', 'originalType': '', 'description': 'Name Of the Restaurant'}, {'order': 2, 'name': 'Country Code', 'type': 'Numeric', 'originalType': '', 'description': '216'}, {'order': 3, 'name': 'City', 'type': 'String', 'originalType': '', 'description': 'City Name of the Restaurant'}, {'order': 4, 'name': 'Address', 'type': 'String', 'originalType': '', 'description': ''}, {'order': 5, 'name': 'Locality', 'type': 'String', 'originalType': '', 'description': 'Shot Address Of the Restaurant'}, {'order': 6, 'name': 'Locality Verbose', 'type': 'String', 'originalType': '', 'description': 'Long Address of the Restaurant'}, {'order': 7, 'name': 'Longitude', 'type': 'Numeric', 'originalType': '', 'description': 'Longitude'}, {'order': 8, 'name': 'Latitude', 'type': 'Numeric', 'originalType': '', 'description': 'Latitude'}, {'order': 9, 'name': 'Cuisines', 'type': 'String', 'originalType': '', 'description': 'Types Of Cuisines Served'}, {'order': 10, 'name': 'Average Cost for two', 'type': 'Numeric', 'originalType': '', 'description': 'Average Cost if two people visit the Restaurant'}, {'order': 11, 'name': 'Currency', 'type': 'String', 'originalType': '', 'description': 'Dollars'}, {'order': 12, 'name': 'Has Table booking', 'type': 'String', 'originalType': '', 'description': 'Can we book tables in Restaurant? Yes/No'}, {'order': 13, 'name': 'Has Online delivery', 'type': 'String', 'originalType': '', 'description': 'Can we have online delivery ? Yes/No'}, {'order': 14, 'name': 'Is delivering now', 'type': 'String', 'originalType': '', 'description': 'Is the Restaurant delivering food now? Yes/No'}, {'order': 15, 'name': 'Switch to order menu', 'type': 'String', 'originalType': '', 'description': 'Switch to order menu ? Yes/ No'}, {'order': 16, 'name': 'Price range', 'type': 'Numeric', 'originalType': '', 'description': 'Categorized price between 1 -4'}, {'order': 17, 'name': 'Aggregate rating', 'type': 'Numeric', 'originalType': '', 'description': 'Categorizing ratings between 1-5 '}, {'order': 18, 'name': 'Rating color', 'type': 'String', 'originalType': '', 'description': 'Different colors representing Customer Rating'}, {'order': 19, 'name': 'Rating text', 'type': 'String', 'originalType': '', 'description': 'Different Rating like Excellent, Very Good ,Good, Avg., Poor, Not Rated'}, {'order': 20, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': 'No.Of Votes received by restaurant from customers.'}]}]",14506,False,False,True,54,2018-03-13T04:56:25.81Z,CC0: Public Domain,Shruti Mehta,shrutimehta,shrutimehta/zomato-restaurants-data,Analyzing the best restaurants of the major cities,"[{'ref': 'food and drink', 'competitionCount': 6, 'datasetCount': 145, 'description': ""If you love food and drink, don't look in this tag unless you want to ruin your day by learning how many calories burritos have. On the other hand, do look into these datasets and kernels for general nutrition facts, restaurant ratings, and various food and drink related reviews."", 'fullPath': 'culture and arts > culture and humanities > food and drink', 'isAutomatic': False, 'name': 'food and drink', 'scriptCount': 346, 'totalCount': 497}]",Zomato Restaurants Data,7,5732263,https://www.kaggle.com/shrutimehta/zomato-restaurants-data,0.7941176,"[{'versionNumber': 2, 'creationDate': '2018-03-13T04:56:25.81Z', 'creatorName': 'Shruti Mehta', 'creatorRef': 'zomato-restaurants-data', 'versionNotes': 'Added file Country codes', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-03-01T00:22:41.227Z', 'creatorName': 'Shruti Mehta', 'creatorRef': 'zomato-restaurants-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",95192,368 +30,RudyMizrahi,,1,"### Context + +This data includes daily open, high, low, close values for all crypto currencies (since April 2013) as well as Daily Lunar Geocentric data (distance, declination, brightness, illumination %, and constellation). Please note that I have consolidated this data from the below two sources (originally submitted by MCrescenzo and jvent) after my mother asked me if there's a correlation between the lunar status and the financial markets. + +### Content + +This data includes daily open, high, low, close values for all crypto currencies (since April 2013 until January 2018) as well as Daily Lunar Geocentric data (distance, declination, brightness, illumination %, and constellation) for same timeframe. + +### Acknowledgements + +Lunar Daily Distance and Declination : 1800-2020. [Click for original data submitted by MCrescenzo][1] +Every Cryptocurrency Daily Market Price. [Click for original data submitted by jvent][2] + +### Inspiration + - Is there any correlation between cryptocurrencies and Lunar Phases? + - Can we predict cryptocurrency movements by the Lunar Phases? + + + [1]: https://www.kaggle.com/crescenzo/lunardistance + [2]: https://www.kaggle.com/jessevent/all-crypto-currencies",88,"[{'ref': 'daily-crypto-markets-and-lunardata.csv', 'creationDate': '2018-01-25T01:19:15.544Z', 'datasetRef': 'rudymizrahi/daily-crypto-currency-and-lunar-geocentric-data', 'description': ""## Daily Crypto Markets and Lunar Data ##\n\nThis data includes daily open, high, low, close values for all crypto currencies (since April 2013) as well as Daily Lunar Geocentric data (distance, declination, brightness, illumination %, and constellation). Please note that I have consolidated this data from the below two sources (originally submitted by MCrescenzo and jvent) after my mother asked me if there's a correlation between the lunar status and the financial markets. \n\n1. Lunar Daily Distance and Declination : 1800-2020. link [Click for original data submitted by MCrescenzo][1]\n2. Every Cryptocurrency Daily Market Price. [Click for original data submitted by jvent][2]\n\n [1]: https://www.kaggle.com/crescenzo/lunardistance\n [2]: https://www.kaggle.com/jessevent/all-crypto-currencies"", 'fileType': '.csv', 'name': 'daily-crypto-markets-and-lunardata.csv', 'ownerRef': 'rudymizrahi', 'totalBytes': 105971169, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Month', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'high', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'ohlc_avg', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'monthly_avg', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'delta_ohlc_monthly', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'market', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'close_ratio', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'spread', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'moon_dist_au', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'moon_declination', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'moon_brightness', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'moon_illumination_perc', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'moon_constellation', 'type': 'String', 'originalType': '', 'description': None}]}]",10896,False,False,False,0,2018-01-25T01:33:42.077Z,Unknown,RudyMizrahi,rudymizrahi,rudymizrahi/daily-crypto-currency-and-lunar-geocentric-data,"Daily crypto markets open, close, low, high data and Lunar Phases (2013-2018)","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'covariance and correlation', 'competitionCount': 0, 'datasetCount': 6, 'description': None, 'fullPath': 'mathematics and logic > statistics > covariance and correlation', 'isAutomatic': False, 'name': 'covariance and correlation', 'scriptCount': 60, 'totalCount': 66}, {'ref': 'space', 'competitionCount': 0, 'datasetCount': 39, 'description': 'Space is all that emptiness that you see when you look up. Space is also the place to analyze datasets and explore kernels related to things like UFOs, meteors, and exoplants.', 'fullPath': 'natural and physical sciences > physical sciences > space', 'isAutomatic': False, 'name': 'space', 'scriptCount': 9, 'totalCount': 48}]",Daily Crypto Currency and Lunar Geocentric Data ,0,30710297,https://www.kaggle.com/rudymizrahi/daily-crypto-currency-and-lunar-geocentric-data,0.647058845,"[{'versionNumber': 1, 'creationDate': '2018-01-25T01:33:42.077Z', 'creatorName': 'RudyMizrahi', 'creatorRef': 'daily-crypto-currency-and-lunar-geocentric-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",917,8 +31,Ramanathan ,,7,"**Mobile App Statistics (Apple iOS app store)** +====================================== +The ever-changing mobile landscape is a challenging space to navigate. . The percentage of mobile over desktop is only increasing. Android holds about 53.2% of the smartphone market, while iOS is 43%. To get more people to download your app, you need to make sure they can easily find your app. Mobile app analytics is a great way to understand the existing strategy to drive growth and retention of future user. + +With million of apps around nowadays, the following data set has become very key to getting top trending apps in iOS app store. This data set contains more than 7000 Apple iOS mobile application details. The data was extracted from the [iTunes Search API](http://www.transtats.bhttps://developer.apple.com/library/content/documentation/AudioVideo/Conceptual/iTuneSearchAPI/SearchExamples.html#//apple_ref/doc/uid/TP40017632-CH6-SW1ts.gov/DatabaseInfo.asp?DB_ID=120&Link=0) at the Apple Inc website. R and linux web scraping tools were used for this study. + +**Data collection date (from API);** +July 2017 + +**Dimension of the data set;** +7197 rows and 16 columns + +**Content:** +------------ + +appleStore.csv +-------------- + +1. ""id"" : App ID + +2. ""track_name"": App Name + +3. ""size_bytes"": Size (in Bytes) + +4. ""currency"": Currency Type + +5. ""price"": Price amount + +6. ""rating_count_tot"": User Rating counts (for all version) + +7. ""rating_count_ver"": User Rating counts (for current version) + +8. ""user_rating"" : Average User Rating value (for all version) + +9. ""user_rating_ver"": Average User Rating value (for current version) + +10. ""ver"" : Latest version code + +11. ""cont_rating"": Content Rating + +12. ""prime_genre"": Primary Genre + +13. ""sup_devices.num"": Number of supporting devices + +14. ""ipadSc_urls.num"": Number of screenshots showed for display + +15. ""lang.num"": Number of supported languages + +16. ""vpp_lic"": Vpp Device Based Licensing Enabled + +appleStore_description.csv +-------------------------- + +1. id : App ID +2. track_name: Application name +3. size_bytes: Memory size (in Bytes) +4. app_desc: Application description + +# Acknowledgements +The data was extracted from the [iTunes Search API](http://www.transtats.bhttps://developer.apple.com/library/content/documentation/AudioVideo/Conceptual/iTuneSearchAPI/SearchExamples.html#//apple_ref/doc/uid/TP40017632-CH6-SW1ts.gov/DatabaseInfo.asp?DB_ID=120&Link=0) at the Apple Inc website. R and linux web scraping tools were used for this study. + +## Inspiration +1. *How does the App details contribute the user ratings?* +2. *Try to compare app statistics for different groups?* + +**Reference: R package** +From github, with +`devtools::install_github(""ramamet/applestoreR"")` + +## Licence +Copyright (c) 2018 Ramanathan Perumal + +",24257,"[{'ref': 'appleStore_description.csv', 'creationDate': '2018-06-10T07:04:29.279288Z', 'datasetRef': 'ramamet4/app-store-apple-data-set-10k-apps', 'description': '**Mobile App Description**\n----------\n Be familiar with what are the best practices for writing a great app description.\n \n**dimension of the data set**\n\n7197 rows and 4 columns\n\n**content**\n\n1. id : App ID\n2. track_name: Application name\n3. size_bytes: Memory size (in Bytes)\n4. app_desc: Application description \n\n\n', 'fileType': '.csv', 'name': 'appleStore_description.csv', 'ownerRef': 'ramamet4', 'totalBytes': 12965917, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'track_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'size_bytes', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'app_desc', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'AppleStore.csv', 'creationDate': '2018-06-10T07:04:28.9218727Z', 'datasetRef': 'ramamet4/app-store-apple-data-set-10k-apps', 'description': 'Apple Store ', 'fileType': '.csv', 'name': 'AppleStore.csv', 'ownerRef': 'ramamet4', 'totalBytes': 837657, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'track_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'size_bytes', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'currency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rating_count_tot', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rating_count_ver', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'user_rating', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'user_rating_ver', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'ver', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'cont_rating', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'prime_genre', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'sup_devices.num', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'ipadSc_urls.num', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'lang.num', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'vpp_lic', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",30069,False,False,True,73,2018-06-10T07:04:28.357Z,GPL 2,Ramanathan ,ramamet4,ramamet4/app-store-apple-data-set-10k-apps,Analytics for Mobile Apps,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'mobile web', 'competitionCount': 1, 'datasetCount': 14, 'description': None, 'fullPath': 'technology and applied sciences > computing > mobile web', 'isAutomatic': False, 'name': 'mobile web', 'scriptCount': 4, 'totalCount': 19}]",Mobile App Store ( 7200 apps),13,5904947,https://www.kaggle.com/ramamet4/app-store-apple-data-set-10k-apps,0.8235294,"[{'versionNumber': 7, 'creationDate': '2018-06-10T07:04:28.357Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'Final', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2018-06-10T07:02:08.57Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'version final', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2018-06-05T08:31:57.06Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'Final Version', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2018-06-05T08:13:38.897Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'Updated version', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-06-04T23:55:47.95Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'version2', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-06-04T23:29:49.93Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'version1', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-06-04T23:26:55.513Z', 'creatorName': 'Ramanathan ', 'creatorRef': 'app-store-apple-data-set-10k-apps', 'versionNotes': 'Initial release', 'status': 'Ready'}]",149319,559 +32,Cathie So,,1,"Crowdfunding has become one of the main sources of initial capital for small businesses and start-up companies that are looking to launch their first products. Websites like [Kickstarter](https://www.kickstarter.com) and [Indiegogo](https://www.indiegogo.com/) provide a platform for millions of creators to present their innovative ideas to the public. This is a win-win situation where creators could accumulate initial fund while the public get access to cutting-edge prototypical products that are not available in the market yet. + +At any given point, Indiegogo has around 10,000 live campaigns while Kickstarter has 6,000. It has become increasingly difficult for projects to stand out of the crowd. Of course, advertisements via various channels are by far the most important factor to a successful campaign. However, for creators with a smaller budget, this leaves them wonder, + +**""How do we increase the probability of success of our campaign starting from the very moment we create our project on these websites?""** + +# Data Sources +All of my raw data are scraped from [Kickstarter.com](https://www.kickstarter.com). + +1. First 4000 **live projects** that are currently campaigning on Kickstarter (live.csv) + - *Last updated: 2016-10-29 5pm PDT* + - amt.pledged: amount pledged (float) + - blurb: project blurb (string) + - by: project creator (string) + - country: abbreviated country code (string of length 2) + - currency: currency type of amt.pledged (string of length 3) + - end.time: campaign end time (string ""YYYY-MM-DDThh:mm:ss-TZD"") + - location: mostly city (string) + - pecentage.funded: unit % (int) + - state: mostly US states (string of length 2) and others (string) + - title: project title (string) + - type: type of location (string: County/Island/LocalAdmin/Suburb/Town/Zip) + - url: project url after domain (string) + +2. Top 4000 **most backed** projects ever on Kickstarter (most_backed.csv) + - *Last updated: 2016-10-30 10pm PDT* + - amt.pledged + - blurb + - by + - category: project category (string) + - currency + - goal: original pledge goal (float) + - location + - num.backers: total number of backers (int) + - num.backers.tier: number of backers corresponds to the pledge amount in pledge.tier (int[len(pledge.tier)]) + - pledge.tier: pledge tiers in USD (float[]) + - title + - url + +See more at http://datapolymath.paperplane.io/",4912,"[{'ref': 'live.csv', 'creationDate': '2016-11-01T05:36:36Z', 'datasetRef': 'socathie/kickstarter-project-statistics', 'description': 'First 4000 **live projects** that are currently campaigning on Kickstarter', 'fileType': '.csv', 'name': 'live.csv', 'ownerRef': 'socathie', 'totalBytes': 557569, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amt.pledged', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'blurb', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'by', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'country', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'currency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'end.time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'percentage.funded', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'most_backed.csv', 'creationDate': '2016-11-01T05:36:37Z', 'datasetRef': 'socathie/kickstarter-project-statistics', 'description': 'Top 4000 **most backed** projects ever on Kickstarter', 'fileType': '.csv', 'name': 'most_backed.csv', 'ownerRef': 'socathie', 'totalBytes': 750834, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'DateTime', 'originalType': 'Numeric', 'description': 'number'}, {'order': 1, 'name': 'amt.pledged', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'pledged'}, {'order': 2, 'name': 'blurb', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'by', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'category', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'currency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'goal', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'num.backers', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'backers'}, {'order': 9, 'name': 'num.backers.tier', 'type': 'String', 'originalType': 'String', 'description': 'backer_per_tier'}, {'order': 10, 'name': 'pledge.tier', 'type': 'String', 'originalType': 'String', 'description': 'tiers'}, {'order': 11, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'url', 'type': 'String', 'originalType': '', 'description': None}]}]",296,False,False,False,102,2016-11-01T05:37:42.683Z,CC BY-NC-SA 4.0,Cathie So,socathie,socathie/kickstarter-project-statistics,4000 live projects plus 4000 most backed projects,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",Kickstarter Project Statistics,2,1308381,https://www.kaggle.com/socathie/kickstarter-project-statistics,0.852941155,"[{'versionNumber': 1, 'creationDate': '2016-11-01T05:37:42.683Z', 'creatorName': 'Cathie So', 'creatorRef': 'kickstarter-project-statistics', 'versionNotes': 'Initial release', 'status': 'Ready'}]",40778,103 +33,Olga Belitskaya,,1,"### Context + +This data was extracted from the open database of quotations of currencies and precious metals located on the site of the Bank of Russia. +The link https://www.cbr.ru/Eng/statistics/?PrtId=finr is available for all internet users, the website is in Russian and in English. + +### Content + +It consists of 1128 observations of 23 variables. +Variables that indicating exchange rates are measured in rubles, the prices of precious metals are denoted in rubles per gram, foreign exchange. + +The special variable `dual currency basket` is calculated according to the formula: 0.55 USD + 0.45 EUR. + +The variables k_CNY, k_JPY are coefficients for the currencies values. + +Foreign exchange reserves and monetary gold reserves consist of official data points for every month about the state reserves in Russia. + +### Acknowledgements + +From publicly available data the files in 'xlsx' and 'csv' formats have been generated and downloaded. +They are absolutely free for usage. + +### Usage + +A set of financial indicators is suitable for training in the field of data visualization and learning simple regression algorithms.",97,"[{'ref': 'c_bank.csv', 'creationDate': '2017-11-06T00:11:15.239Z', 'datasetRef': 'olgabelitskaya/russian-financial-indicators', 'description': '', 'fileType': '.csv', 'name': 'c_bank.csv', 'ownerRef': 'olgabelitskaya', 'totalBytes': 125502, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'monetary_gold', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'foreign_exchange_reserves', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'gold', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'silver', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'platinum', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'palladium', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'dual_currency_basket', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'EUR_978', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'USD_840', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'JPY_392', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'CNY_156', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'INR_356', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'BRL_986', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'c_bank.xlsx', 'creationDate': '2017-11-06T00:09:25.547Z', 'datasetRef': 'olgabelitskaya/russian-financial-indicators', 'description': '', 'fileType': '.xlsx', 'name': 'c_bank.xlsx', 'ownerRef': 'olgabelitskaya', 'totalBytes': 240403, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'dual_currency_basket', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'EUR_978', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'USD_840', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'k_JPY', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'JPY_392_100', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'JPY_392', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'k_CNY', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'CNY_156_k', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'CNY_156', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'BRL_986', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'k_INR', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'INR_356_k', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'INR_356', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'gold', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'silver', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'platinum', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'palladium', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'foreign_exchange_reserves', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'monetary_gold', 'type': 'String', 'originalType': '', 'description': None}]}]",4064,False,False,False,1,2017-11-06T00:14:12.11Z,Other (specified in description),Olga Belitskaya,olgabelitskaya,olgabelitskaya/russian-financial-indicators,Dataset of Currency Rates ,[],Russian Financial Indicators,0,278978,https://www.kaggle.com/olgabelitskaya/russian-financial-indicators,0.5882353,"[{'versionNumber': 1, 'creationDate': '2017-11-06T00:14:12.11Z', 'creatorName': 'Olga Belitskaya', 'creatorRef': 'russian-financial-indicators', 'versionNotes': 'Initial release', 'status': 'Ready'}]",875,3 +34,Saroj Bhattarai,,4,,12,"[{'ref': '20.zip', 'creationDate': '2018-10-31T18:15:47.667Z', 'datasetRef': 'thevirusx3/nepali-currency', 'description': '', 'fileType': '.zip', 'name': '20.zip', 'ownerRef': 'thevirusx3', 'totalBytes': 1010240, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Compressed_Compressed_IMG_20181007_111106.jpg', 'creationDate': '2018-10-31T18:15:52.6898725Z', 'datasetRef': 'thevirusx3/nepali-currency', 'description': '', 'fileType': '.jpg', 'name': 'Compressed_Compressed_IMG_20181007_111106.jpg', 'ownerRef': 'thevirusx3', 'totalBytes': 1200012, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'FB49MKQ302Qad65T1Kd1R269.jpg', 'creationDate': '2018-10-31T18:15:52.9089543Z', 'datasetRef': 'thevirusx3/nepali-currency', 'description': '', 'fileType': '.jpg', 'name': 'FB49MKQ302Qad65T1Kd1R269.jpg', 'ownerRef': 'thevirusx3', 'totalBytes': 158892, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Money.zip', 'creationDate': '2018-10-31T18:15:53.2055214Z', 'datasetRef': 'thevirusx3/nepali-currency', 'description': '', 'fileType': '.zip', 'name': 'Money.zip', 'ownerRef': 'thevirusx3', 'totalBytes': 1071458459, 'url': 'https://www.kaggle.com/', 'columns': []}]",71635,False,False,False,1,2018-10-31T18:15:52.017Z,Unknown,Saroj Bhattarai,thevirusx3,thevirusx3/nepali-currency,,[],Nepali Currency,0,1073942714,https://www.kaggle.com/thevirusx3/nepali-currency,0.125,"[{'versionNumber': 4, 'creationDate': '2018-10-31T18:15:52.017Z', 'creatorName': 'Saroj Bhattarai', 'creatorRef': 'nepali-currency', 'versionNotes': 'aaaaa', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-10-31T17:55:16.66Z', 'creatorName': 'Saroj Bhattarai', 'creatorRef': 'nepali-currency', 'versionNotes': 'hhhh', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-10-31T17:36:45.58Z', 'creatorName': 'Saroj Bhattarai', 'creatorRef': 'nepali-currency', 'versionNotes': 'One another photo', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-10-31T17:03:09.65Z', 'creatorName': 'Saroj Bhattarai', 'creatorRef': 'nepali-currency', 'versionNotes': 'Initial release', 'status': 'Ready'}]",234,2 +35,Mark McDonald,,4,"### Context + +For the first time, Kaggle conducted an industry-wide survey to establish a comprehensive view of the state of data science and machine learning. The survey received over 16,000 responses and we learned a ton about who is working with data, what’s happening at the cutting edge of machine learning across industries, and how new data scientists can best break into the field. + +To share some of the initial insights from the survey, we’ve worked with the folks from [The Pudding](https://pudding.cool/) to put together [this interactive report](https://kaggle.com/surveys/2017). They’ve shared all of the kernels used in the report [here](https://www.kaggle.com/amberthomas/kaggle-2017-survey-results). + +### Content + +The data includes 5 files: + + - `schema.csv`: a CSV file with survey schema. This schema includes the questions that correspond to each column name in both the `multipleChoiceResponses.csv` and `freeformResponses.csv`. + - `multipleChoiceResponses.csv`: Respondents' answers to multiple choice and ranking questions. These are non-randomized and thus a single row does correspond to all of a single user's answers. + -`freeformResponses.csv`: Respondents' freeform answers to Kaggle's survey questions. These responses are randomized within a column, so that reading across a single row does not give a single user's answers. + - `conversionRates.csv`: Currency conversion rates (to USD) as accessed from the R package ""quantmod"" on September 14, 2017 + - `RespondentTypeREADME.txt`: This is a schema for decoding the responses in the ""Asked"" column of the `schema.csv` file. + +### Kernel Awards in November +In the month of November, we’re awarding $1000 a week for code and analyses shared on this dataset via [Kaggle Kernels](https://www.kaggle.com/kaggle/kaggle-survey-2017/kernels). Read more about this month’s [Kaggle Kernels Awards](https://www.kaggle.com/about/datasets-awards/kernels) and help us advance the state of machine learning and data science by exploring this one of a kind dataset. + +### Methodology + - This survey received 16,716 usable respondents from 171 countries and territories. If a country or territory received less than 50 respondents, we grouped them into a group named “Other” for anonymity. + - We excluded respondents who were flagged by our survey system as “Spam” or who did not answer the question regarding their employment status (this question was the first required question, so not answering it indicates that the respondent did not proceed past the 5th question in our survey). + - Most of our respondents were found primarily through Kaggle channels, like our email list, discussion forums and social media channels. + - The survey was live from August 7th to August 25th. The median response time for those who participated in the survey was 16.4 minutes. We allowed respondents to complete the survey at any time during that window. + - We received salary data by first asking respondents for their day-to-day currency, and then asking them to write in either their total compensation. + - We’ve provided a csv with an exchange rate to USD for you to calculate the salary in US dollars on your own. + - The question was optional + - Not every question was shown to every respondent. In an attempt to ask relevant questions to each respondent, we generally asked work related questions to employed data scientists and learning related questions to students. There is a column in the `schema.csv` file called ""Asked"" that describes who saw each question. You can learn more about the different segments we used in the `schema.csv` file and `RespondentTypeREADME.txt` in the data tab. + - To protect the respondents’ identity, the answers to multiple choice questions have been separated into a separate data file from the open-ended responses. We do not provide a key to match up the multiple choice and free form responses. Further, the free form responses have been randomized column-wise such that the responses that appear on the same row did not necessarily come from the same survey-taker. +",16040,"[{'ref': 'conversionRates.csv', 'creationDate': '2017-10-27T22:03:01.7317048Z', 'datasetRef': 'kaggle/kaggle-survey-2017', 'description': 'Currency conversion rates (to USD) as accessed from the R package ""quantmod"" on September 14, 2017.', 'fileType': '.csv', 'name': 'conversionRates.csv', 'ownerRef': 'kaggle', 'totalBytes': 1877, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'originCountry', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'exchangeRate', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'freeformResponses.csv', 'creationDate': '2017-10-27T22:03:01.7317048Z', 'datasetRef': 'kaggle/kaggle-survey-2017', 'description': ""Respondents' freeform answers to Kaggle's survey questions. These responses are randomized within a column, so that reading across a single row does not give a single user's answers."", 'fileType': '.csv', 'name': 'freeformResponses.csv', 'ownerRef': 'kaggle', 'totalBytes': 719774, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'GenderFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'KaggleMotivationFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'CurrentJobTitleFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'MLToolNextYearFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'MLMethodNextYearFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'LanguageRecommendationFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'PublicDatasetsFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'PersonalProjectsChallengeFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'LearningPlatformCommunityFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'LearningPlatformFreeForm1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'LearningPlatformFreeForm2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'LearningPlatformFreeForm3', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'LearningPlatformUsefulnessCommunitiesFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'LearningPlatformUsefulnessFreeForm1Select', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'LearningPlatformUsefulnessFreeForm1SelectFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'LearningPlatformUsefulnessFreeForm2Select', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'LearningPlatformUsefulnessFreeForm2SelectFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'LearningPlatformUsefulnessFreeForm3Select', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'LearningPlatformUsefulnessFreeForm3SelectFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BlogsPodcastsNewslettersFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'JobSkillImportanceOtherSelect1FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'JobSkillImportanceOtherSelect2FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'JobSkillImportanceOtherSelect3FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'CoursePlatformFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'HardwarePersonalProjectsFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'ProveKnowledgeFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'ImpactfulAlgorithmFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'InterestingProblemFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'DataScienceIdentityFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'MajorFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'PastJobTitlesFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'FirstTrainingFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'LearningCategoryOtherFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'MLSkillsFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'MLTechniquesFreeform', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'EmployerIndustryOtherFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'EmployerSearchMethodOtherFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'JobFunctionFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 38, 'name': 'WorkHardwareFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'WorkDataTypeFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'WorkLibrariesFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'WorkAlgorithmsFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'WorkToolsFreeForm1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'WorkToolsFreeForm2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'WorkToolsFreeForm3', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'WorkToolsFrequencySelect1FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'WorkFrequencySelect2FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'WorkFrequencySelect3FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'WorkMethodsFreeForm1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'WorkMethodsFreeForm2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'WorkMethodsFreeForm3', 'type': 'String', 'originalType': '', 'description': None}, {'order': 51, 'name': 'WorkMethodsFrequencySelect1FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 52, 'name': 'WorkMethodsFrequencySelect2FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 53, 'name': 'WorkMethodsFrequencySelect3FreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 54, 'name': 'TimeOtherSelectFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 55, 'name': 'WorkChallengesFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 56, 'name': 'WorkChallengeFrequencyOtherFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 57, 'name': 'WorkMLTeamSeatFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 58, 'name': 'WorkDataStorageFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 59, 'name': 'WorkCodeSharingFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 60, 'name': 'SalaryChangeFreeForm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 61, 'name': 'JobSearchResourceFreeForm', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'multipleChoiceResponses.csv', 'creationDate': '2017-10-27T22:02:54.21Z', 'datasetRef': 'kaggle/kaggle-survey-2017', 'description': ""Respondents' answers to multiple choice and ranking questions. These are non-randomized and thus a single row does correspond to all of a single user's answers."", 'fileType': '.csv', 'name': 'multipleChoiceResponses.csv', 'ownerRef': 'kaggle', 'totalBytes': 24876561, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'GenderSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Country', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Age', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'EmploymentStatus', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'StudentStatus', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'LearningDataScience', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'CodeWriter', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'CareerSwitcher', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'CurrentJobTitleSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'TitleFit', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'CurrentEmployerType', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'MLToolNextYearSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'MLMethodNextYearSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'LanguageRecommendationSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'PublicDatasetsSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'LearningPlatformSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'LearningPlatformUsefulnessArxiv', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'LearningPlatformUsefulnessBlogs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'LearningPlatformUsefulnessCollege', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'LearningPlatformUsefulnessCompany', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'LearningPlatformUsefulnessConferences', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'LearningPlatformUsefulnessFriends', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'LearningPlatformUsefulnessKaggle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'LearningPlatformUsefulnessNewsletters', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'LearningPlatformUsefulnessCommunities', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'LearningPlatformUsefulnessDocumentation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'LearningPlatformUsefulnessCourses', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'LearningPlatformUsefulnessProjects', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'LearningPlatformUsefulnessPodcasts', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'LearningPlatformUsefulnessSO', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'LearningPlatformUsefulnessTextbook', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'LearningPlatformUsefulnessTradeBook', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'LearningPlatformUsefulnessTutoring', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'LearningPlatformUsefulnessYouTube', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'BlogsPodcastsNewslettersSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'LearningDataScienceTime', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'JobSkillImportanceBigData', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'JobSkillImportanceDegree', 'type': 'String', 'originalType': '', 'description': None}, {'order': 38, 'name': 'JobSkillImportanceStats', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'JobSkillImportanceEnterpriseTools', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'JobSkillImportancePython', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'JobSkillImportanceR', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'JobSkillImportanceSQL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'JobSkillImportanceKaggleRanking', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'JobSkillImportanceMOOC', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'JobSkillImportanceVisualizations', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'JobSkillImportanceOtherSelect1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'JobSkillImportanceOtherSelect2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'JobSkillImportanceOtherSelect3', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'CoursePlatformSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'HardwarePersonalProjectsSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 51, 'name': 'TimeSpentStudying', 'type': 'String', 'originalType': '', 'description': None}, {'order': 52, 'name': 'ProveKnowledgeSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 53, 'name': 'DataScienceIdentitySelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 54, 'name': 'FormalEducation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MajorSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Tenure', 'type': 'String', 'originalType': '', 'description': None}, {'order': 57, 'name': 'PastJobTitlesSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 58, 'name': 'FirstTrainingSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 59, 'name': 'LearningCategorySelftTaught', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'LearningCategoryOnlineCourses', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'LearningCategoryWork', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'LearningCategoryUniversity', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'LearningCategoryKaggle', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'LearningCategoryOther', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'MLSkillsSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 66, 'name': 'MLTechniquesSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 67, 'name': 'ParentsEducation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 68, 'name': 'EmployerIndustry', 'type': 'String', 'originalType': '', 'description': None}, {'order': 69, 'name': 'EmployerSize', 'type': 'String', 'originalType': '', 'description': None}, {'order': 70, 'name': 'EmployerSizeChange', 'type': 'String', 'originalType': '', 'description': None}, {'order': 71, 'name': 'EmployerMLTime', 'type': 'String', 'originalType': '', 'description': None}, {'order': 72, 'name': 'EmployerSearchMethod', 'type': 'String', 'originalType': '', 'description': None}, {'order': 73, 'name': 'UniversityImportance', 'type': 'String', 'originalType': '', 'description': None}, {'order': 74, 'name': 'JobFunctionSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 75, 'name': 'WorkHardwareSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 76, 'name': 'WorkDataTypeSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 77, 'name': 'WorkProductionFrequency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 78, 'name': 'WorkDatasetSize', 'type': 'String', 'originalType': '', 'description': None}, {'order': 79, 'name': 'WorkAlgorithmsSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 80, 'name': 'WorkToolsSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 81, 'name': 'WorkToolsFrequencyAmazonML', 'type': 'String', 'originalType': '', 'description': None}, {'order': 82, 'name': 'WorkToolsFrequencyAWS', 'type': 'String', 'originalType': '', 'description': None}, {'order': 83, 'name': 'WorkToolsFrequencyAngoss', 'type': 'String', 'originalType': '', 'description': None}, {'order': 84, 'name': 'WorkToolsFrequencyC', 'type': 'String', 'originalType': '', 'description': None}, {'order': 85, 'name': 'WorkToolsFrequencyCloudera', 'type': 'String', 'originalType': '', 'description': None}, {'order': 86, 'name': 'WorkToolsFrequencyDataRobot', 'type': 'String', 'originalType': '', 'description': None}, {'order': 87, 'name': 'WorkToolsFrequencyFlume', 'type': 'String', 'originalType': '', 'description': None}, {'order': 88, 'name': 'WorkToolsFrequencyGCP', 'type': 'String', 'originalType': '', 'description': None}, {'order': 89, 'name': 'WorkToolsFrequencyHadoop', 'type': 'String', 'originalType': '', 'description': None}, {'order': 90, 'name': 'WorkToolsFrequencyIBMCognos', 'type': 'String', 'originalType': '', 'description': None}, {'order': 91, 'name': 'WorkToolsFrequencyIBMSPSSModeler', 'type': 'String', 'originalType': '', 'description': None}, {'order': 92, 'name': 'WorkToolsFrequencyIBMSPSSStatistics', 'type': 'String', 'originalType': '', 'description': None}, {'order': 93, 'name': 'WorkToolsFrequencyIBMWatson', 'type': 'String', 'originalType': '', 'description': None}, {'order': 94, 'name': 'WorkToolsFrequencyImpala', 'type': 'String', 'originalType': '', 'description': None}, {'order': 95, 'name': 'WorkToolsFrequencyJava', 'type': 'String', 'originalType': '', 'description': None}, {'order': 96, 'name': 'WorkToolsFrequencyJulia', 'type': 'String', 'originalType': '', 'description': None}, {'order': 97, 'name': 'WorkToolsFrequencyJupyter', 'type': 'String', 'originalType': '', 'description': None}, {'order': 98, 'name': 'WorkToolsFrequencyKNIMECommercial', 'type': 'String', 'originalType': '', 'description': None}, {'order': 99, 'name': 'WorkToolsFrequencyKNIMEFree', 'type': 'String', 'originalType': '', 'description': None}, {'order': 100, 'name': 'WorkToolsFrequencyMathematica', 'type': 'String', 'originalType': '', 'description': None}, {'order': 101, 'name': 'WorkToolsFrequencyMATLAB', 'type': 'String', 'originalType': '', 'description': None}, {'order': 102, 'name': 'WorkToolsFrequencyAzure', 'type': 'String', 'originalType': '', 'description': None}, {'order': 103, 'name': 'WorkToolsFrequencyExcel', 'type': 'String', 'originalType': '', 'description': None}, {'order': 104, 'name': 'WorkToolsFrequencyMicrosoftRServer', 'type': 'String', 'originalType': '', 'description': None}, {'order': 105, 'name': 'WorkToolsFrequencyMicrosoftSQL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 106, 'name': 'WorkToolsFrequencyMinitab', 'type': 'String', 'originalType': '', 'description': None}, {'order': 107, 'name': 'WorkToolsFrequencyNoSQL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 108, 'name': 'WorkToolsFrequencyOracle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 109, 'name': 'WorkToolsFrequencyOrange', 'type': 'String', 'originalType': '', 'description': None}, {'order': 110, 'name': 'WorkToolsFrequencyPerl', 'type': 'String', 'originalType': '', 'description': None}, {'order': 111, 'name': 'WorkToolsFrequencyPython', 'type': 'String', 'originalType': '', 'description': None}, {'order': 112, 'name': 'WorkToolsFrequencyQlik', 'type': 'String', 'originalType': '', 'description': None}, {'order': 113, 'name': 'WorkToolsFrequencyR', 'type': 'String', 'originalType': '', 'description': None}, {'order': 114, 'name': 'WorkToolsFrequencyRapidMinerCommercial', 'type': 'String', 'originalType': '', 'description': None}, {'order': 115, 'name': 'WorkToolsFrequencyRapidMinerFree', 'type': 'String', 'originalType': '', 'description': None}, {'order': 116, 'name': 'WorkToolsFrequencySalfrod', 'type': 'String', 'originalType': '', 'description': None}, {'order': 117, 'name': 'WorkToolsFrequencySAPBusinessObjects', 'type': 'String', 'originalType': '', 'description': None}, {'order': 118, 'name': 'WorkToolsFrequencySASBase', 'type': 'String', 'originalType': '', 'description': None}, {'order': 119, 'name': 'WorkToolsFrequencySASEnterprise', 'type': 'String', 'originalType': '', 'description': None}, {'order': 120, 'name': 'WorkToolsFrequencySASJMP', 'type': 'String', 'originalType': '', 'description': None}, {'order': 121, 'name': 'WorkToolsFrequencySpark', 'type': 'String', 'originalType': '', 'description': None}, {'order': 122, 'name': 'WorkToolsFrequencySQL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 123, 'name': 'WorkToolsFrequencyStan', 'type': 'String', 'originalType': '', 'description': None}, {'order': 124, 'name': 'WorkToolsFrequencyStatistica', 'type': 'String', 'originalType': '', 'description': None}, {'order': 125, 'name': 'WorkToolsFrequencyTableau', 'type': 'String', 'originalType': '', 'description': None}, {'order': 126, 'name': 'WorkToolsFrequencyTensorFlow', 'type': 'String', 'originalType': '', 'description': None}, {'order': 127, 'name': 'WorkToolsFrequencyTIBCO', 'type': 'String', 'originalType': '', 'description': None}, {'order': 128, 'name': 'WorkToolsFrequencyUnix', 'type': 'String', 'originalType': '', 'description': None}, {'order': 129, 'name': 'WorkToolsFrequencySelect1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 130, 'name': 'WorkToolsFrequencySelect2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 131, 'name': 'WorkFrequencySelect3', 'type': 'String', 'originalType': '', 'description': None}, {'order': 132, 'name': 'WorkMethodsSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 133, 'name': 'WorkMethodsFrequencyA/B', 'type': 'String', 'originalType': '', 'description': None}, {'order': 134, 'name': 'WorkMethodsFrequencyAssociationRules', 'type': 'String', 'originalType': '', 'description': None}, {'order': 135, 'name': 'WorkMethodsFrequencyBayesian', 'type': 'String', 'originalType': '', 'description': None}, {'order': 136, 'name': 'WorkMethodsFrequencyCNNs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 137, 'name': 'WorkMethodsFrequencyCollaborativeFiltering', 'type': 'String', 'originalType': '', 'description': None}, {'order': 138, 'name': 'WorkMethodsFrequencyCross-Validation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 139, 'name': 'WorkMethodsFrequencyDataVisualization', 'type': 'String', 'originalType': '', 'description': None}, {'order': 140, 'name': 'WorkMethodsFrequencyDecisionTrees', 'type': 'String', 'originalType': '', 'description': None}, {'order': 141, 'name': 'WorkMethodsFrequencyEnsembleMethods', 'type': 'String', 'originalType': '', 'description': None}, {'order': 142, 'name': 'WorkMethodsFrequencyEvolutionaryApproaches', 'type': 'String', 'originalType': '', 'description': None}, {'order': 143, 'name': 'WorkMethodsFrequencyGANs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 144, 'name': 'WorkMethodsFrequencyGBM', 'type': 'String', 'originalType': '', 'description': None}, {'order': 145, 'name': 'WorkMethodsFrequencyHMMs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 146, 'name': 'WorkMethodsFrequencyKNN', 'type': 'String', 'originalType': '', 'description': None}, {'order': 147, 'name': 'WorkMethodsFrequencyLiftAnalysis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 148, 'name': 'WorkMethodsFrequencyLogisticRegression', 'type': 'String', 'originalType': '', 'description': None}, {'order': 149, 'name': 'WorkMethodsFrequencyMLN', 'type': 'String', 'originalType': '', 'description': None}, {'order': 150, 'name': 'WorkMethodsFrequencyNaiveBayes', 'type': 'String', 'originalType': '', 'description': None}, {'order': 151, 'name': 'WorkMethodsFrequencyNLP', 'type': 'String', 'originalType': '', 'description': None}, {'order': 152, 'name': 'WorkMethodsFrequencyNeuralNetworks', 'type': 'String', 'originalType': '', 'description': None}, {'order': 153, 'name': 'WorkMethodsFrequencyPCA', 'type': 'String', 'originalType': '', 'description': None}, {'order': 154, 'name': 'WorkMethodsFrequencyPrescriptiveModeling', 'type': 'String', 'originalType': '', 'description': None}, {'order': 155, 'name': 'WorkMethodsFrequencyRandomForests', 'type': 'String', 'originalType': '', 'description': None}, {'order': 156, 'name': 'WorkMethodsFrequencyRecommenderSystems', 'type': 'String', 'originalType': '', 'description': None}, {'order': 157, 'name': 'WorkMethodsFrequencyRNNs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 158, 'name': 'WorkMethodsFrequencySegmentation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 159, 'name': 'WorkMethodsFrequencySimulation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 160, 'name': 'WorkMethodsFrequencySVMs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 161, 'name': 'WorkMethodsFrequencyTextAnalysis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 162, 'name': 'WorkMethodsFrequencyTimeSeriesAnalysis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 163, 'name': 'WorkMethodsFrequencySelect1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 164, 'name': 'WorkMethodsFrequencySelect2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 165, 'name': 'WorkMethodsFrequencySelect3', 'type': 'String', 'originalType': '', 'description': None}, {'order': 166, 'name': 'TimeGatheringData', 'type': 'String', 'originalType': '', 'description': None}, {'order': 167, 'name': 'TimeModelBuilding', 'type': 'String', 'originalType': '', 'description': None}, {'order': 168, 'name': 'TimeProduction', 'type': 'String', 'originalType': '', 'description': None}, {'order': 169, 'name': 'TimeVisualizing', 'type': 'String', 'originalType': '', 'description': None}, {'order': 170, 'name': 'TimeFindingInsights', 'type': 'String', 'originalType': '', 'description': None}, {'order': 171, 'name': 'TimeOtherSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 172, 'name': 'AlgorithmUnderstandingLevel', 'type': 'String', 'originalType': '', 'description': None}, {'order': 173, 'name': 'WorkChallengesSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 174, 'name': 'WorkChallengeFrequencyPolitics', 'type': 'String', 'originalType': '', 'description': None}, {'order': 175, 'name': 'WorkChallengeFrequencyUnusedResults', 'type': 'String', 'originalType': '', 'description': None}, {'order': 176, 'name': 'WorkChallengeFrequencyUnusefulInstrumenting', 'type': 'String', 'originalType': '', 'description': None}, {'order': 177, 'name': 'WorkChallengeFrequencyDeployment', 'type': 'String', 'originalType': '', 'description': None}, {'order': 178, 'name': 'WorkChallengeFrequencyDirtyData', 'type': 'String', 'originalType': '', 'description': None}, {'order': 179, 'name': 'WorkChallengeFrequencyExplaining', 'type': 'String', 'originalType': '', 'description': None}, {'order': 180, 'name': 'WorkChallengeFrequencyPass', 'type': 'String', 'originalType': '', 'description': None}, {'order': 181, 'name': 'WorkChallengeFrequencyIntegration', 'type': 'String', 'originalType': '', 'description': None}, {'order': 182, 'name': 'WorkChallengeFrequencyTalent', 'type': 'String', 'originalType': '', 'description': None}, {'order': 183, 'name': 'WorkChallengeFrequencyDataFunds', 'type': 'String', 'originalType': '', 'description': None}, {'order': 184, 'name': 'WorkChallengeFrequencyDomainExpertise', 'type': 'String', 'originalType': '', 'description': None}, {'order': 185, 'name': 'WorkChallengeFrequencyML', 'type': 'String', 'originalType': '', 'description': None}, {'order': 186, 'name': 'WorkChallengeFrequencyTools', 'type': 'String', 'originalType': '', 'description': None}, {'order': 187, 'name': 'WorkChallengeFrequencyExpectations', 'type': 'String', 'originalType': '', 'description': None}, {'order': 188, 'name': 'WorkChallengeFrequencyITCoordination', 'type': 'String', 'originalType': '', 'description': None}, {'order': 189, 'name': 'WorkChallengeFrequencyHiringFunds', 'type': 'String', 'originalType': '', 'description': None}, {'order': 190, 'name': 'WorkChallengeFrequencyPrivacy', 'type': 'String', 'originalType': '', 'description': None}, {'order': 191, 'name': 'WorkChallengeFrequencyScaling', 'type': 'String', 'originalType': '', 'description': None}, {'order': 192, 'name': 'WorkChallengeFrequencyEnvironments', 'type': 'String', 'originalType': '', 'description': None}, {'order': 193, 'name': 'WorkChallengeFrequencyClarity', 'type': 'String', 'originalType': '', 'description': None}, {'order': 194, 'name': 'WorkChallengeFrequencyDataAccess', 'type': 'String', 'originalType': '', 'description': None}, {'order': 195, 'name': 'WorkChallengeFrequencyOtherSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 196, 'name': 'WorkDataVisualizations', 'type': 'String', 'originalType': '', 'description': None}, {'order': 197, 'name': 'WorkInternalVsExternalTools', 'type': 'String', 'originalType': '', 'description': None}, {'order': 198, 'name': 'WorkMLTeamSeatSelect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 199, 'name': 'WorkDatasets', 'type': 'String', 'originalType': '', 'description': None}, {'order': 200, 'name': 'WorkDatasetsChallenge', 'type': 'String', 'originalType': '', 'description': None}, {'order': 201, 'name': 'WorkDataStorage', 'type': 'String', 'originalType': '', 'description': None}, {'order': 202, 'name': 'WorkDataSharing', 'type': 'String', 'originalType': '', 'description': None}, {'order': 203, 'name': 'WorkDataSourcing', 'type': 'String', 'originalType': '', 'description': None}, {'order': 204, 'name': 'WorkCodeSharing', 'type': 'String', 'originalType': '', 'description': None}, {'order': 205, 'name': 'RemoteWork', 'type': 'String', 'originalType': '', 'description': None}, {'order': 206, 'name': 'CompensationAmount', 'type': 'String', 'originalType': '', 'description': None}, {'order': 207, 'name': 'CompensationCurrency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 208, 'name': 'SalaryChange', 'type': 'String', 'originalType': '', 'description': None}, {'order': 209, 'name': 'JobSatisfaction', 'type': 'String', 'originalType': '', 'description': None}, {'order': 210, 'name': 'JobSearchResource', 'type': 'String', 'originalType': '', 'description': None}, {'order': 211, 'name': 'JobHuntTime', 'type': 'String', 'originalType': '', 'description': None}, {'order': 212, 'name': 'JobFactorLearning', 'type': 'String', 'originalType': '', 'description': None}, {'order': 213, 'name': 'JobFactorSalary', 'type': 'String', 'originalType': '', 'description': None}, {'order': 214, 'name': 'JobFactorOffice', 'type': 'String', 'originalType': '', 'description': None}, {'order': 215, 'name': 'JobFactorLanguages', 'type': 'String', 'originalType': '', 'description': None}, {'order': 216, 'name': 'JobFactorCommute', 'type': 'String', 'originalType': '', 'description': None}, {'order': 217, 'name': 'JobFactorManagement', 'type': 'String', 'originalType': '', 'description': None}, {'order': 218, 'name': 'JobFactorExperienceLevel', 'type': 'String', 'originalType': '', 'description': None}, {'order': 219, 'name': 'JobFactorDepartment', 'type': 'String', 'originalType': '', 'description': None}, {'order': 220, 'name': 'JobFactorTitle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 221, 'name': 'JobFactorCompanyFunding', 'type': 'String', 'originalType': '', 'description': None}, {'order': 222, 'name': 'JobFactorImpact', 'type': 'String', 'originalType': '', 'description': None}, {'order': 223, 'name': 'JobFactorRemote', 'type': 'String', 'originalType': '', 'description': None}, {'order': 224, 'name': 'JobFactorIndustry', 'type': 'String', 'originalType': '', 'description': None}, {'order': 225, 'name': 'JobFactorLeaderReputation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 226, 'name': 'JobFactorDiversity', 'type': 'String', 'originalType': '', 'description': None}, {'order': 227, 'name': 'JobFactorPublishingOpportunity', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'RespondentTypeREADME.txt', 'creationDate': '2017-10-27T22:03:01.7317048Z', 'datasetRef': 'kaggle/kaggle-survey-2017', 'description': 'This is a schema for decoding the responses in the ""Asked"" column of the schema.csv file.', 'fileType': '.txt', 'name': 'RespondentTypeREADME.txt', 'ownerRef': 'kaggle', 'totalBytes': 1032, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'schema.csv', 'creationDate': '2017-10-27T22:03:01.7317048Z', 'datasetRef': 'kaggle/kaggle-survey-2017', 'description': 'A CSV file with survey schema. This schema includes the questions that correspond to each column name in both the multipleChoiceResponses.csv and freeformResponses.csv.', 'fileType': '.csv', 'name': 'schema.csv', 'ownerRef': 'kaggle', 'totalBytes': 42779, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Column', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Question', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Asked', 'type': 'String', 'originalType': '', 'description': None}]}]",2733,False,False,True,296,2017-10-27T22:03:03.417Z,"Database: Open Database, Contents: © Original Authors",Kaggle,kaggle,kaggle/kaggle-survey-2017,A big picture view of the state of data science and machine learning.,"[{'ref': 'artificial intelligence', 'competitionCount': 1, 'datasetCount': 70, 'description': 'This tag has datasets and kernels where people come together and use cutting-edge research to train models on pictures of cats.', 'fullPath': 'technology and applied sciences > computing > artificial intelligence', 'isAutomatic': False, 'name': 'artificial intelligence', 'scriptCount': 45, 'totalCount': 116}, {'ref': 'employment', 'competitionCount': 1, 'datasetCount': 51, 'description': 'Where does it pay to attend college? What impacts employee satisfaction and what makes them quit their jobs? Explore these questions and others in kernels and datasets with this tag.', 'fullPath': 'people and self > personal life > employment', 'isAutomatic': False, 'name': 'employment', 'scriptCount': 11, 'totalCount': 63}, {'ref': 'sociology', 'competitionCount': 0, 'datasetCount': 34, 'description': 'Sociology is the study of society, including patterns of social relationships, and culture. Why are there so many people in the gym right now? What do young people do with their time? What do people tweet about in the morning?', 'fullPath': 'society and social sciences > social sciences > sociology', 'isAutomatic': False, 'name': 'sociology', 'scriptCount': 6, 'totalCount': 40}]",Kaggle Machine Learning & Data Science Survey 2017,10,3692041,https://www.kaggle.com/kaggle/kaggle-survey-2017,0.8235294,"[{'versionNumber': 4, 'creationDate': '2017-10-27T22:03:03.417Z', 'creatorName': 'Mark McDonald', 'creatorRef': 'kaggle-survey-2017', 'versionNotes': 'Adjusted commas in multiple answer choices', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-10-02T17:42:37.36Z', 'creatorName': 'Mark McDonald', 'creatorRef': 'kaggle-survey-2017', 'versionNotes': 'Schema updated', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-10-02T17:29:22.82Z', 'creatorName': 'Mark McDonald', 'creatorRef': 'kaggle-survey-2017', 'versionNotes': 'Insufficient responses removed', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-09-28T17:11:06.713Z', 'creatorName': 'Mark McDonald', 'creatorRef': 'kaggle-survey-2017', 'versionNotes': 'Initial release', 'status': 'Ready'}]",147991,717 +36,Tarun Pandey,,1,,48,"[{'ref': 'indian_notes.zip', 'creationDate': '2018-10-11T14:00:30.229Z', 'datasetRef': 'trnpandey/indiannew-currency-notes', 'description': '', 'fileType': '.zip', 'name': 'indian_notes.zip', 'ownerRef': 'trnpandey', 'totalBytes': 11519162, 'url': 'https://www.kaggle.com/', 'columns': []}]",63261,False,False,False,1,2018-10-11T14:00:34.55Z,Data files © Original Authors,Tarun Pandey,trnpandey,trnpandey/indiannew-currency-notes,,[],IndianNew Currency Notes,0,11519162,https://www.kaggle.com/trnpandey/indiannew-currency-notes,0.25,"[{'versionNumber': 1, 'creationDate': '2018-10-11T14:00:34.55Z', 'creatorName': 'Tarun Pandey', 'creatorRef': 'indiannew-currency-notes', 'versionNotes': 'Initial release', 'status': 'Ready'}]",289,2 +37,Jacob Boysen,,1,"### Context: +Global food price fluctuations can cause famine and large population shifts. Price changes are increasingly critical to policymakers as global warming threatens to destabilize the food supply. + +### Content: +Over 740k rows of prices obtained in developing world markets for various goods. Data includes information on country, market, price of good in local currency, quantity of good, and month recorded. + +### Acknowledgements: +Compiled by the [World Food Program](http://www1.wfp.org/) and distributed by [HDX](https://data.humdata.org/dataset/wfp-food-prices). + +### Inspiration: +This data would be particularly interesting to pair with currency fluctuations, weather patterns, and/or refugee movements--do any price changes in certain staples predict population upheaval? Do certain weather conditions influence market prices? + +### License: +Released under [CC BY-IGO](https://creativecommons.org/licenses/by/3.0/igo/legalcode).",3675,"[{'ref': 'wfp_market_food_prices.csv', 'creationDate': '2017-08-03T20:49:04Z', 'datasetRef': 'jboysen/global-food-prices', 'description': 'Single .csv with >740k rows. Data includes country, locality, market, goods purchased, price & currency used, quantity exchanged, and month/year of purchase.\n\n* adm0_id: country id\n* adm0_name: country name\n* adm1_id: locality id\n* adm1_name: locality name\n* mkt_id: market id\n* mkt_name: market name\n* cm_id: commodity purchase id\n* cm_name: commodity purchased\n* cur_id: currency id\n* cur_name: name of currency\n* pt_id: market type id\n* pt_name: market type (Retail/Wholesale/Producer/Farm Gate)\n* um_id: measurement id\n* um_name: unit of goods measurement\n* mp_month: month recorded\n* mp_year: year recorded\n*mp_price: price paid\n* mp_commoditysource: Source supplying price information\n', 'fileType': '.csv', 'name': 'wfp_market_food_prices.csv', 'ownerRef': 'jboysen', 'totalBytes': 4624870, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'adm0_id', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'country id'}, {'order': 1, 'name': 'adm0_name', 'type': 'String', 'originalType': 'String', 'description': 'country name'}, {'order': 2, 'name': 'adm1_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'adm1_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'mkt_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'mkt_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'cm_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'cm_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'cur_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'cur_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'pt_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'pt_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'um_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'um_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'mp_month', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'mp_year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'mp_price', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'mp_commoditysource', 'type': 'String', 'originalType': '', 'description': None}]}]",1820,False,False,True,6,2017-08-03T20:52:44.033Z,Other (specified in description),Jacob Boysen,jboysen,jboysen/global-food-prices,743k Rows of Monthly Market Food Prices Across Developing Countries,"[{'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'food and drink', 'competitionCount': 6, 'datasetCount': 145, 'description': ""If you love food and drink, don't look in this tag unless you want to ruin your day by learning how many calories burritos have. On the other hand, do look into these datasets and kernels for general nutrition facts, restaurant ratings, and various food and drink related reviews."", 'fullPath': 'culture and arts > culture and humanities > food and drink', 'isAutomatic': False, 'name': 'food and drink', 'scriptCount': 346, 'totalCount': 497}]",Global Food Prices,0,4624870,https://www.kaggle.com/jboysen/global-food-prices,0.852941155,"[{'versionNumber': 1, 'creationDate': '2017-08-03T20:52:44.033Z', 'creatorName': 'Jacob Boysen', 'creatorRef': 'global-food-prices', 'versionNotes': 'Initial release', 'status': 'Ready'}]",22862,78 +38,shan,,3,"Withdrawal of a particular form of currency (such a gold coins, currency notes) from circulation is known as demonetization . +------------------------------------------------------------------------ + +**Context:** + +On November 8th, India’s Prime Minister announced that 86% of the country’s currency would be rendered null and void in 50 days and it will withdraw all 500 and 1,000 rupee notes — the country’s most popular currency denominations from circulation, while a new 2,000 rupee note added in. It was posited as a move to crackdown on corruption and the country’s booming under-regulated and virtually untaxed grassroots economy. + +**Content:** + +***The field names are following:*** + +ID +QUERY +TWEET_ID +INSERTED DATE +TRUNCATED +LANGUAGE +possibly_sensitive coordinates +retweeted_status +created_at_text +created_at +CONTENT +from_user_screen_name +from_user_id from_user_followers_count +from_user_friends_count +from_user_listed_count +from_user_statuses_count +from_user_description +from_user_location +from_user_created_at +retweet_count +entities_urls +entities_urls_counts +entities_hashtags +entities_hashtags_counts +entities_mentions +entities_mentions_counts +in_reply_to_screen_name +in_reply_to_status_id +source +entities_expanded_urls +json_output +entities_media_count +media_expanded_url +media_url +media_type +video_link +photo_link +twitpic + + +**Acknowledgements:** + +Dataset is created by pulling tweets by hashtag from twitter. + +**Inspiration:** + +Dataset can be used to understand trending tweets. +Dataset can be used for sentiment analysis and topic mining. +Dataset can be used for time series analysis of tweets. + +**What questions would you like answered by the community ?** + +What is the general sentiment of tweets ? +Conclusion regarding tweet sentiments varying over time. + +**What feedback would be helpful on the data itself ?** + +An in depth analysis of data.",2408,"[{'ref': 'Demonetization_data29th.csv', 'creationDate': '2017-01-17T14:05:23Z', 'datasetRef': 'shan4224/demonetization-in-india', 'description': 'Demonetization : Collected tweets till 29/11/2016', 'fileType': '.csv', 'name': 'Demonetization_data29th.csv', 'ownerRef': 'shan4224', 'totalBytes': 5093071, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'QUERY', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'TWEET_ID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'INSERTED DATE', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'TRUNCATED', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'LANGUAGE', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'possibly_sensitive', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'coordinates', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'retweeted_status', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'created_at_text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'CONTENT', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'from_user_screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'from_user_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'from_user_followers_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'from_user_friends_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'from_user_listed_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'from_user_statuses_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'from_user_description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'from_user_location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'from_user_created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'retweet_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'entities_urls', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'entities_urls_counts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'entities_hashtags', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'entities_hashtags_counts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'entities_mentions', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'entities_mentions_counts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'in_reply_to_screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'in_reply_to_status_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'source', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'entities_expanded_urls', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'json_output', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'entities_media_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'media_expanded_url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'media_url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'media_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'video_link', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'photo_link', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'twitpic', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",457,False,False,True,13,2017-01-17T14:08:53.173Z,CC0: Public Domain,shan,shan4224,shan4224/demonetization-in-india,Withdrawal of 500 and 1000 bills in India,"[{'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Demonetization in India,1,5093071,https://www.kaggle.com/shan4224/demonetization-in-india,0.8235294,"[{'versionNumber': 3, 'creationDate': '2017-01-17T14:08:53.173Z', 'creatorName': 'shan', 'creatorRef': 'demonetization-in-india', 'versionNotes': 'Demonetization data csv format', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2016-12-04T17:16:41.27Z', 'creatorName': 'shan', 'creatorRef': 'demonetization-in-india', 'versionNotes': 'Demonetization : Collected tweets till 29/11/2016', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2016-11-27T07:22:10.867Z', 'creatorName': 'shan', 'creatorRef': 'demonetization-in-india', 'versionNotes': 'Initial release', 'status': 'Ready'}]",19720,32 +39,Zaur Kadiev,,1,,86,"[{'ref': '1_MIN_ALL.txt', 'creationDate': '2018-05-10T04:00:52.891Z', 'datasetRef': 'veidak/eurousd-history-data-1-min-interval-20022017', 'description': '', 'fileType': '.txt', 'name': '1_MIN_ALL.txt', 'ownerRef': 'veidak', 'totalBytes': 389688403, 'url': 'https://www.kaggle.com/', 'columns': []}]",25953,False,False,False,0,2018-05-10T04:01:10.467Z,CC0: Public Domain,Zaur Kadiev,veidak,veidak/eurousd-history-data-1-min-interval-20022017,History EURO/USD currency data,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}]",EURO-USD History Data (1 Min Interval 2002-2017),0,48082155,https://www.kaggle.com/veidak/eurousd-history-data-1-min-interval-20022017,0.5,"[{'versionNumber': 1, 'creationDate': '2018-05-10T04:01:10.467Z', 'creatorName': 'Zaur Kadiev', 'creatorRef': 'eurousd-history-data-1-min-interval-20022017', 'versionNotes': 'Initial release', 'status': 'Ready'}]",607,4 +40,Sergey,,1," +Introduction +------------ + + Explore the archive of relevant economic information: relevant news on all indicators with explanations, data on past publications on the economy of the United States, Britain, Japan and other developed countries, volatility assessments and much more. For the construction of their forecast models, the use of in-depth training is optimal, with a learning model built on the basis of EU and Forex data. + The economic calendar is an indispensable assistant for the trader. + +Data set +-------- + + The data set is created in the form of an CSV, Excel spreadsheet (two files 2011-2013, 2014-2019), which can be found at boot time. You can see the source of the data on the site https://www.investing.com/economic-calendar/ + +![http://comparic.com/wp-content/uploads/2016/12/Economic_Calendar_-_Investing.com_-_2016-12-19_02.45.10.jpg][1] + +1. column - Event date +2. column - Event time (time New York) +3. column - Country of the event +4. column - The degree of volatility (possible fluctuations in currency, indices, etc.) caused by this event +5. column - Description of the event +6. column - Evaluation of the event according to the actual data, which came out better than the forecast, worse or correspond to it +7. column - Data format (%, K x103, M x106, T x109) +8. column - Actual event data +9. column - Event forecast data +10. column - Previous data on this event (with comments if there were any interim changes). + + +Inspiration +------------- + + 1. Use the historical EU in conjunction with the Forex data (exchange rates, indices, metals, oil, stocks) to forecast subsequent Forex data in order to minimize investment risks (combine fundamental market analysis and technical). + 2. Historical events of the EU used as a forecast of the subsequent (for example, the calculation of the probability of an increase in the rate of the Fed). + 3. Investigate the impact of combinations of EC events on the degree of market volatility at different time periods. + 4. To trace the main trends in the economies of the leading countries (for example, a decrease in the demand for unemployment benefits). + 5. Use the EU calendar together with the news background archive for this time interval for a more accurate forecast. + + + + [1]: http://comparic.com/wp-content/uploads/2016/12/Economic_Calendar_-_Investing.com_-_2016-12-19_02.45.10.jpg",1490,"[{'ref': 'D2011-13.csv', 'creationDate': '2019-07-20T20:17:42.7308078Z', 'datasetRef': 'devorvant/economic-calendar', 'description': '\ndata for the 2011-13 years', 'fileType': '.csv', 'name': 'D2011-13.csv', 'ownerRef': 'devorvant', 'totalBytes': 7023671, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2011/01/01', 'type': 'DateTime', 'originalType': '', 'description': 'Event date'}, {'order': 1, 'name': '4:00:00', 'type': 'DateTime', 'originalType': '', 'description': 'Event time (time New York)'}, {'order': 2, 'name': 'United Kingdom ', 'type': 'String', 'originalType': '', 'description': 'Country of the event'}, {'order': 3, 'name': 'Low Volatility Expected ', 'type': 'String', 'originalType': '', 'description': 'The degree of volatility (possible fluctuations in currency, indices, etc.) caused by this event'}, {'order': 4, 'name': 'Average Earnings ex Bonus ', 'type': 'String', 'originalType': '', 'description': ' Description of the event'}, {'order': 5, 'name': '', 'type': 'String', 'originalType': '', 'description': 'Evaluation of the event according to the actual data, which came out better than the forecast, worse or correspond to it'}, {'order': 6, 'name': '% ', 'type': 'String', 'originalType': '', 'description': ' Data format (%, K x103, M x106, T x109)'}, {'order': 7, 'name': '2.2', 'type': 'String', 'originalType': '', 'description': 'Actual event data'}, {'order': 8, 'name': '', 'type': 'String', 'originalType': '', 'description': 'Evaluation of the event according to the actual data, which came out better than the forecast, worse or correspond to it'}, {'order': 9, 'name': '2.3', 'type': 'String', 'originalType': '', 'description': 'Event forecast data'}]}, {'ref': 'D2011-13.xls', 'creationDate': '2019-07-20T20:17:43.2130217Z', 'datasetRef': 'devorvant/economic-calendar', 'description': 'data for the 2011-13 years', 'fileType': '.xls', 'name': 'D2011-13.xls', 'ownerRef': 'devorvant', 'totalBytes': 4744192, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'D2014-18.csv', 'creationDate': '2019-07-20T20:17:42.9748294Z', 'datasetRef': 'devorvant/economic-calendar', 'description': 'data for the 2014-18 years', 'fileType': '.csv', 'name': 'D2014-18.csv', 'ownerRef': 'devorvant', 'totalBytes': 14413593, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2014/01/01', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '4:00:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'United Kingdom ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low Volatility Expected ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Public Sector Net Cash Requirement ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'B ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '16.28', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': '1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': '8.1', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'D2014-18.xls', 'creationDate': '2019-07-20T20:17:43.5673823Z', 'datasetRef': 'devorvant/economic-calendar', 'description': 'data for the 2014-18 years', 'fileType': '.xls', 'name': 'D2014-18.xls', 'ownerRef': 'devorvant', 'totalBytes': 9940992, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'D2019.csv', 'creationDate': '2019-07-20T20:17:11.275Z', 'datasetRef': 'devorvant/economic-calendar', 'description': 'data for the 2019 year', 'fileType': '.csv', 'name': 'D2019.csv', 'ownerRef': 'devorvant', 'totalBytes': 1713238, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2019/01/01', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '19:00:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Singapore ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low Volatility Expected ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'GDP ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Worse Than Expected ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': '% ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': '1.6', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': '2.90', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'evised From 3.0', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'D2019.xls', 'creationDate': '2019-07-20T20:17:24.066Z', 'datasetRef': 'devorvant/economic-calendar', 'description': 'data for the 2019 year', 'fileType': '.xls', 'name': 'D2019.xls', 'ownerRef': 'devorvant', 'totalBytes': 1202176, 'url': 'https://www.kaggle.com/', 'columns': []}]",5669,False,False,True,7,2019-07-20T20:17:41.923Z,"Database: Open Database, Contents: Database Contents",Sergey,devorvant,devorvant/economic-calendar,"Archive of important events, economic news, volatility in a convenient format","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'learning', 'competitionCount': 0, 'datasetCount': 21, 'description': 'Learning is the process of acquiring new or modifying existing knowledge, behaviors, skills, values, or preferences.', 'fullPath': 'philosophy and thinking > thinking skills > learning', 'isAutomatic': False, 'name': 'learning', 'scriptCount': 97, 'totalCount': 118}, {'ref': 'artificial intelligence', 'competitionCount': 1, 'datasetCount': 70, 'description': 'This tag has datasets and kernels where people come together and use cutting-edge research to train models on pictures of cats.', 'fullPath': 'technology and applied sciences > computing > artificial intelligence', 'isAutomatic': False, 'name': 'artificial intelligence', 'scriptCount': 45, 'totalCount': 116}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",Economic calendar Investing.com Forex (2011-2019),3,6238669,https://www.kaggle.com/devorvant/economic-calendar,0.9705882,"[{'versionNumber': 1, 'creationDate': '2019-07-20T20:17:41.923Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': '15', 'status': 'Ready'}, {'versionNumber': 14, 'creationDate': '2019-06-07T14:19:41.927Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'V14', 'status': 'Ready'}, {'versionNumber': 13, 'creationDate': '2019-04-23T19:10:21.593Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'v13', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2019-02-13T10:23:06.77Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'V12', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2018-10-03T20:43:44.59Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'v11', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2018-09-05T13:46:21.203Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'v9', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2018-09-04T18:53:49.63Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'V9', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2018-05-02T18:44:11.767Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'v8', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2018-05-02T17:30:48.273Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': 'v7', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2018-02-23T15:23:35.653Z', 'creatorName': 'Sergey', 'creatorRef': 'economic-calendar', 'versionNotes': '2011-2018', 'status': 'Ready'}]",11028,70 +41,Rodrigo Salas,,1,"### Context +Forex is the largest market in the world, predicting the movement of prices is not a simple task, this dataset pretends to be the gateway for people who want to conduct trading using machine learning. + + +### Content +This dataset contains 4479 simulated winning transactions (real data, fictitious money) (3 years 201408-201708) with buy transactions (2771 operations 50.7%) and sell (2208 transactions, 49.3%), to generate this data a script of metatrader was used, operations were performed in time frame 4Hour and fixed stop loss and take profits of 50 pips (4 digits) were used to determine if the operation is winning. Each operation contains a set of classic technical indicators like rsi, mom, bb, emas, etc. (last 24 hours) + + +### Acknowledgements +Thanks to Kaggle for giving me the opportunity to share my passion for machine learning. +My profile: https://www.linkedin.com/in/rsx2010/ + + +### Inspiration +The problem of predicting price movement is reduced with this dataset to a classification problem: +
+""use the variables rsi1 to dayOfWeek to predict the type of correct operation to be performed (field=tipo)"" +
+tipo = 0 ==> Operation buy +
+tipo= 1 ==> Operation = sell: + +Good luck
+Rodrigo Salas Vallet-Cendre.
+rasvc@hotmail.com",895,"[{'ref': 'dataset01_eurusd4h.csv', 'creationDate': '2017-09-05T01:45:57Z', 'datasetRef': 'rsalaschile/forex-eurusd-dataset', 'description': 'Dataset Forex EURUSD', 'fileType': '.csv', 'name': 'dataset01_eurusd4h.csv', 'ownerRef': 'rsalaschile', 'totalBytes': 400495, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'rsi1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'rsi2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'rsi3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'rsi4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'rsi5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'stoch1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'stoch2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'stoch3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'stoch4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'stoch5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'stoch6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ema20Slope1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'ema20Slope2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'ema20Slope3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ema20Slope4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ema20Slope5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ema20Slope6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'ema50Slope1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'ema50Slope2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'ema50Slope3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'ema50Slope4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'ema50Slope5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'ema50Slope6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'ema100Slope1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'ema100Slope2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'ema100Slope3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'ema100Slope4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'ema100Slope5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'ema100Slope6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'ema200Slope1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'ema200Slope2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'ema200Slope3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'ema200Slope4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'ema200Slope5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'ema200Slope6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'std1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'std2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'std3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'std4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'std5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'std6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'mom1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'mom2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'mom3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'mom4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'mom5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'mom6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BB_up_percen1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BB_up_percen2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'BB_up_percen3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'BB_up_percen4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'BB_up_percen5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'BB_up_percen6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'cci1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'cci2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'cci3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'cci4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'cci5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'cci6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'force1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'force2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'force3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'force4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'force5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'force6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'macd1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'macd2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'macd3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'macd4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'macd5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'macd6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'bearsPower1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'bearsPower2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'bearsPower3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'bearsPower4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'bearsPower5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'bearsPower6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'bullsPower1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 79, 'name': 'bullsPower2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 80, 'name': 'bullsPower3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 81, 'name': 'bullsPower4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 82, 'name': 'bullsPower5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 83, 'name': 'bullsPower6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 84, 'name': 'WPR1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 85, 'name': 'WPR2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 86, 'name': 'WPR3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 87, 'name': 'WPR4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 88, 'name': 'WPR5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 89, 'name': 'WPR6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 90, 'name': 'close1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 91, 'name': 'close2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 92, 'name': 'close3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 93, 'name': 'close4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 94, 'name': 'close5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 95, 'name': 'close6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 96, 'name': 'hour', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 97, 'name': 'dayOfWeek', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 98, 'name': 'tipo', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",2329,False,False,False,1,2017-09-05T02:05:55.703Z,CC0: Public Domain,Rodrigo Salas,rsalaschile,rsalaschile/forex-eurusd-dataset,"3 years of winning trades in EURUSD 4H, 99 features for operation , make $$$",[],FOREX: EURUSD dataset,2,400495,https://www.kaggle.com/rsalaschile/forex-eurusd-dataset,0.7058824,"[{'versionNumber': 1, 'creationDate': '2017-09-05T02:05:55.703Z', 'creatorName': 'Rodrigo Salas', 'creatorRef': 'forex-eurusd-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",11130,33 +42,Michal Januszewski,,2,"# Context + +I've always wanted to have a proper sample Forex currency rates dataset for testing purposes, so I've created one. + + +# Content + +The data contains Forex EURUSD currency rates in 15-minute slices (OHLC - Open High Low Close, and Volume). BID price only. Spread is *not provided*, so be careful. + +(Quick reminder: Bid price + Spread = Ask price) + +The dates are in the yyyy-mm-dd hh:mm format, GMT. Volume is in Units. + +# Acknowledgements + +Dukascopy Bank SA +https://www.dukascopy.com/swiss/english/marketwatch/historical/ + +# Inspiration + +Just would like to see if there is still an way to beat the current Forex market conditions, with the prop traders' advanced automatic algorithms running in the wild.",1460,"[{'ref': 'EURUSD_15m_BID_01.01.2010-31.12.2016.csv', 'creationDate': '2017-02-22T14:40:08Z', 'datasetRef': 'meehau/EURUSD', 'description': ""New version - changed time format, changed column name to 'Time'"", 'fileType': '.csv', 'name': 'EURUSD_15m_BID_01.01.2010-31.12.2016.csv', 'ownerRef': 'meehau', 'totalBytes': 3296077, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'EURUSD_15m_BID_sample.csv', 'creationDate': '2017-02-22T14:39:38Z', 'datasetRef': 'meehau/EURUSD', 'description': 'Sample file with some data, reduced size for faster prototyping', 'fileType': '.csv', 'name': 'EURUSD_15m_BID_sample.csv', 'ownerRef': 'meehau', 'totalBytes': 859766, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",867,False,False,True,12,2017-02-22T14:42:13.003Z,CC BY-NC-SA 4.0,Michal Januszewski,meehau,meehau/EURUSD,"FOREX currency rates data for EURUSD, 15 minute candles, BID, years 2010-2016","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",EURUSD - 15m - 2010-2016,3,3494511,https://www.kaggle.com/meehau/EURUSD,0.8235294,"[{'versionNumber': 2, 'creationDate': '2017-02-22T14:42:13.003Z', 'creatorName': 'Michal Januszewski', 'creatorRef': 'EURUSD', 'versionNotes': ""Changed the datetime format (yyyy-mm-dd hh:mm), changed column name to 'Time', created a smaller sample file for testing purposes and faster prototyping"", 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-02-22T13:05:48.82Z', 'creatorName': 'Michal Januszewski', 'creatorRef': 'EURUSD', 'versionNotes': 'Initial release', 'status': 'Ready'}]",10674,47 +43,Imetomi,,1,"### Content + +This dataset contains historical data saved from Oanda Brokerage. The columns represent the Bid and Ask price for every minute / hour. There are also news downloaded form Investing.com. These can be used to forecast the trend of the Forex market with machine learning techniques. + + +### Acknowledgements + +The data is downloaded from Quantconnect.com. If they have any concerns, I will remove it instantly. + +### Inspiration + +The reason I am sharing this dataset is because I struggled so much to find good quality data which is large enough to train trading algorithms. So if you want to try LSTMs, stochastics methods or anything else you are free to use this dataset.",302,"[{'ref': 'eurusd_hour.csv', 'creationDate': '2019-03-02T11:16:28.809Z', 'datasetRef': 'imetomi/eur-usd-forex-pair-historical-data-2002-2019', 'description': 'EUR/USD Forex Pair Historical Data (Hour Resolution)', 'fileType': '.csv', 'name': 'eurusd_hour.csv', 'ownerRef': 'imetomi', 'totalBytes': 11686115, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Hour', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'BidOpen', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BidHigh', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'BidLow', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BidClose', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'BidChange', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AskOpen', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AskHigh', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AskLow', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AskClose', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AskChange', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'eurusd_minute.csv', 'creationDate': '2019-03-02T11:17:38.238Z', 'datasetRef': 'imetomi/eur-usd-forex-pair-historical-data-2002-2019', 'description': 'EUR/USD Forex Pair Historical Data (Minute Resolution)', 'fileType': '.csv', 'name': 'eurusd_minute.csv', 'ownerRef': 'imetomi', 'totalBytes': 655734335, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Minute', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'BidOpen', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BidHigh', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'BidLow', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BidClose', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'BidChange', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AskOpen', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AskHigh', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AskLow', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AskClose', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AskChange', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'eurusd_news.csv', 'creationDate': '2019-03-02T11:16:28.432Z', 'datasetRef': 'imetomi/eur-usd-forex-pair-historical-data-2002-2019', 'description': 'News from Investing.com ', 'fileType': '.csv', 'name': 'eurusd_news.csv', 'ownerRef': 'imetomi', 'totalBytes': 2480040, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Article', 'type': 'String', 'originalType': '', 'description': None}]}]",130130,False,False,False,3,2019-03-02T11:17:43.19Z,GNU Affero General Public License 3.0,Imetomi,imetomi,imetomi/eur-usd-forex-pair-historical-data-2002-2019,Historical Data from Oanda,"[{'ref': 'deep learning', 'competitionCount': 0, 'datasetCount': 164, 'description': None, 'fullPath': 'machine learning > deep learning', 'isAutomatic': False, 'name': 'deep learning', 'scriptCount': 3165, 'totalCount': 3329}, {'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'banking', 'competitionCount': 8, 'datasetCount': 51, 'description': 'Banks keep the financial system interesting by failing en masse every couple of generations.', 'fullPath': 'society and social sciences > society > finance > banking', 'isAutomatic': False, 'name': 'banking', 'scriptCount': 77, 'totalCount': 136}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",EUR USD Forex Pair Historical Data (2002 - 2019),1,107197636,https://www.kaggle.com/imetomi/eur-usd-forex-pair-historical-data-2002-2019,0.8235294,"[{'versionNumber': 1, 'creationDate': '2019-03-02T11:17:43.19Z', 'creatorName': 'Imetomi', 'creatorRef': 'eur-usd-forex-pair-historical-data-2002-2019', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1113,13 +44,Yuri Sa,,3,"Forex with a ton of indicators, MQL5 retrieved from XM.COM + + +All info was retrieved using a Robot called XAPTUR +https://bitbucket.org/yurisa2/robos-da-mamae/src/master/Experts/Xaptur/Xaptur.mq5 + +Developed by me.... Citations welcome.",74,"[{'ref': 'Xaptur.EURUSD.p100.10671.PERIOD_M30.Stats.csv', 'creationDate': '2018-10-03T22:06:37.593Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p100.10671.PERIOD_M30.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 25654857, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p100.17268.PERIOD_M1.Stats.csv', 'creationDate': '2018-10-03T23:49:57.488Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p100.17268.PERIOD_M1.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 763888425, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p100.19180.PERIOD_M15.Stats.csv', 'creationDate': '2018-10-03T22:29:10.599Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p100.19180.PERIOD_M15.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 51271962, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p100.19269.PERIOD_M5.Stats.csv', 'creationDate': '2018-10-03T22:50:33.464Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p100.19269.PERIOD_M5.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 153607327, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p100.748.PERIOD_M10.Stats.csv', 'creationDate': '2018-10-03T23:38:56.778Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p100.748.PERIOD_M10.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 76868345, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p20.17320.PERIOD_M1.Stats.csv', 'creationDate': '2018-10-04T00:38:53.371Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p20.17320.PERIOD_M1.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 763887827, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p20.20210.PERIOD_M10.Stats.csv', 'creationDate': '2018-10-03T22:36:06.684Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p20.20210.PERIOD_M10.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 76868139, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p20.23455.PERIOD_M15.Stats.csv', 'creationDate': '2018-10-04T00:44:38.397Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p20.23455.PERIOD_M15.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 51272188, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p20.26433.PERIOD_M5.Stats.csv', 'creationDate': '2018-10-04T00:43:52.577Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p20.26433.PERIOD_M5.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 153607306, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p20.27652.PERIOD_M30.Stats.csv', 'creationDate': '2018-10-03T22:10:47.803Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p20.27652.PERIOD_M30.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 25655025, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p60.12834.PERIOD_M15.Stats.csv', 'creationDate': '2018-10-03T22:10:47.967Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p60.12834.PERIOD_M15.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 51272530, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p60.17624.PERIOD_M1.Stats.csv', 'creationDate': '2018-10-04T00:36:28.079Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p60.17624.PERIOD_M1.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 763888445, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p60.2917.PERIOD_M5.Stats.csv', 'creationDate': '2018-10-04T00:50:46.914Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p60.2917.PERIOD_M5.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 153607319, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p60.30232.PERIOD_M10.Stats.csv', 'creationDate': '2018-10-03T22:28:58.496Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p60.30232.PERIOD_M10.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 76868291, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xaptur.EURUSD.p60.30906.PERIOD_M30.Stats.csv', 'creationDate': '2018-10-03T22:23:08.188Z', 'datasetRef': 'yurisa2/eurusd-2014-2018', 'description': '', 'fileType': '.csv', 'name': 'Xaptur.EURUSD.p60.30906.PERIOD_M30.Stats.csv', 'ownerRef': 'yurisa2', 'totalBytes': 25654847, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'io', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hora', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ativo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'posicao', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'lucro', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'AC_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'AC_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'AC_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'AD_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'AD_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'AD_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ADX_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'adx_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'adx_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'ATR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'ATR_cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'ATR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'BB_Delta_Bruto', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BB_Delta_Bruto_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'BB_Delta_Bruto_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Banda_Delta_Valor', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'BB_Posicao_Percent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'BB_Posicao_Percent_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'BB_Posicao_Percent_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'BullsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'BullsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'BullsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'BearsP_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'BearsP_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'BearsP_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'BWMFI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'BWMFI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'BWMFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'CCI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'CCI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'CCI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'DeMarker_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'DeMarker_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'DeMarker_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'DP_DMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'DP_PAAMM20', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'DP_MM20MM50', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'DP_D', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Hilo_Direcao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'MACD_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'MACD_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'MACD_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'MACD_Diff_Angulo_LS', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'MACD_Distancia_Linha_Sinal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'MACD_Distancia_Linha_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'MACD_Normalizacao', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'MACD_Normalizacao_Zero', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'MFI_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'MFI_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'MFI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Momentum_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Momentum_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Momentum_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'RSI_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'RSI_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'RSI_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Stoch_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Stoch_Cx_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Stoch_Cx_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Stoch_norm_1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Stoch_norm_2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Volume_FW', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Volume_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Volume_norm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'WPR_Var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'WPR_Var_Cx', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'WPR_norm', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",58029,False,False,False,2,2018-10-04T01:37:53Z,CC0: Public Domain,Yuri Sa,yurisa2,yurisa2/eurusd-2014-2018,"Forex with a ton of indicators, MQL5 retrieved from XM.COM","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'world', 'competitionCount': 0, 'datasetCount': 353, 'description': ""The kernels and datasets with this tag make the world go 'round."", 'fullPath': 'geography and places > world', 'isAutomatic': False, 'name': 'world', 'scriptCount': 42, 'totalCount': 395}]",EURUSD jan/2014 - oct/2018,0,1017438780,https://www.kaggle.com/yurisa2/eurusd-2014-2018,0.647058845,"[{'versionNumber': 3, 'creationDate': '2018-10-04T01:37:53Z', 'creatorName': 'Yuri Sa', 'creatorRef': 'eurusd-2014-2018', 'versionNotes': 'new set new norms', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-10-02T15:57:12.907Z', 'creatorName': 'Yuri Sa', 'creatorRef': 'eurusd-2014-2018', 'versionNotes': 'add 60 period normalization + comma, not semico', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-10-01T20:14:41.903Z', 'creatorName': 'Yuri Sa', 'creatorRef': 'eurusd-2014-2018', 'versionNotes': 'Initial release', 'status': 'Ready'}]",719,4 +45,Muhammad Mannir Ahmad,,1,,67,"[{'ref': 'EURUSD_15m_BID_01.01.2010-31.12.2016.csv', 'creationDate': '2018-04-29T15:41:51.796Z', 'datasetRef': 'mannir/forex-data-source', 'description': '', 'fileType': '.csv', 'name': 'EURUSD_15m_BID_01.01.2010-31.12.2016.csv', 'ownerRef': 'mannir', 'totalBytes': 14270618, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",24312,False,False,False,0,2018-04-29T15:42:10.233Z,GPL 2,Muhammad Mannir Ahmad,mannir,mannir/forex-data-source,,[],Forex Data Source,0,3294470,https://www.kaggle.com/mannir/forex-data-source,0.235294119,"[{'versionNumber': 1, 'creationDate': '2018-04-29T15:42:10.233Z', 'creatorName': 'Muhammad Mannir Ahmad', 'creatorRef': 'forex-data-source', 'versionNotes': 'Initial release', 'status': 'Ready'}]",899,3 +46,Filippo,,1,"# Context + +This is the dataset used in the section ""ANN (Artificial Neural Networks)"" of the Udemy course from Kirill Eremenko (Data Scientist & Forex Systems Expert) and Hadelin de Ponteves (Data Scientist), called **Deep Learning A-Z™: Hands-On Artificial Neural Networks**. The dataset is **very useful for beginners** of Machine Learning, and a simple playground where to compare several techniques/skills. + +It can be freely downloaded here: https://www.superdatascience.com/deep-learning/ + + +---------- + + +The story: +A bank is investigating a very high rate of customer leaving the bank. Here is a 10.000 records dataset to investigate and predict which of the customers are more likely to leave the bank soon. + +The story of the story: +I'd like to compare several techniques (better if not alone, and with the experience of several Kaggle users) to improve my basic knowledge on Machine Learning. + + +# Content + +I will write more later, but the columns names are very self-explaining. + + +# Acknowledgements + +Udemy instructors Kirill Eremenko (Data Scientist & Forex Systems Expert) and Hadelin de Ponteves (Data Scientist), and their efforts to provide this dataset to their students. + + +# Inspiration + +Which methods score best with this dataset? Which are fastest (or, executable in a decent time)? Which are the basic steps with such a simple dataset, very useful to beginners?",1416,"[{'ref': 'Churn_Modelling.csv', 'creationDate': '2017-05-16T12:19:49Z', 'datasetRef': 'filippoo/deep-learning-az-ann', 'description': 'Customers of a big international bank, who decided to leave (Exited) from the bank.', 'fileType': '.csv', 'name': 'Churn_Modelling.csv', 'ownerRef': 'filippoo', 'totalBytes': 684858, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'RowNumber', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'CustomerId', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Surname', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'CreditScore', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Geography', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Gender', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Age', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Tenure', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Balance', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'NumOfProducts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'HasCrCard', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'IsActiveMember', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'EstimatedSalary', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Exited', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",1276,False,False,True,28,2017-05-16T12:20:30.84Z,Unknown,Filippo,filippoo,filippoo/deep-learning-az-ann,"Kirill Eremenko ""Deep Learning A-Z™: Hands-On Artificial Neural Networks"" course","[{'ref': 'artificial intelligence', 'competitionCount': 1, 'datasetCount': 70, 'description': 'This tag has datasets and kernels where people come together and use cutting-edge research to train models on pictures of cats.', 'fullPath': 'technology and applied sciences > computing > artificial intelligence', 'isAutomatic': False, 'name': 'artificial intelligence', 'scriptCount': 45, 'totalCount': 116}]",Deep Learning A-Z - ANN dataset,1,272800,https://www.kaggle.com/filippoo/deep-learning-az-ann,0.7058824,"[{'versionNumber': 1, 'creationDate': '2017-05-16T12:20:30.84Z', 'creatorName': 'Filippo', 'creatorRef': 'deep-learning-az-ann', 'versionNotes': 'Initial release', 'status': 'Ready'}]",14678,30 +47,CF.ai,,1,"### Context + +Possible time series prediction: + + - Colour of the next day candlestick + - Next day Close or Open price + +### Content + +Refer to attached Column Description file for details. + + +### Acknowledgements + +Thanks to all who have helped in making a contribution to this dataset. + +",32,"[{'ref': 'Column_Description.csv', 'creationDate': '2019-04-19T14:02:14.379Z', 'datasetRef': 'cfchan/daily-usdjpy-20002019-with-technical-indicators', 'description': '', 'fileType': '.csv', 'name': 'Column_Description.csv', 'ownerRef': 'cfchan', 'totalBytes': 1641, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Column Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Description', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'USDJPY_Daily.csv', 'creationDate': '2019-04-19T14:01:57.877Z', 'datasetRef': 'cfchan/daily-usdjpy-20002019-with-technical-indicators', 'description': '', 'fileType': '.csv', 'name': 'USDJPY_Daily.csv', 'ownerRef': 'cfchan', 'totalBytes': 5774242, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'high', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'open1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'high1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'low1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'close1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'open2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'high2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'low2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'close2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'open3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'high3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'low3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'close3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'open4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'high4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'low4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'close4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'open5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'high5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'low5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'close5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'macd0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'signal0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'diff0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'macd1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'signal1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'diff1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'macd2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'signal2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'diff2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'macd3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'signal3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'diff3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'macd4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'signal4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'diff4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'macd5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'signal5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'diff5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'rsi0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'rsi1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'rsi2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'rsi3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'rsi4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'rsi5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'dn0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'mavg0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'up0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'pctB0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'dn1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'mavg1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'up1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'pctB1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'dn2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'mavg2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'up2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'pctB2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'dn3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'mavg3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'up3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'pctB3', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'dn4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'mavg4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'up4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'pctB4', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'dn5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'mavg5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'up5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'pctB5', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 73, 'name': 'target1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 74, 'name': 'target2', 'type': 'String', 'originalType': '', 'description': None}]}]",169695,False,False,False,1,2019-04-19T14:02:19.243Z,Unknown,CF.ai,cfchan,cfchan/daily-usdjpy-20002019-with-technical-indicators,For Time Series Prediction of Forex,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}, {'ref': 'time series analysis', 'competitionCount': 0, 'datasetCount': 47, 'description': None, 'fullPath': 'analysis > time series analysis', 'isAutomatic': False, 'name': 'time series analysis', 'scriptCount': 148, 'totalCount': 195}, {'ref': 'forecasting', 'competitionCount': 0, 'datasetCount': 36, 'description': None, 'fullPath': 'machine learning > forecasting', 'isAutomatic': False, 'name': 'forecasting', 'scriptCount': 112, 'totalCount': 148}]",Daily USDJPY (2000-2019) with Technical Indicators,0,594757,https://www.kaggle.com/cfchan/daily-usdjpy-20002019-with-technical-indicators,0.470588237,"[{'versionNumber': 1, 'creationDate': '2019-04-19T14:02:19.243Z', 'creatorName': 'CF.ai', 'creatorRef': 'daily-usdjpy-20002019-with-technical-indicators', 'versionNotes': 'Initial release', 'status': 'Ready'}]",237,2 +48,Yuri Sa,,2,,96,"[{'ref': 'Xasmus.10086.PERIOD_M1.CADCHFmicro.csv', 'creationDate': '2018-11-11T04:18:43.681Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.10086.PERIOD_M1.CADCHFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314953580, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.11037.PERIOD_M1.AUDJPYmicro.csv', 'creationDate': '2018-11-11T06:53:19.509Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.11037.PERIOD_M1.AUDJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 316620882, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.13341.PERIOD_M1.GBPCADmicro.csv', 'creationDate': '2018-11-11T07:00:02.384Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.13341.PERIOD_M1.GBPCADmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315267173, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.1343.PERIOD_M1.AUDCHFmicro.csv', 'creationDate': '2018-11-11T04:04:54.233Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.1343.PERIOD_M1.AUDCHFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315082578, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.13730.PERIOD_M1.EURAUDmicro.csv', 'creationDate': '2018-11-11T05:56:49.529Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.13730.PERIOD_M1.EURAUDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315248352, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.13759.PERIOD_M1.USDDKKmicro.csv', 'creationDate': '2018-11-11T07:04:59.085Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.13759.PERIOD_M1.USDDKKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314781935, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.14950.PERIOD_M1.USDJPYmicro.csv', 'creationDate': '2018-11-11T07:05:21.794Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.14950.PERIOD_M1.USDJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 317945956, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.15462.PERIOD_M1.GBPUSDmicro.csv', 'creationDate': '2018-11-11T06:11:19.804Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.15462.PERIOD_M1.GBPUSDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315117746, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.15607.PERIOD_M1.GBPNZDmicro.csv', 'creationDate': '2018-11-11T06:04:31.285Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.15607.PERIOD_M1.GBPNZDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314918386, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.16194.PERIOD_M1.USDCHFmicro.csv', 'creationDate': '2018-11-10T20:06:16.313Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.16194.PERIOD_M1.USDCHFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314264521, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.17302.PERIOD_M1.EURNZDmicro.csv', 'creationDate': '2018-11-11T06:18:28.218Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.17302.PERIOD_M1.EURNZDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315174483, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.17437.PERIOD_M1.EURUSDmicro.csv', 'creationDate': '2018-11-11T11:52:49.9023294Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.17437.PERIOD_M1.EURUSDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315081038, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.17453.PERIOD_M1.EURHKDmicro.csv', 'creationDate': '2018-11-11T05:45:40.285Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.17453.PERIOD_M1.EURHKDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314486424, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.17484.PERIOD_M1.EURZARmicro.csv', 'creationDate': '2018-11-10T16:59:54.476Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.17484.PERIOD_M1.EURZARmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 313395802, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.18432.PERIOD_M1.GBPSEKmicro.csv', 'creationDate': '2018-11-11T03:10:32.484Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.18432.PERIOD_M1.GBPSEKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315804405, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.18640.PERIOD_M1.GBPDKKmicro.csv', 'creationDate': '2018-11-11T07:22:32.48Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.18640.PERIOD_M1.GBPDKKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314361597, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.18723.PERIOD_M1.EURSEKmicro.csv', 'creationDate': '2018-11-11T06:30:05.176Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.18723.PERIOD_M1.EURSEKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 309973139, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2004.PERIOD_M1.GBPSGDmicro.csv', 'creationDate': '2018-11-11T07:23:15.564Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2004.PERIOD_M1.GBPSGDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 313117633, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.20615.PERIOD_M1.USDNOKmicro.csv', 'creationDate': '2018-11-11T06:06:32.142Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.20615.PERIOD_M1.USDNOKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314630737, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.20756.PERIOD_M1.USDSEKmicro.csv', 'creationDate': '2018-11-11T04:04:10.616Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.20756.PERIOD_M1.USDSEKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314697941, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2091.PERIOD_M1.EURSGDmicro.csv', 'creationDate': '2018-11-10T20:21:00.999Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2091.PERIOD_M1.EURSGDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314124087, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2187.PERIOD_M1.GBPJPYmicro.csv', 'creationDate': '2018-11-11T06:09:39.948Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2187.PERIOD_M1.GBPJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 318061029, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.21915.PERIOD_M1.EURCADmicro.csv', 'creationDate': '2018-11-11T07:26:51.684Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.21915.PERIOD_M1.EURCADmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315276564, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.22236.PERIOD_M1.NZDUSDmicro.csv', 'creationDate': '2018-11-11T06:56:28.074Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.22236.PERIOD_M1.NZDUSDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314588729, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2309.PERIOD_M1.NZDJPYmicro.csv', 'creationDate': '2018-11-11T07:04:36.084Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2309.PERIOD_M1.NZDJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 316560839, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2367.PERIOD_M1.EURNOKmicro.csv', 'creationDate': '2018-11-11T03:39:56.09Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2367.PERIOD_M1.EURNOKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 312187798, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2386.PERIOD_M1.USDCADmicro.csv', 'creationDate': '2018-11-10T17:23:24.827Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2386.PERIOD_M1.USDCADmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314751037, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.23925.PERIOD_M1.USDMXNmicro.csv', 'creationDate': '2018-11-11T07:11:42.519Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.23925.PERIOD_M1.USDMXNmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 311981118, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.24857.PERIOD_M1.GBPAUDmicro.csv', 'creationDate': '2018-11-11T05:53:53.885Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.24857.PERIOD_M1.GBPAUDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315196512, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.25659.PERIOD_M1.AUDCADmicro.csv', 'creationDate': '2018-11-10T19:02:46.686Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.25659.PERIOD_M1.AUDCADmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315074677, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.27030.PERIOD_M1.CADJPYmicro.csv', 'creationDate': '2018-11-10T16:16:55.088Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.27030.PERIOD_M1.CADJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 316578941, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2711.PERIOD_M1.EURGBPmicro.csv', 'creationDate': '2018-11-10T15:09:08.285Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2711.PERIOD_M1.EURGBPmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315126813, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2719.PERIOD_M1.EURCHFmicro.csv', 'creationDate': '2018-11-11T03:32:13.201Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2719.PERIOD_M1.EURCHFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314644133, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.27552.PERIOD_M1.NZDCADmicro.csv', 'creationDate': '2018-11-11T06:55:54.177Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.27552.PERIOD_M1.NZDCADmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315005465, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.28178.PERIOD_M1.USDPLNmicro.csv', 'creationDate': '2018-11-10T16:35:33.044Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.28178.PERIOD_M1.USDPLNmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 313979582, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.2834.PERIOD_M1.USDHUFmicro.csv', 'creationDate': '2018-11-11T07:05:13.809Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.2834.PERIOD_M1.USDHUFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 316213004, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.29106.PERIOD_M1.USDZARmicro.csv', 'creationDate': '2018-11-11T07:09:23.486Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.29106.PERIOD_M1.USDZARmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 310070643, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.29230.PERIOD_M1.GBPCHFmicro.csv', 'creationDate': '2018-11-10T16:32:55.087Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.29230.PERIOD_M1.GBPCHFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315228769, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.31992.PERIOD_M1.CHFJPYmicro.csv', 'creationDate': '2018-11-11T02:19:34.246Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.31992.PERIOD_M1.CHFJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 317971743, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.3736.PERIOD_M1.CHFSGDmicro.csv', 'creationDate': '2018-11-11T02:25:07.414Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.3736.PERIOD_M1.CHFSGDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 313443890, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.3830.PERIOD_M1.GBPNOKmicro.csv', 'creationDate': '2018-11-11T06:48:16.735Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.3830.PERIOD_M1.GBPNOKmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314683597, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.3980.PERIOD_M1.EURJPYmicro.csv', 'creationDate': '2018-11-11T00:40:08.583Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.3980.PERIOD_M1.EURJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 318081868, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.4414.PERIOD_M1.AUDUSDmicro.csv', 'creationDate': '2018-11-10T17:55:45.033Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.4414.PERIOD_M1.AUDUSDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314822109, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.4992.PERIOD_M1.EURTRYmicro.csv', 'creationDate': '2018-11-11T06:24:58.329Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.4992.PERIOD_M1.EURTRYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 313184161, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.6999.PERIOD_M1.SGDJPYmicro.csv', 'creationDate': '2018-11-11T05:24:35.274Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.6999.PERIOD_M1.SGDJPYmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 316142210, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.7281.PERIOD_M1.AUDNZDmicro.csv', 'creationDate': '2018-11-10T23:10:49.516Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.7281.PERIOD_M1.AUDNZDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 315035097, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.9450.PERIOD_M1.NZDCHFmicro.csv', 'creationDate': '2018-11-10T16:21:14.986Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.9450.PERIOD_M1.NZDCHFmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 314813531, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'Xasmus.9677.PERIOD_M1.USDSGDmicro.csv', 'creationDate': '2018-11-10T19:13:53.775Z', 'datasetRef': 'yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4', 'description': '', 'fileType': '.csv', 'name': 'Xasmus.9677.PERIOD_M1.USDSGDmicro.csv', 'ownerRef': 'yurisa2', 'totalBytes': 311720500, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol()', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Direction', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'DeltaPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'rsi_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'rsi_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'rsi_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'rsi_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'rsi_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'rsi_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'rsi_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'bbpp_m1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'bbpp_m5_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'bbpp_m10_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'bbpp_m15_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'bbpp_m30_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'bbpp_h1_var', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'bbpp_h4_var', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",74947,False,False,False,2,2018-11-11T11:52:30.603Z,Unknown,Yuri Sa,yurisa2,yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4,,[],Forex RSI and BBPP multiperiod (m1-h4) ,0,5565310574,https://www.kaggle.com/yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4,0.1764706,"[{'versionNumber': 2, 'creationDate': '2018-11-11T11:52:30.603Z', 'creatorName': 'Yuri Sa', 'creatorRef': 'forex-rsi-and-bbpp-multiperiod-m1h4', 'versionNotes': 'Shitload of pairs', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-11-09T17:18:29.2Z', 'creatorName': 'Yuri Sa', 'creatorRef': 'forex-rsi-and-bbpp-multiperiod-m1h4', 'versionNotes': 'Initial release', 'status': 'Ready'}]",319,2 +49,Sinusgamma,,1,,3,"[{'ref': 'kaggleB_USD_United_States_Consumer_Price_Index_Ex_Food__Energy_YoY_USDJPY.csv', 'creationDate': '2019-05-11T19:14:28.55Z', 'datasetRef': 'sinusgamma/forex-strategy-results-next', 'description': '', 'fileType': '.csv', 'name': 'kaggleB_USD_United_States_Consumer_Price_Index_Ex_Food__Energy_YoY_USDJPY.csv', 'ownerRef': 'sinusgamma', 'totalBytes': 1154920, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'closeOnShutDown', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 1, 'name': 'isTest', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 2, 'name': 'isMultiScenarioRun', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 3, 'name': 'eventName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'currencyOfEvent', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'testInstrument', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'enabledOrderDirection', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'pointsAway', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'takeProfit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'stopLoss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'modifyGap', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'secondsBeforePending', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'secondsBeforeModify', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'secondsAfterNews', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'secondsAfterNewsOffset', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'breakevenTrigger', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'breakevenDistance', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'trailingStop', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'trailingAfter', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'trailImmediately', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 20, 'name': 'isOCO', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 21, 'name': 'manageMoney', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 22, 'name': 'calcAmountWithMaxSpread', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 23, 'name': 'riskPercent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'maxSpread', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'maxSlippage', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'initDep', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'finishDep', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'commission', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'turnOver', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'eventPeriodsNbr', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'closedOrderNb', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'buyOrders', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'sellOrders', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'maxProfit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'maxLoss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'profitNb', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'lossNb', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'profitNbWithComm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'lossNbWithComm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'orderPercent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'profitPercent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'profitPercentWithComm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'avrPLperevent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'avrPLclosedorder', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'sumProfit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'sumLoss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'sumProfitCom', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'sumLossCom', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'PLrate', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'PLrateCom', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",190371,False,False,False,2,2019-05-11T19:14:43.487Z,CC0: Public Domain,Sinusgamma,sinusgamma,sinusgamma/forex-strategy-results-next,,[],forex_strategy_results_next,0,125853,https://www.kaggle.com/sinusgamma/forex-strategy-results-next,0.294117659,"[{'versionNumber': 1, 'creationDate': '2019-05-11T19:14:43.487Z', 'creatorName': 'Sinusgamma', 'creatorRef': 'forex-strategy-results-next', 'versionNotes': 'Initial release', 'status': 'Ready'}]",52,0 +50,Sinusgamma,,1,,1,"[{'ref': 'kaggle_USD_United_States_Consumer_Price_Index_Ex_Food__Energy_YoY_USDJPY.csv', 'creationDate': '2019-05-07T08:25:19.62Z', 'datasetRef': 'sinusgamma/forex-strategy-results-first', 'description': '', 'fileType': '.csv', 'name': 'kaggle_USD_United_States_Consumer_Price_Index_Ex_Food__Energy_YoY_USDJPY.csv', 'ownerRef': 'sinusgamma', 'totalBytes': 437803, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'closeOnShutDown', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 1, 'name': 'isTest', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 2, 'name': 'isMultiScenarioRun', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 3, 'name': 'eventName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'currencyOfEvent', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'testInstrument', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'enabledOrderDirection', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'pointsAway', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'takeProfit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'stopLoss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'modifyGap', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'secondsBeforePending', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'secondsBeforeModify', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'secondsAfterNews', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'secondsAfterNewsOffset', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'breakevenTrigger', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'breakevenDistance', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'trailingStop', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'trailingAfter', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'trailImmediately', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 20, 'name': 'isOCO', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 21, 'name': 'manageMoney', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 22, 'name': 'calcAmountWithMaxSpread', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 23, 'name': 'riskPercent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'maxSpread', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'maxSlippage', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'initDep', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'finishDep', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'commission', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'turnOver', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'eventPeriodsNbr', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'closedOrderNb', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'buyOrders', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'sellOrders', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'maxProfit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'maxLoss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'profitNb', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'lossNb', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'profitNbWithComm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'lossNbWithComm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'orderPercent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'profitPercent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'profitPercentWithComm', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'avrPLperevent', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'avrPLclosedorder', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'sumProfit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'sumLoss', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'sumProfitCom', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'sumLossCom', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'PLrate', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'PLrateCom', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",186111,False,False,False,2,2019-05-07T08:28:25.523Z,CC0: Public Domain,Sinusgamma,sinusgamma,sinusgamma/forex-strategy-results-first,,[],forex_strategy_results_first,0,76240,https://www.kaggle.com/sinusgamma/forex-strategy-results-first,0.294117659,"[{'versionNumber': 1, 'creationDate': '2019-05-07T08:28:25.523Z', 'creatorName': 'Sinusgamma', 'creatorRef': 'forex-strategy-results-first', 'versionNotes': 'Initial release', 'status': 'Ready'}]",44,0 +51,Daisuke Ishii,,1,"Context + +Coming Soon + +Content + +Coming Soon + +Acknowledgements + +Special Thanks to http://www.histdata.com/download-free-forex-data/ + +Inspiration + +実際の取引にこの情報を使うときは十分ご注意ください。弊社およびコミュニティメンバーは損失の責任を取ることができません。",342,"[{'ref': 'FX_USDJPY_201701312300_Test - USDJPY_201701312300 (1).csv', 'creationDate': '2017-08-13T06:26:42Z', 'datasetRef': 'team-ai/foreign-exchange-fx-prediction-usdjpy', 'description': 'Test Data', 'fileType': '.csv', 'name': 'FX_USDJPY_201701312300_Test - USDJPY_201701312300 (1).csv', 'ownerRef': 'team-ai', 'totalBytes': 2911, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2017.01.31', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '23:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': '113.147', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '113.173', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '113.135', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '113.162', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'FX_USDJPY_201701till01312259_Train - USDJPY_201701till01312259 (1).csv', 'creationDate': '2017-08-13T06:26:26Z', 'datasetRef': 'team-ai/foreign-exchange-fx-prediction-usdjpy', 'description': 'Training Data', 'fileType': '.csv', 'name': 'FX_USDJPY_201701till01312259_Train - USDJPY_201701till01312259 (1).csv', 'ownerRef': 'team-ai', 'totalBytes': 291757, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2017.01.02', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '2:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': '116.858', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '116.87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '116.858', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '116.87', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",1928,False,False,False,4,2017-08-13T06:26:53.733Z,CC0: Public Domain,Team AI,team-ai,team-ai/foreign-exchange-fx-prediction-usdjpy,Jan 2017 Martket Data(Lightweight CSV),"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}]",Foreign Exchange (FX) Prediction - USD/JPY,0,292600,https://www.kaggle.com/team-ai/foreign-exchange-fx-prediction-usdjpy,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-08-13T06:26:53.733Z', 'creatorName': 'Daisuke Ishii', 'creatorRef': 'foreign-exchange-fx-prediction-usdjpy', 'versionNotes': 'Initial release', 'status': 'Ready'}]",4276,13 +52,cTatu,,1,,24,"[{'ref': 'BRENT_OIL.csv', 'creationDate': '2019-04-06T10:17:22.577Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'BRENT_OIL.csv', 'ownerRef': 'crtatu', 'totalBytes': 201313259, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'BTC_USD.csv', 'creationDate': '2019-04-06T10:15:36.25Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'BTC_USD.csv', 'ownerRef': 'crtatu', 'totalBytes': 37302172, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'EUR_USD.csv', 'creationDate': '2019-04-06T10:18:16.031Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'EUR_USD.csv', 'ownerRef': 'crtatu', 'totalBytes': 423827066, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'EURO_BONDS.csv', 'creationDate': '2019-04-06T10:16:00.394Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'EURO_BONDS.csv', 'ownerRef': 'crtatu', 'totalBytes': 67790153, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'GBP_USD.csv', 'creationDate': '2019-04-06T10:18:16.131Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'GBP_USD.csv', 'ownerRef': 'crtatu', 'totalBytes': 422981026, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'GOLD.csv', 'creationDate': '2019-04-06T10:18:18.746Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'GOLD.csv', 'ownerRef': 'crtatu', 'totalBytes': 455226748, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'HongKong40_INDX.csv', 'creationDate': '2019-04-06T10:17:03.253Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'HongKong40_INDX.csv', 'ownerRef': 'crtatu', 'totalBytes': 159412946, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'IBEX_35.csv', 'creationDate': '2019-04-06T10:16:47.191Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'IBEX_35.csv', 'ownerRef': 'crtatu', 'totalBytes': 133464117, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'LIGHT_OIL.csv', 'creationDate': '2019-04-06T10:17:00.947Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'LIGHT_OIL.csv', 'ownerRef': 'crtatu', 'totalBytes': 155465095, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'UK_LONG_GILT.csv', 'creationDate': '2019-04-06T10:15:28.049Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'UK_LONG_GILT.csv', 'ownerRef': 'crtatu', 'totalBytes': 29107596, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'UK100_INDX.csv', 'creationDate': '2019-04-06T10:17:17.413Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'UK100_INDX.csv', 'ownerRef': 'crtatu', 'totalBytes': 188135329, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'USA500_INDX.csv', 'creationDate': '2019-04-06T10:17:20.072Z', 'datasetRef': 'crtatu/forex-crypto-bonds-indices-commodities', 'description': '', 'fileType': '.csv', 'name': 'USA500_INDX.csv', 'ownerRef': 'crtatu', 'totalBytes': 193991092, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Gmt time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",158163,False,False,False,1,2019-04-06T10:18:49.68Z,Unknown,cTatu,crtatu,crtatu/forex-crypto-bonds-indices-commodities,,[],Forex & Crypto & Bonds & Indices & Commodities,0,391518080,https://www.kaggle.com/crtatu/forex-crypto-bonds-indices-commodities,0.117647059,"[{'versionNumber': 1, 'creationDate': '2019-04-06T10:18:49.68Z', 'creatorName': 'cTatu', 'creatorRef': 'forex-crypto-bonds-indices-commodities', 'versionNotes': 'Initial release', 'status': 'Ready'}]",141,1 +53,Andrew Roberts,,1,,12,"[{'ref': 'ForeOracle Data Set.xlsx', 'creationDate': '2018-11-22T00:57:56.184Z', 'datasetRef': 'forexoracle/forex-oracle-offers', 'description': '', 'fileType': '.xlsx', 'name': 'ForeOracle Data Set.xlsx', 'ownerRef': 'forexoracle', 'totalBytes': 386779, 'url': 'https://www.kaggle.com/', 'columns': []}]",80838,False,False,False,1,2018-11-22T00:58:54.9Z,Other (specified in description),Andrew Roberts,forexoracle,forexoracle/forex-oracle-offers,Customers Information,[],Forex Oracle Offers,0,368301,https://www.kaggle.com/forexoracle/forex-oracle-offers,0.1875,"[{'versionNumber': 1, 'creationDate': '2018-11-22T00:58:54.9Z', 'creatorName': 'Andrew Roberts', 'creatorRef': 'forex-oracle-offers', 'versionNotes': 'Initial release', 'status': 'Ready'}]",136,0 +54,Corino Fontana,,1,,36,"[{'ref': '1_MIN_ALL.txt', 'creationDate': '2018-12-14T12:10:47.32Z', 'datasetRef': 'mycorino/eur-doll-forex', 'description': '', 'fileType': '.txt', 'name': '1_MIN_ALL.txt', 'ownerRef': 'mycorino', 'totalBytes': 389687423, 'url': 'https://www.kaggle.com/', 'columns': []}]",91706,False,False,False,3,2018-12-14T12:11:00.983Z,Unknown,Corino Fontana,mycorino,mycorino/eur-doll-forex,,[],eur_doll_forex,0,47059451,https://www.kaggle.com/mycorino/eur-doll-forex,0.1875,"[{'versionNumber': 1, 'creationDate': '2018-12-14T12:11:00.983Z', 'creatorName': 'Corino Fontana', 'creatorRef': 'eur-doll-forex', 'versionNotes': 'Initial release', 'status': 'Ready'}]",205,0 +55,CF.ai,,1,"### Context + +Possible prediction of the next opening or closing price + + +### Content + +See Column_Description_GBPUSD.csv + + +### Acknowledgements + +Thanks to all who have made a contribution to this dataset +",32,"[{'ref': 'Column_Description_USDGBP.csv', 'creationDate': '2019-04-23T02:16:14.412Z', 'datasetRef': 'cfchan/hourly-gbpusd-w-technical-indicators-20002019', 'description': '', 'fileType': '.csv', 'name': 'Column_Description_USDGBP.csv', 'ownerRef': 'cfchan', 'totalBytes': 1513, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Column Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Description', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'USDGBP_Hourly.csv', 'creationDate': '2019-04-23T02:16:06.886Z', 'datasetRef': 'cfchan/hourly-gbpusd-w-technical-indicators-20002019', 'description': '', 'fileType': '.csv', 'name': 'USDGBP_Hourly.csv', 'ownerRef': 'cfchan', 'totalBytes': 101171629, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'high', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'open1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'high1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'low1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'close1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'open2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'high2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'low2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'close2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'macd0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'signal0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'diff0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'macd1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'signal1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 18, 'name': 'diff1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 19, 'name': 'macd2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 20, 'name': 'signal2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 21, 'name': 'diff2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 22, 'name': 'rsi0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 23, 'name': 'rsi1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'rsi2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'dn0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'mavg0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 27, 'name': 'up0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'pctB0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'dn1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'mavg1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'up1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'pctB1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'dn2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'mavg2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'up2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 36, 'name': 'pctB2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'sma20.0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'sma20.1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'sma20.2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'sma50.0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'sma50.1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'sma50.2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'sma100.0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'sma100.1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'sma100.2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 46, 'name': 'sar0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'sar1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 48, 'name': 'sar2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'fastK0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'fastD0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 51, 'name': 'stoch0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'fastK1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 53, 'name': 'fastD1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'stoch1', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'fastK2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 56, 'name': 'fastD2', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'stoch2', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",172588,False,False,False,1,2019-04-23T02:16:18.47Z,Unknown,CF.ai,cfchan,cfchan/hourly-gbpusd-w-technical-indicators-20002019,Time Series Forecasting for Forex,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'time series', 'competitionCount': 4, 'datasetCount': 151, 'description': ""Time series analysis is the 4th dimension of data analysis. Our human minds can't visualize time but thankfully there are some really great plotting libraries out there to fix that problem."", 'fullPath': 'mathematics and logic > statistics > time series', 'isAutomatic': False, 'name': 'time series', 'scriptCount': 304, 'totalCount': 459}, {'ref': 'time series analysis', 'competitionCount': 0, 'datasetCount': 47, 'description': None, 'fullPath': 'analysis > time series analysis', 'isAutomatic': False, 'name': 'time series analysis', 'scriptCount': 148, 'totalCount': 195}, {'ref': 'forecasting', 'competitionCount': 0, 'datasetCount': 36, 'description': None, 'fullPath': 'machine learning > forecasting', 'isAutomatic': False, 'name': 'forecasting', 'scriptCount': 112, 'totalCount': 148}]",Hourly GBPUSD w Technical Indicators (2000-2019),0,17862885,https://www.kaggle.com/cfchan/hourly-gbpusd-w-technical-indicators-20002019,0.470588237,"[{'versionNumber': 1, 'creationDate': '2019-04-23T02:16:18.47Z', 'creatorName': 'CF.ai', 'creatorRef': 'hourly-gbpusd-w-technical-indicators-20002019', 'versionNotes': 'Initial release', 'status': 'Ready'}]",163,0 +56,Daisuke Ishii,,1,"### Context + +Coming Soon + +### Content + +Coming Soon + +### Acknowledgements + +Special Thanks to http://www.histdata.com/download-free-forex-data/ + + +### Inspiration +実際の取引にこの情報を使うときは十分ご注意ください。弊社およびコミュニティメンバーは損失の責任を取ることができません。",67,"[{'ref': 'FX_USDJPY_201701312300_Test - USDJPY_201701312300.csv', 'creationDate': '2017-08-09T10:58:32Z', 'datasetRef': 'daiearth22/fx-usdjpy-prediction', 'description': 'USD/JPY Test Data for 23:00-23:59 on 31st Jan 2017', 'fileType': '.csv', 'name': 'FX_USDJPY_201701312300_Test - USDJPY_201701312300.csv', 'ownerRef': 'daiearth22', 'totalBytes': 3029, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2017.01.31', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '23:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': '113.147', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '113.173', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '113.135', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '113.162', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '0', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'FX_USDJPY_201701till01312259_Train - USDJPY_201701till01312259.csv', 'creationDate': '2017-08-09T10:57:48Z', 'datasetRef': 'daiearth22/fx-usdjpy-prediction', 'description': 'USD/JPY Training Data from 1st Jan 2017 to 31st Jan 2017 22:59', 'fileType': '.csv', 'name': 'FX_USDJPY_201701till01312259_Train - USDJPY_201701till01312259.csv', 'ownerRef': 'daiearth22', 'totalBytes': 304121, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2017.01.02', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '2:00', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': '116.858', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '116.87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '116.858', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '116.87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '0', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",1882,False,False,False,0,2017-08-09T10:59:10.39Z,CC0: Public Domain,Daisuke Ishii,daiearth22,daiearth22/fx-usdjpy-prediction,Jan 2017 Martket Data(Lightweight CSV),[],FX USD/JPY Prediction,0,304973,https://www.kaggle.com/daiearth22/fx-usdjpy-prediction,0.647058845,"[{'versionNumber': 1, 'creationDate': '2017-08-09T10:59:10.39Z', 'creatorName': 'Daisuke Ishii', 'creatorRef': 'fx-usdjpy-prediction', 'versionNotes': 'Initial release', 'status': 'Ready'}]",930,4 +57,Mohsin,,1,"### Context + +data set for most dominant forex pair GB/USD + + +### Content +the first column containing date and second containing data +### Acknowledgements + +We wouldn't be here without the help of others. If you owe any attributions or thanks, include them here along with any citations of past research. + + +### Inspiration + +Your data will be in front of the world's largest data science community. What questions do you want to see answered?",5,"[{'ref': 'prophetdata.csv', 'creationDate': '2019-03-23T07:12:50.475Z', 'datasetRef': 'mohsinsajjad/dataset', 'description': 'GBP/USD data set in.csv format', 'fileType': '.csv', 'name': 'prophetdata.csv', 'ownerRef': 'mohsinsajjad', 'totalBytes': 3846, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ds', 'type': 'DateTime', 'originalType': '', 'description': 'contain the value of data'}, {'order': 1, 'name': 'y', 'type': 'Uuid', 'originalType': '', 'description': 'contain the data changes'}]}]",146183,False,False,False,1,2019-03-23T07:13:17.623Z,Unknown,Mohsin,mohsinsajjad,mohsinsajjad/dataset,data to test accuracy and prediction,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}]",GBP/USD Historical data (month),0,1155,https://www.kaggle.com/mohsinsajjad/dataset,0.7058824,"[{'versionNumber': 1, 'creationDate': '2019-03-23T07:13:17.623Z', 'creatorName': 'Mohsin', 'creatorRef': 'dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",193,1 +58,Thomas Wade Culbertson,,1,"# Context + +A day in the life or a forex trader. + +# Content + +One day of minute by minute statistics from my trading log. + +# Acknowledgements +The Python community and stack overflow. + + +# Inspiration +Jessy Livermore",76,"[{'ref': 'ib2017_03_08eod.csv', 'creationDate': '2017-03-11T10:29:06Z', 'datasetRef': 'ugnix911aalc/eurusd', 'description': 'eur/usd for 03/08/2017', 'fileType': '.csv', 'name': 'ib2017_03_08eod.csv', 'ownerRef': 'ugnix911aalc', 'totalBytes': 136103, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'dty', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'bid', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'rate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'ask', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'refprice', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'chapc', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'trigger1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'trigger2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'comm', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'unitsii', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'idlh', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'fope', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'repct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'revct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'winsinstrk', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'strknumb', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'tlamp', 'type': 'Boolean', 'originalType': '', 'description': None}]}]",952,False,False,False,1,2017-03-11T10:46:02.16Z,CC0: Public Domain,Thomas Wade Culbertson,ugnix911aalc,ugnix911aalc/eurusd,03 08 2017 by minute,[],eur/usd,0,16910,https://www.kaggle.com/ugnix911aalc/eurusd,0.7058824,"[{'versionNumber': 1, 'creationDate': '2017-03-11T10:46:02.16Z', 'creatorName': 'Thomas Wade Culbertson', 'creatorRef': 'eurusd', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1528,0 +59,gabsgear,,1,"### Context +This dataset content is related to criptocurrency price in 11 months period for use in data analysis, finance and backtests. + +### Content + +We have a complete candlestick with close, open prices, 24 volume... of some coins in binance exchange. +A note here, the close adj is equal close column because binance haven't a adjustment in close price as type forex. +",76,"[{'ref': 'ADABTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.696Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ADABTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 13629, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ADXBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:30.187Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ADXBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 13950, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'AEBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:26.967Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'AEBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 8035, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'AIONBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:26.978Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'AIONBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 11835, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'AMBBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:33.744Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'AMBBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14942, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'APPCBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.616Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'APPCBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 10751, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ARKBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:36.392Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ARKBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 15681, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ARNBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:33.118Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ARNBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 15153, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ASTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.042Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ASTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 16767, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BATBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:31.328Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BATBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14822, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BCCBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.439Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BCCBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 20520, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BCDBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.773Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BCDBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 12989, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BCNBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:25.141Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BCNBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 897, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BCPTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:31.316Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BCPTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14721, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BLZBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.669Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BLZBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 8055, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BNBBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.439Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BNBBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 24608, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BNTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:37.99Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BNTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 17614, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BQXBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.364Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BQXBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 19560, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BRDBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:28.241Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BRDBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 11701, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BTGBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:32.537Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BTGBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14929, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'BTSBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:32.135Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'BTSBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14278, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CDTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:31.541Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'CDTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14014, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CHATBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:26.746Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'CHATBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 8594, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CLOAKBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:25.202Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'CLOAKBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 2457, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CMTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.209Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'CMTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 13080, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'CNDBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.394Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'CNDBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 12427, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'DASHBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:34.569Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'DASHBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 15276, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'DGDBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.602Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'DGDBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 12612, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'DLTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:33.539Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'DLTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 14963, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'DNTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:36.887Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'DNTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 16521, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'EDOBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.154Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'EDOBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 11548, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ELFBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:27.08Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ELFBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 12297, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ENGBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.556Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ENGBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 17723, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ENJBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:35.271Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ENJBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 15503, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'EOSBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:40.169Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'EOSBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 17978, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ETCBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:36.881Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ETCBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 16253, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ETHBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:39.197Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'ETHBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 22358, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'EVXBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:36.974Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'EVXBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 16834, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'FUELBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:28.97Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'FUELBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 13691, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'LINKBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.26Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'LINKBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 18411, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'LOOMBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:24.217Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'LOOMBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 1391, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'LRCBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:36.954Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'LRCBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 16683, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'LSKBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:29.747Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'LSKBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 13970, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'LTCBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:38.417Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'LTCBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 22117, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'LUNBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:26.933Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'LUNBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 11030, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'NAVBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:26.918Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'NAVBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 11313, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'NCASHBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:24.739Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'NCASHBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 6315, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'RLCBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:26.219Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'RLCBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 10099, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'RPXBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:25.519Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'RPXBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 7575, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'SALTBTC-Day-Jul 2017-May 2018.csv', 'creationDate': '2018-06-06T19:53:37.538Z', 'datasetRef': 'gabsgear/binance-criptos-price-from-jun-2017-to-may-2018', 'description': '', 'fileType': '.csv', 'name': 'SALTBTC-Day-Jul 2017-May 2018.csv', 'ownerRef': 'gabsgear', 'totalBytes': 17543, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume ', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",30405,False,False,False,1,2018-06-06T19:55:02.727Z,CC0: Public Domain,gabsgear,gabsgear,gabsgear/binance-criptos-price-from-jun-2017-to-may-2018,Binance candlestick from jun 2017 to may 2018,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}]",binance criptos price from jun 2017 to may 2018,0,187679,https://www.kaggle.com/gabsgear/binance-criptos-price-from-jun-2017-to-may-2018,0.647058845,"[{'versionNumber': 1, 'creationDate': '2018-06-06T19:55:02.727Z', 'creatorName': 'gabsgear', 'creatorRef': 'binance-criptos-price-from-jun-2017-to-may-2018', 'versionNotes': 'Initial release', 'status': 'Ready'}]",430,0 +60,Kaggle Team,,1,"Each week [the CFPB](http://www.consumerfinance.gov/data-research/consumer-complaints/) sends thousands of consumers’ complaints about financial products and services to companies for response. Those complaints are published here after the company responds or after 15 days, whichever comes first. By adding their voice, consumers help improve the financial marketplace.",7057,"[{'ref': 'consumer_complaints.csv', 'creationDate': '2016-04-26T22:27:59Z', 'datasetRef': 'cfpb/us-consumer-finance-complaints', 'description': 'Each row in this CSV file represents an individual consumer complaint.\n\nIt has the following columns:\n\n - **date_received** - date the complaint was received\n - **product**\n - **sub_product**\n - **issue**\n - **sub_issue**\n - **consumer_complaint_narrative**\n - **company_public_response**\n - **company**\n - **state**\n - **zipcode**\n - **tags**\n - **consumer_consent_provided**\n - **submitted_via**\n - **date_sent_to_company**\n - **company_response_to_consumer**\n - **timely_response**\n - **consumer_disputed**\n - **complaint_id**', 'fileType': '.csv', 'name': 'consumer_complaints.csv', 'ownerRef': 'cfpb', 'totalBytes': 42046249, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'database.sqlite', 'creationDate': '2016-04-26T22:28:30Z', 'datasetRef': 'cfpb/us-consumer-finance-complaints', 'description': 'This SQLite database contains a single table, consumer_complaints, in the same format as the consumer_complaints CSV file.', 'fileType': '.sqlite', 'name': 'database.sqlite', 'ownerRef': 'cfpb', 'totalBytes': 52812120, 'url': 'https://www.kaggle.com/', 'columns': []}]",33,False,False,True,83,2016-04-26T22:33:46.69Z,Unknown,Consumer Financial Protection Bureau,cfpb,cfpb/us-consumer-finance-complaints,US consumer complaints on financial products and company responses,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",US Consumer Finance Complaints,2,94858347,https://www.kaggle.com/cfpb/us-consumer-finance-complaints,0.7058824,"[{'versionNumber': 1, 'creationDate': '2016-04-26T22:33:46.69Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'us-consumer-finance-complaints', 'versionNotes': 'Initial release', 'status': 'Ready'}]",47964,155 +61,danerbland,,1,"# Context + +This dataset was assembled to investigate the possibility of predicting congressional election results by campaign finance reports from the period leading up to the election. + + +# Content + +Each row represents a candidate, with information on their campaign including the state, district, office, total contributions, total expenditures, etc. The content is specific to the year leading up to the 2016 election: (1/1/2015 through 10/19/2016). + + +# Acknowledgements + +Campaign finance information came directly from FEC.gov. +Election results and vote totals for house races were taken from CNN's election results page. + + +# Inspiration + +How much of an impact does campaign spending and fundraising have on an election? Is the impact greater in certain areas? Given this dataset, to what degree of accuracy could we have predicted the election results?",944,"[{'ref': 'CandidateSummaryAction1.csv', 'creationDate': '2016-12-07T21:09:31Z', 'datasetRef': 'danerbland/electionfinance', 'description': 'Contains candidate election finance and race results (W/L). Vote counts for house winners included.\n\nColumn names correspond to the \'tags\' listed here:\n\nhttp://www.fec.gov/finance/disclosure/metadata/metadataforcandidatesummary.shtml\n\nColumn \'winners\' contains \'Y\' for winning campaigns and """" for losing campaigns.\n\nColumn \'votes\' contains vote counts for winners of contested house races. No information on losers or senate/president races.', 'fileType': '.csv', 'name': 'CandidateSummaryAction1.csv', 'ownerRef': 'danerbland', 'totalBytes': 608167, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'can_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'can_nam', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'can_off', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'can_off_sta', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'can_off_dis', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'can_par_aff', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'can_inc_cha_ope_sea', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'can_str1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'can_str2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'can_cit', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'can_sta', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'can_zip', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'ind_ite_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'ind_uni_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'ind_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'par_com_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'oth_com_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'can_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'tot_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'tra_fro_oth_aut_com', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'can_loa', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'oth_loa', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'tot_loa', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'off_to_ope_exp', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'off_to_fun', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'off_to_leg_acc', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'oth_rec', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'tot_rec', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'ope_exp', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'exe_leg_acc_dis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'fun_dis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'tra_to_oth_aut_com', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'can_loa_rep', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'oth_loa_rep', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'tot_loa_rep', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'ind_ref', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'par_com_ref', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'oth_com_ref', 'type': 'String', 'originalType': '', 'description': None}, {'order': 38, 'name': 'tot_con_ref', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'oth_dis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'tot_dis', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'cas_on_han_beg_of_per', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'cas_on_han_clo_of_per', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'net_con', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'net_ope_exp', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'deb_owe_by_com', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'deb_owe_to_com', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'cov_sta_dat', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 48, 'name': 'cov_end_dat', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 49, 'name': 'winner', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'votes', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",505,False,False,True,7,2016-12-07T21:14:32.993Z,CC0: Public Domain,danerbland,danerbland,danerbland/electionfinance,Can an election be predicted from the preceding campaign finance reports?,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",Campaign Finance versus Election Results,3,217837,https://www.kaggle.com/danerbland/electionfinance,0.8235294,"[{'versionNumber': 1, 'creationDate': '2016-12-07T21:14:32.993Z', 'creatorName': 'danerbland', 'creatorRef': 'electionfinance', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8911,35 +62,Abigail Larion,,1,"# Context + +The Federal Election Commission (FEC) is an independent regulatory agency established in 1975 to administer and enforce the Federal Election Campaign Act (FECA), which requires public disclosure of campaign finance information. The FEC publishes campaign finance reports for presidential and legislative election campaign candidates on the [Campaign Finance Disclosure Portal][1]. + +# Content + +The finance summary report contains one record for each financial report (Form 3P) filed by the presidential campaign committees during the 2016 primary and general election campaigns. Presidential committees file quarterly prior to the election year and monthly during the election year. The campaign expenditures file contains individual operating expenditures made by the campaign committee and reported on Form 3P Line 23 during the same period. Operating expenditures consist of the routine costs of campaigning for president, which include staffing, travel, advertising, voter outreach, and other activities. + + +[1]: http://www.fec.gov/disclosurep/pnational.do",774,"[{'ref': 'exp_dictionary.txt', 'creationDate': '2017-01-17T18:59:13Z', 'datasetRef': 'fec/presidential-campaign-finance', 'description': 'Data dictionary for presidential campaign expenditures report', 'fileType': '.txt', 'name': 'exp_dictionary.txt', 'ownerRef': 'fec', 'totalBytes': 3573, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'expenditures.csv', 'creationDate': '2017-01-17T18:54:05Z', 'datasetRef': 'fec/presidential-campaign-finance', 'description': 'Individual operating expenditures during presidential campaign', 'fileType': '.csv', 'name': 'expenditures.csv', 'ownerRef': 'fec', 'totalBytes': 1079224, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'committee_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'candidate_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'candidate_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'recipient_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'disbursement_amount', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'disbursement_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'recipient_city', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'recipient_state', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'recipient_zipcode', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'disbursement_desc', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'memo_code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'memo_text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'form_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'file_number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'transaction_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'election_type', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'sum_dictionary.txt', 'creationDate': '2017-01-17T18:59:13Z', 'datasetRef': 'fec/presidential-campaign-finance', 'description': 'Data dictionary for presidential campaign finance summary', 'fileType': '.txt', 'name': 'sum_dictionary.txt', 'ownerRef': 'fec', 'totalBytes': 15448, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'summary.csv', 'creationDate': '2017-01-17T18:53:14Z', 'datasetRef': 'fec/presidential-campaign-finance', 'description': 'Summary report of presidential campaign finances', 'fileType': '.csv', 'name': 'summary.csv', 'ownerRef': 'fec', 'totalBytes': 136790, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'committee_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'committee_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'committee_street1', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'committee_street2', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'committee_city', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'committee_state', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'committee_zipcode', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'candidate_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'candidate_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'report_year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'report_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'term_report_flag', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'amendment_indicator', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'receipt_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 14, 'name': 'start_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 15, 'name': 'end_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 16, 'name': 'election_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'cashonhand_start', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'total_receipts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'subtotal', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'total_disbursements', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'cashonhand_end', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'committee_receivables', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'committee_payables', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'expenditures_subjtolimit', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'net_contributions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'net_operating_expenditures', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'federal_funds', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'individual_contributions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'political_party_contributions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'other_political_contributions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'candidate_contributions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'total_contributions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'transfer_from_committee', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'candidate_loans', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'other_loans', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'total_loans', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'operating_exp_offsets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'fundraising_offsets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'legal_acct_offsets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'total_offsets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'other_receipts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'total_receipts', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'operating_expenditures', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'transfer_to_committees', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'fundraising_disbursements', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'exempt_legal_acct_disbursements', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'candidate_loan_repayments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'other_loan_repayments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'total_loan_repayments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'individual_refunds', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'political_party_refunds', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'other_political_refunds', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'total_contribution_refunds', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'other_disbursements', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'total_disbursements', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'itemsonhand_liquidation', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'total_state_allocation', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'federal_funds_to_date', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'individual_contributions_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'political_party_contributions_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'other_political_contributions_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'candidate_contributions_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'total_contributions_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'transfer_from_committee_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'candidate_loans_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'other_loans_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'total_loans_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'operating_exp_offsets_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'fundraising_offsets_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'legal_acct_offsets_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'total_offsets_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'other_receipts_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'total_receipts_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'operating_expenditures_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'transfer_to_committees_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'fundraising_disbursements_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'exempt_legal_acct_disbursements_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'candidate_loan_repayments_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 79, 'name': 'other_loan_repayments_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 80, 'name': 'total_loan_repayments_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 81, 'name': 'individual_refunds_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 82, 'name': 'political_party_refunds_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 83, 'name': 'other_political_refunds_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 84, 'name': 'total_contribution_refunds_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 85, 'name': 'other_disbursements_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 86, 'name': 'total_disbursements_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 87, 'name': 'total_state_allocation_todate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 88, 'name': 'treasurer_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 89, 'name': 'signature_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 90, 'name': 'file_number', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",671,False,False,True,1,2017-01-17T19:48:13.063Z,CC0: Public Domain,Federal Election Commission,fec,fec/presidential-campaign-finance,How did presidential candidates spend their campaign funds?,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",2016 Presidential Campaign Finance,0,1120759,https://www.kaggle.com/fec/presidential-campaign-finance,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-01-17T19:48:13.063Z', 'creatorName': 'Abigail Larion', 'creatorRef': 'presidential-campaign-finance', 'versionNotes': 'Initial release', 'status': 'Ready'}]",6448,23 +63,Rajanand Ilangovan / இராஜ்ஆனந்த் இளங்கோவன்,,1,"**Connect/Follow me on [LinkedIn](http://link.rajanand.org/linkedin) for more updates on interesting dataset like this. Thanks.** + +### Content + +This dataset contains the various finance detail of India. + +1. Aggregate expenditure. +2. Capital expenditure. +3. Social sector expenditure. +3. Revenue expenditure. +5. Revenue deficit. +6. Gross fiscal deficit. +7. Own tax revenues. +8. Nominal GSDP series. + +Granularity: Annual +Time period: 1980-81 to 2015-16. +Amount: in crore rupees (i.e, 1 crore = 10 million) + +### Acknowledgements + +[National Institution for Transforming India (NITI Aayog)](http://niti.gov.in/)/Planning commission, Govt of India has published this data on their [website](http://niti.gov.in/state-statistics).",985,"[{'ref': 'Aggregate_Expenditure.csv', 'creationDate': '2017-08-27T12:01:12Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Source: Various Issues of Handbook of Statistics on State Government Finances and State Finances: A Study of State Budgets, Reserve Bank of India\n\nAggregate expenditures are the sum of revenue and capital expenditures\n', 'fileType': '.csv', 'name': 'Aggregate_Expenditure.csv', 'ownerRef': 'rajanand', 'totalBytes': 6735, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15 (RE)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16 (BE)', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'Capital_Expenditure.csv', 'creationDate': '2017-08-27T12:01:11Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Note: Capital Expenditure exclusive of public accounts.\nSource: Handbook of Statistics on State Government Finances (2010) & Various Issues of State Finances: A Study of State Budgets, Reserve Bank of India\n', 'fileType': '.csv', 'name': 'Capital_Expenditure.csv', 'ownerRef': 'rajanand', 'totalBytes': 6085, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15 (RE)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16 (BE)', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'Gross_Fiscal_Deficits.csv', 'creationDate': '2017-08-27T12:01:11Z', 'datasetRef': 'rajanand/finance-india', 'description': '\nSource: Various Issues Handbook of Statistics on State Government Finances and State Finances: A Study of State Budgets, Reserve Bank of India\n\nNotes : \n\n1. Minus sign (-) indicates surplus in deficit indicator.\n2. Figures in respect of Bihar relate to revised estimates from 1990-91 to 1994-95 and 1999-2000 to 2003-04.\n3. Figures in respect of Jammu and Kashmir relate to revised estimates from 1990-91 to 1997-98 and 2001-2002 to 2009-10.\n4. Figures in respect of Nagaland relate to revised estimates from 1990-91 to 2001-2002.\n5. Figures in respect of Manipur relate to revised estimates for 1990-91 and 2001-2002 to 2008-09.\n6. Figures in respect of Jharkhand relate to revised estimates for 1990-91 and 2001-2002 to 2010-11.\n', 'fileType': '.csv', 'name': 'Gross_Fiscal_Deficits.csv', 'ownerRef': 'rajanand', 'totalBytes': 5966, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Year', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15 (RE)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16 (BE)', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'Nominal_GSDP_Series.csv', 'creationDate': '2017-08-27T12:01:11Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Notes: Since there are multiple GSDP series through which this Time Series has been created, the notes below indicate the years that correspond to a particular GSDP Series. \n\n1. Till 1992-93, the 1980-81 series has been used\n2. From 1993-94 to 1998-99, the 1993-94 series has been used\n3. From 1999-00 to 2003-04, the 1999-00 series has been used\n4. From 2004-05 to 2010-11, the 2004-05 series has been used\n5. 2011-12 onwards, the 2011-12 series has been used, with the exception of West Bengal, as GSDP data for the 2011-12 series is not available yet. \n\nSource: Central Statistics Office', 'fileType': '.csv', 'name': 'Nominal_GSDP_Series.csv', 'ownerRef': 'rajanand', 'totalBytes': 7269, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': '', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Own_Tax_Revenues.csv', 'creationDate': '2017-08-27T11:47:09Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Source: Various Issues Handbook of Statistics on State Government Finances and State Finances: A Study of State Budgets, Reserve Bank of India\n‘-’: Not Available. RE: Revised Estimates. BE: Budget Estimates.\n\nNotes : \n\n1. Minus sign (-) indicates surplus in deficit indicator.\n2. Figures in respect of Bihar relate to revised estimates from 1990-91 to 1994-95 and 1999-2000 to 2003-04.\n3. Figures in respect of Jammu and Kashmir relate to revised estimates from 1990-91 to 1997-98 and 2001-2002 to 2009-10.\n4. Figures in respect of Nagaland relate to revised estimates from 1990-91 to 2001-2002.\n5. Figures in respect of Manipur relate to revised estimates for 1990-91 and 2001-2002 to 2008-09.\n6. Figures in respect of Jharkhand relate to revised estimates for 1990-91 and 2001-2002 to 2010-11.\n7. All the figures in 2015-16 is revised estimates.', 'fileType': '.csv', 'name': 'Own_Tax_Revenues.csv', 'ownerRef': 'rajanand', 'totalBytes': 5235, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'Revenue_Deficits.csv', 'creationDate': '2017-08-27T12:01:11Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Source: Various Issues Handbook of Statistics on State Government Finances and State Finances: A Study of State Budgets, Reserve Bank of India\n\nNotes : \n\n1. Minus sign (-) indicates surplus in deficit indicator.\n2. Figures in respect of Bihar relate to revised estimates from 1990-91 to 1994-95 and 1999-2000 to 2003-04.\n3. Figures in respect of Jammu and Kashmir relate to revised estimates from 1990-91 to 1997-98 and 2001-2002 to 2009-10.\n4. Figures in respect of Nagaland relate to revised estimates from 1990-91 to 2001-2002.\n5. Figures in respect of Manipur relate to revised estimates for 1990-91 and 2001-2002 to 2008-09.\n6. Figures in respect of Jharkhand relate to revised estimates for 1990-91 and 2001-2002 to 2010-11.\n', 'fileType': '.csv', 'name': 'Revenue_Deficits.csv', 'ownerRef': 'rajanand', 'totalBytes': 6107, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16 (RE)', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'Revenue_Expenditure.csv', 'creationDate': '2017-08-27T12:01:12Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Source: Various Issues of Handbook of Statistics on State Government Finances and State Finances: A Study of State Budgets, Reserve Bank of India.', 'fileType': '.csv', 'name': 'Revenue_Expenditure.csv', 'ownerRef': 'rajanand', 'totalBytes': 6618, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15 (RE)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16 (BE)', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'Social_Sector_Expenditure.csv', 'creationDate': '2017-08-27T12:01:11Z', 'datasetRef': 'rajanand/finance-india', 'description': 'Social Sector Expenditure includes expenditure on social services, rural development, food storage and warehousing under revenue expenditure, capital outlay and loans and advance by the State Governments.\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\nSource: Various Issues of Handbook of Statistics on State Government Finances and State Finances: A Study of State Budgets, Reserve Bank of India', 'fileType': '.csv', 'name': 'Social_Sector_Expenditure.csv', 'ownerRef': 'rajanand', 'totalBytes': 5564, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': '1980-81', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': '1981-82', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': '1982-83', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': '1983-84', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '1984-85', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': '1985-86', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '1986-87', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '1987-88', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '1988-89', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '1989-90', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': '1990-91', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': '1991-92', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': '1992-93', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': '1993-94', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': '1994-95', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': '1995-96', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': '1996-97', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': '1997-98', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': '1998-99', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': '1999-00', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': '2000-01', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': '2001-02', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': '2002-03', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': '2003-04', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': '2004-05', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': '2005-06', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': '2006-07', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': '2007-08', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': '2008-09', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': '2009-10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': '2010-11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': '2011-12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': '2012-13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': '2013-14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': '2014-15', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': '2015-16 (RE)', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",2230,False,False,False,0,2017-08-27T12:17:02.98Z,CC BY-SA 4.0,Rajanand Ilangovan / இராஜ்ஆனந்த் இளங்கோவன்,rajanand,rajanand/finance-india,Statewise India's finance detail from 1980 to 2015.,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'india', 'competitionCount': 0, 'datasetCount': 105, 'description': ""This tag will take you to the wonderful land of datasets and kernels related to India. You will find topics that range far and wide. There's education, travel, weather, and crime, too."", 'fullPath': 'geography and places > asia > india', 'isAutomatic': False, 'name': 'india', 'scriptCount': 84, 'totalCount': 189}]",Finance ₹ - India,0,25746,https://www.kaggle.com/rajanand/finance-india,0.7647059,"[{'versionNumber': 1, 'creationDate': '2017-08-27T12:17:02.98Z', 'creatorName': 'Rajanand Ilangovan / இராஜ்ஆனந்த் இளங்கோவன்', 'creatorRef': 'finance-india', 'versionNotes': '2017-08-27: Initial release', 'status': 'Ready'}]",3303,9 +64,Stefano Leone,,3,"### Context + +ETFs represent a cheap alternative to Mutual Funds and they are growing in fast in the last decade. +Is the 2017 hype around ETFs confirmed by good returns in 2018? + + +### Content + +The file contains 25,265 Mutual Funds and 2,353 ETFs with general aspects (as Total Net Assets, management company and size), portfolio indicators (as cash, stocks, bonds, and sectors), returns (as year_to_date, 2018-10) and financial ratios (as price/earning, Treynor and Sharpe ratios, alpha, and beta). + + +### Acknowledgements + +Data has been scraped from the publicly available website https://finance.yahoo.com. + + +### Inspiration + +Datasets allow for multiple comparisons regarding portfolio decisions from investment managers in Mutual Funds and portfolio restrictions to the indexes in ETFs. +The inspiration comes from the 2017 hype regarding ETFs, that convinced many investors to buy shares of Exchange Traded Funds rather than Mutual Funds. +Datasets will be updated every one or two semesters, hopefully with additional information scraped from Morningstar.com.",598,"[{'ref': 'ETFs.csv', 'creationDate': '2019-05-04T02:00:27.362Z', 'datasetRef': 'stefanoleone992/mutual-funds-and-etfs', 'description': 'ETFs data scraped from Yahoo Finance as of 03/05/2019', 'fileType': '.csv', 'name': 'ETFs.csv', 'ownerRef': 'stefanoleone992', 'totalBytes': 1247127, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'fund_name', 'type': 'String', 'originalType': '', 'description': 'Short name of the fund'}, {'order': 1, 'name': 'fund_extended_name', 'type': 'String', 'originalType': '', 'description': 'Extended name of the fund'}, {'order': 2, 'name': 'category', 'type': 'String', 'originalType': '', 'description': 'Fund category'}, {'order': 3, 'name': 'fund_family', 'type': 'String', 'originalType': '', 'description': 'Fund family'}, {'order': 4, 'name': 'net_assets', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Total Net Asset (TNA)'}, {'order': 5, 'name': 'ytd_return', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Year-to-date return'}, {'order': 6, 'name': 'fund_yield', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Yeld'}, {'order': 7, 'name': 'legal_type', 'type': 'String', 'originalType': '', 'description': 'Fund Legal Type'}, {'order': 8, 'name': 'investment', 'type': 'String', 'originalType': '', 'description': 'Fund Investment Type'}, {'order': 9, 'name': 'size', 'type': 'String', 'originalType': '', 'description': 'Fund Size'}, {'order': 10, 'name': 'currency', 'type': 'String', 'originalType': '', 'description': 'Fund Base Currency'}, {'order': 11, 'name': 'net_annual_expense_ratio_fund', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Net Annual Expenses'}, {'order': 12, 'name': 'net_annual_expense_ratio_category', 'type': 'Uuid', 'originalType': '', 'description': 'Category Net Annual Expenses'}, {'order': 13, 'name': 'portfolio_stocks', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Stocks (in %)'}, {'order': 14, 'name': 'portfolio_bonds', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Bonds (in %)'}, {'order': 15, 'name': 'price_earnings', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Earning ratio'}, {'order': 16, 'name': 'price_book', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Book ratio'}, {'order': 17, 'name': 'price_sales', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Sales ratio'}, {'order': 18, 'name': 'price_cashflow', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Cashflow ratio'}, {'order': 19, 'name': 'basic_materials', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Basic Materials (in %)'}, {'order': 20, 'name': 'consumer_cyclical', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Consumer Cyclical (in %)'}, {'order': 21, 'name': 'financial_services', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Financial Services (in %)'}, {'order': 22, 'name': 'real_estate', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Real Estate (in %)'}, {'order': 23, 'name': 'consumer_defensive', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Consumer Defensive (in %)'}, {'order': 24, 'name': 'healthcare', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Healthcare (in %)'}, {'order': 25, 'name': 'utilities', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Utilities (in %)'}, {'order': 26, 'name': 'communication_services', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Communication Services (in %)'}, {'order': 27, 'name': 'energy', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Energy (in %)'}, {'order': 28, 'name': 'industrials', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Industrial (in %)'}, {'order': 29, 'name': 'technology', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Technology (in %)'}, {'order': 30, 'name': 'rating_us_government', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - US Governement (in %)'}, {'order': 31, 'name': 'rating_aaa', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - AAA (in %)'}, {'order': 32, 'name': 'rating_aa', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - AA (in %)'}, {'order': 33, 'name': 'rating_a', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - A (in %)'}, {'order': 34, 'name': 'rating_bbb', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - BBB (in %)'}, {'order': 35, 'name': 'rating_bb', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - BB (in %)'}, {'order': 36, 'name': 'rating_b', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - B (in %)'}, {'order': 37, 'name': 'rating_below_b', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - Below B (in %)'}, {'order': 38, 'name': 'rating_others', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - Others (in %)'}, {'order': 39, 'name': 'fund_return_ytd', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Year-to-date Return'}, {'order': 40, 'name': 'category_return_ytd', 'type': 'Uuid', 'originalType': '', 'description': 'Category Year-to-date Return'}, {'order': 41, 'name': 'fund_return_1month', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 1-month Return'}, {'order': 42, 'name': 'category_return_1month', 'type': 'Uuid', 'originalType': '', 'description': 'Category 1-month Return'}, {'order': 43, 'name': 'fund_return_3months', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-month Return'}, {'order': 44, 'name': 'category_return_3months', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-month Return'}, {'order': 45, 'name': 'fund_return_1year', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 1-year Return'}, {'order': 46, 'name': 'category_return_1year', 'type': 'Uuid', 'originalType': '', 'description': 'Category 1-year Return'}, {'order': 47, 'name': 'fund_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Return'}, {'order': 48, 'name': 'category_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Return'}, {'order': 49, 'name': 'fund_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Return'}, {'order': 50, 'name': 'category_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Return'}, {'order': 51, 'name': 'fund_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Return'}, {'order': 52, 'name': 'category_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Return'}, {'order': 53, 'name': 'fund_return_2018', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2018 Return'}, {'order': 54, 'name': 'fund_return_2017', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2017 Return'}, {'order': 55, 'name': 'fund_return_2016', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2016 Return'}, {'order': 56, 'name': 'fund_return_2015', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2015 Return'}, {'order': 57, 'name': 'fund_return_2014', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2014 Return'}, {'order': 58, 'name': 'fund_return_2013', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2013 Return'}, {'order': 59, 'name': 'fund_return_2012', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2012 Return'}, {'order': 60, 'name': 'fund_return_2011', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2011 Return'}, {'order': 61, 'name': 'fund_return_2010', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2010 Return'}, {'order': 62, 'name': 'fund_alpha_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Alpha'}, {'order': 63, 'name': 'category_alpha_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Alpha'}, {'order': 64, 'name': 'fund_alpha_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Alpha'}, {'order': 65, 'name': 'category_alpha_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Alpha'}, {'order': 66, 'name': 'fund_alpha_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Alpha'}, {'order': 67, 'name': 'category_alpha_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Alpha'}, {'order': 68, 'name': 'fund_beta_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Beta'}, {'order': 69, 'name': 'category_beta_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Beta'}, {'order': 70, 'name': 'fund_beta_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Beta'}, {'order': 71, 'name': 'category_beta_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Beta'}, {'order': 72, 'name': 'fund_beta_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Beta'}, {'order': 73, 'name': 'category_beta_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Beta'}, {'order': 74, 'name': 'fund_mean_annual_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Mean Annual Return'}, {'order': 75, 'name': 'category_mean_annual_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Mean Annual Return'}, {'order': 76, 'name': 'fund_mean_annual_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Mean Annual Return'}, {'order': 77, 'name': 'category_mean_annual_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Mean Annual Return'}, {'order': 78, 'name': 'fund_mean_annual_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Mean Annual Return'}, {'order': 79, 'name': 'category_mean_annual_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Mean Annual Return'}, {'order': 80, 'name': 'fund_r_squared_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year R Squared'}, {'order': 81, 'name': 'category_r_squared_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year R Squared'}, {'order': 82, 'name': 'fund_r_squared_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year R Squared'}, {'order': 83, 'name': 'category_r_squared_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year R Squared'}, {'order': 84, 'name': 'fund_r_squared_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year R Squared'}, {'order': 85, 'name': 'category_r_squared_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year R Squared'}, {'order': 86, 'name': 'fund_standard_deviation_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Standard Deviation'}, {'order': 87, 'name': 'category_standard_deviation_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year R Squared'}, {'order': 88, 'name': 'fund_standard_deviation_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year R Squared'}, {'order': 89, 'name': 'category_standard_deviation_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year R Squared'}, {'order': 90, 'name': 'fund_standard_deviation_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year R Squared'}, {'order': 91, 'name': 'category_standard_deviation_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year R Squared'}, {'order': 92, 'name': 'fund_sharpe_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Sharpe Ratio'}, {'order': 93, 'name': 'category_sharpe_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Sharpe Ratio'}, {'order': 94, 'name': 'fund_sharpe_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Sharpe Ratio'}, {'order': 95, 'name': 'category_sharpe_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Sharpe Ratio'}, {'order': 96, 'name': 'fund_sharpe_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Sharpe Ratio'}, {'order': 97, 'name': 'category_sharpe_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Sharpe Ratio'}, {'order': 98, 'name': 'fund_treynor_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Treynor Ratio'}, {'order': 99, 'name': 'category_treynor_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Treynor Ratio'}, {'order': 100, 'name': 'fund_treynor_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Treynor Ratio'}, {'order': 101, 'name': 'category_treynor_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Treynor Ratio'}, {'order': 102, 'name': 'fund_treynor_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Treynor Ratio'}, {'order': 103, 'name': 'category_treynor_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Treynor Ratio'}]}, {'ref': 'Mutual Funds.csv', 'creationDate': '2019-05-04T02:00:27.468Z', 'datasetRef': 'stefanoleone992/mutual-funds-and-etfs', 'description': 'Mutual Funds data scraped from Yahoo Finance as of 03/05/2019.', 'fileType': '.csv', 'name': 'Mutual Funds.csv', 'ownerRef': 'stefanoleone992', 'totalBytes': 16795949, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'fund_name', 'type': 'String', 'originalType': '', 'description': 'Short name of the fund'}, {'order': 1, 'name': 'fund_extended_name', 'type': 'String', 'originalType': '', 'description': 'Extended name of the fund'}, {'order': 2, 'name': 'category', 'type': 'String', 'originalType': '', 'description': 'Fund category'}, {'order': 3, 'name': 'fund_family', 'type': 'String', 'originalType': '', 'description': 'Fund family'}, {'order': 4, 'name': 'net_assets', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Total Net Asset (TNA)'}, {'order': 5, 'name': 'ytd_return', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Year-to-date return'}, {'order': 6, 'name': 'fund_yield', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Yeld'}, {'order': 7, 'name': 'morningstar_rating', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Morningstar Rating'}, {'order': 8, 'name': 'inception_date', 'type': 'DateTime', 'originalType': '', 'description': 'Inception Date'}, {'order': 9, 'name': 'investment', 'type': 'String', 'originalType': '', 'description': 'Fund Investment Type'}, {'order': 10, 'name': 'size', 'type': 'String', 'originalType': '', 'description': 'Fund Size'}, {'order': 11, 'name': 'currency', 'type': 'String', 'originalType': '', 'description': 'Fund Base Currency'}, {'order': 12, 'name': 'net_annual_expense_ratio_fund', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Net Annual Expenses'}, {'order': 13, 'name': 'net_annual_expense_ratio_category', 'type': 'Uuid', 'originalType': '', 'description': 'Category Net Annual Expenses'}, {'order': 14, 'name': 'portfolio_cash', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Cash (in %)'}, {'order': 15, 'name': 'portfolio_stocks', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Stocks (in %)'}, {'order': 16, 'name': 'portfolio_bonds', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Bonds (in %)'}, {'order': 17, 'name': 'portfolio_others', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Others (in %)'}, {'order': 18, 'name': 'portfolio_preferred', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Preferred Bonds (in %)'}, {'order': 19, 'name': 'portfolio_convertable', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio - Convertable Bonds (in %)'}, {'order': 20, 'name': 'price_earnings', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Earning ratio'}, {'order': 21, 'name': 'price_book', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Book ratio'}, {'order': 22, 'name': 'price_sales', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Sales ratio'}, {'order': 23, 'name': 'price_cashflow', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Price/Cashflow ratio'}, {'order': 24, 'name': 'median_market_cap', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Median Market Cap'}, {'order': 25, 'name': 'basic_materials', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Basic Materials (in %)'}, {'order': 26, 'name': 'consumer_cyclical', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Consumer Cyclical (in %)'}, {'order': 27, 'name': 'financial_services', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Financial Services (in %)'}, {'order': 28, 'name': 'real_estate', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Real Estate (in %)'}, {'order': 29, 'name': 'consumer_defensive', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Consumer Defensive (in %)'}, {'order': 30, 'name': 'healthcare', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Healthcare (in %)'}, {'order': 31, 'name': 'utilities', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Utilities (in %)'}, {'order': 32, 'name': 'communication_services', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Communication Services (in %)'}, {'order': 33, 'name': 'energy', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Energy (in %)'}, {'order': 34, 'name': 'industrials', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Industrial (in %)'}, {'order': 35, 'name': 'technology', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Portfolio Sector - Technology (in %)'}, {'order': 36, 'name': 'bond_maturity', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Maturity'}, {'order': 37, 'name': 'bond_duration', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Duration'}, {'order': 38, 'name': 'rating_us_government', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - US Governement (in %)'}, {'order': 39, 'name': 'rating_aaa', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - AAA (in %)'}, {'order': 40, 'name': 'rating_aa', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - AA (in %)'}, {'order': 41, 'name': 'rating_a', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - A (in %)'}, {'order': 42, 'name': 'rating_bbb', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - BBB (in %)'}, {'order': 43, 'name': 'rating_bb', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - BB (in %)'}, {'order': 44, 'name': 'rating_b', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - B (in %)'}, {'order': 45, 'name': 'rating_below_b', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - Below B (in %)'}, {'order': 46, 'name': 'rating_others', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Bonds Rating - Others (in %)'}, {'order': 47, 'name': 'morningstar_return_rating', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Morningstar Return Rating'}, {'order': 48, 'name': 'fund_return_ytd', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Year-to-date Return'}, {'order': 49, 'name': 'category_return_ytd', 'type': 'Uuid', 'originalType': '', 'description': 'Category Year-to-date Return'}, {'order': 50, 'name': 'fund_return_1month', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 1-month Return'}, {'order': 51, 'name': 'category_return_1month', 'type': 'Uuid', 'originalType': '', 'description': 'Category 1-month Return'}, {'order': 52, 'name': 'fund_return_3months', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-month Return'}, {'order': 53, 'name': 'category_return_3months', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-month Return'}, {'order': 54, 'name': 'fund_return_1year', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 1-year Return'}, {'order': 55, 'name': 'category_return_1year', 'type': 'Uuid', 'originalType': '', 'description': 'Category 1-year Return'}, {'order': 56, 'name': 'fund_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Return'}, {'order': 57, 'name': 'category_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Return'}, {'order': 58, 'name': 'fund_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Return'}, {'order': 59, 'name': 'category_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Return'}, {'order': 60, 'name': 'fund_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Return'}, {'order': 61, 'name': 'category_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Return'}, {'order': 62, 'name': 'fund_return_2018', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2018 Return'}, {'order': 63, 'name': 'category_return_2018', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2018 Return'}, {'order': 64, 'name': 'fund_return_2017', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2017 Return'}, {'order': 65, 'name': 'category_return_2017', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2017 Return'}, {'order': 66, 'name': 'fund_return_2016', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2016 Return'}, {'order': 67, 'name': 'category_return_2016', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2016 Return'}, {'order': 68, 'name': 'fund_return_2015', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2015 Return'}, {'order': 69, 'name': 'category_return_2015', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2015 Return'}, {'order': 70, 'name': 'fund_return_2014', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2014 Return'}, {'order': 71, 'name': 'category_return_2014', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2014 Return'}, {'order': 72, 'name': 'fund_return_2013', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2013 Return'}, {'order': 73, 'name': 'category_return_2013', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2013 Return'}, {'order': 74, 'name': 'fund_return_2012', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2012 Return'}, {'order': 75, 'name': 'category_return_2012', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2012 Return'}, {'order': 76, 'name': 'fund_return_2011', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2011 Return'}, {'order': 77, 'name': 'category_return_2011', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2011 Return'}, {'order': 78, 'name': 'fund_return_2010', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 2010 Return'}, {'order': 79, 'name': 'category_return_2010', 'type': 'Uuid', 'originalType': '', 'description': 'Category 2010 Return'}, {'order': 80, 'name': 'morningstar_risk_rating', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Morningstar Risk Rating'}, {'order': 81, 'name': 'years_up', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Return - Year Up'}, {'order': 82, 'name': 'years_down', 'type': 'Uuid', 'originalType': '', 'description': 'Fund Return - Year Down'}, {'order': 83, 'name': 'fund_alpha_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Alpha'}, {'order': 84, 'name': 'category_alpha_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Alpha'}, {'order': 85, 'name': 'fund_alpha_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Alpha'}, {'order': 86, 'name': 'category_alpha_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Alpha'}, {'order': 87, 'name': 'fund_alpha_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Alpha'}, {'order': 88, 'name': 'category_alpha_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Alpha'}, {'order': 89, 'name': 'fund_beta_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Beta'}, {'order': 90, 'name': 'category_beta_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Beta'}, {'order': 91, 'name': 'fund_beta_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Beta'}, {'order': 92, 'name': 'category_beta_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Beta'}, {'order': 93, 'name': 'fund_beta_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Beta'}, {'order': 94, 'name': 'category_beta_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Beta'}, {'order': 95, 'name': 'fund_mean_annual_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Mean Annual Return'}, {'order': 96, 'name': 'category_mean_annual_return_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Mean Annual Return'}, {'order': 97, 'name': 'fund_mean_annual_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Mean Annual Return'}, {'order': 98, 'name': 'category_mean_annual_return_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Mean Annual Return'}, {'order': 99, 'name': 'fund_mean_annual_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Mean Annual Return'}, {'order': 100, 'name': 'category_mean_annual_return_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Mean Annual Return'}, {'order': 101, 'name': 'fund_r_squared_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year R Squared'}, {'order': 102, 'name': 'category_r_squared_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year R Squared'}, {'order': 103, 'name': 'fund_r_squared_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year R Squared'}, {'order': 104, 'name': 'category_r_squared_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year R Squared'}, {'order': 105, 'name': 'fund_r_squared_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year R Squared'}, {'order': 106, 'name': 'category_r_squared_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year R Squared'}, {'order': 107, 'name': 'fund_standard_deviation_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Standard Deviation'}, {'order': 108, 'name': 'category_standard_deviation_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year R Squared'}, {'order': 109, 'name': 'fund_standard_deviation_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year R Squared'}, {'order': 110, 'name': 'category_standard_deviation_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year R Squared'}, {'order': 111, 'name': 'fund_standard_deviation_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year R Squared'}, {'order': 112, 'name': 'category_standard_deviation_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year R Squared'}, {'order': 113, 'name': 'fund_sharpe_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Sharpe Ratio'}, {'order': 114, 'name': 'category_sharpe_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Sharpe Ratio'}, {'order': 115, 'name': 'fund_sharpe_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Sharpe Ratio'}, {'order': 116, 'name': 'category_sharpe_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Sharpe Ratio'}, {'order': 117, 'name': 'fund_sharpe_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Sharpe Ratio'}, {'order': 118, 'name': 'category_sharpe_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Sharpe Ratio'}, {'order': 119, 'name': 'fund_treynor_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 3-year Treynor Ratio'}, {'order': 120, 'name': 'category_treynor_ratio_3years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 3-year Treynor Ratio'}, {'order': 121, 'name': 'fund_treynor_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 5-year Treynor Ratio'}, {'order': 122, 'name': 'category_treynor_ratio_5years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 5-year Treynor Ratio'}, {'order': 123, 'name': 'fund_treynor_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Fund 10-year Treynor Ratio'}, {'order': 124, 'name': 'category_treynor_ratio_10years', 'type': 'Uuid', 'originalType': '', 'description': 'Category 10-year Treynor Ratio'}]}]",55721,False,False,False,2,2019-05-04T02:00:37.827Z,CC0: Public Domain,Stefano Leone,stefanoleone992,stefanoleone992/mutual-funds-and-etfs,25k+ Mutual Funds and 2k+ ETFs scraped from Yahoo Finance,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'united states', 'competitionCount': 0, 'datasetCount': 119, 'description': 'The top datasets and kernels in this tag are about mass shootings, AirBnB, homelessness, and witchcraft. That about sums it up.', 'fullPath': 'geography and places > north america > united states', 'isAutomatic': False, 'name': 'united states', 'scriptCount': 51, 'totalCount': 170}, {'ref': 'banking', 'competitionCount': 8, 'datasetCount': 51, 'description': 'Banks keep the financial system interesting by failing en masse every couple of generations.', 'fullPath': 'society and social sciences > society > finance > banking', 'isAutomatic': False, 'name': 'banking', 'scriptCount': 77, 'totalCount': 136}]",Mutual Funds and ETFs,0,4547400,https://www.kaggle.com/stefanoleone992/mutual-funds-and-etfs,1.0,"[{'versionNumber': 3, 'creationDate': '2019-05-04T02:00:37.827Z', 'creatorName': 'Stefano Leone', 'creatorRef': 'mutual-funds-and-etfs', 'versionNotes': 'Updated version', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2019-02-17T23:01:49.873Z', 'creatorName': 'Stefano Leone', 'creatorRef': 'mutual-funds-and-etfs', 'versionNotes': 'Updated version as of 15/02/19', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-09-23T19:25:45.053Z', 'creatorName': 'Stefano Leone', 'creatorRef': 'mutual-funds-and-etfs', 'versionNotes': 'Initial release', 'status': 'Ready'}]",3133,20 +65,stexo92,,1,"GAFA (Google, Apple, Facebook, Amazon) stock prices until 20 April 2018. + +Source: Yahoo Finance",741,"[{'ref': 'GAFA Stock Prices.csv', 'creationDate': '2018-04-22T21:06:07.958Z', 'datasetRef': 'stexo92/gafa-stock-prices', 'description': '', 'fileType': '.csv', 'name': 'GAFA Stock Prices.csv', 'ownerRef': 'stexo92', 'totalBytes': 1456915, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Stock', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",23090,False,False,False,3,2018-04-22T21:07:52.127Z,CC0: Public Domain,stexo92,stexo92,stexo92/gafa-stock-prices,"GAFA (Google, Apple, Facebook, Amazon) stock prices from Yahoo Finance","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}, {'ref': 'money', 'competitionCount': 1, 'datasetCount': 66, 'description': ""Money data doesn't grow on trees, but you can find datasets and kernels about the exchange of money as payment for goods and services. Plus, Bitcoin and other cryptocurrencies."", 'fullPath': 'society and social sciences > society > money', 'isAutomatic': False, 'name': 'money', 'scriptCount': 17, 'totalCount': 84}]",GAFA stock prices,0,407127,https://www.kaggle.com/stexo92/gafa-stock-prices,0.5294118,"[{'versionNumber': 1, 'creationDate': '2018-04-22T21:07:52.127Z', 'creatorName': 'stexo92', 'creatorRef': 'gafa-stock-prices', 'versionNotes': 'Initial release', 'status': 'Ready'}]",3888,18 +66,Kaggle Team,,67,"### Content + +More details about each file are in the individual file descriptions. + +### Context + +This is a dataset hosted by the city of San Francisco. The organization has an open data platform found [here](https://data.sfgov.org) and they update their information according the amount of data that is brought in. Explore San Francisco's Data using Kaggle and all of the data sources available through the San Francisco [organization page](https://www.kaggle.com/san-francisco)! + +* Update Frequency: This dataset is updated quarterly. + +### Acknowledgements + +This dataset is maintained using Socrata's API and Kaggle's API. [Socrata](https://socrata.com/) has assisted countless organizations with hosting their open data and has been an integral part of the process of bringing more data to the public. + +This dataset is distributed under the following licenses: Open Data Commons Public Domain Dedication and License",155,"[{'ref': 'campaign-finance-committee-name-to-measure-or-candidate-mapping-for-june-5-2018-and-november-6-2018-elections.csv', 'creationDate': '2019-01-02T22:31:54.871Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset maps the name of a campaign committee to the corresponding candidate or measure. It includes the position of each committee, FPPC ID, and a unique identifier. This dataset is intended for campaign finance data projects. \n\n', 'fileType': '.csv', 'name': 'campaign-finance-committee-name-to-measure-or-candidate-mapping-for-june-5-2018-and-november-6-2018-elections.csv', 'ownerRef': 'san-francisco', 'totalBytes': 17659, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Contest', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'Candidate_or_Measure', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Position', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 5, 'name': 'Election Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'SFO_id', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 7, 'name': 'contest_type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 8, 'name': 'Candidate Controlled', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-data-key.csv', 'creationDate': '2019-01-02T22:32:14.078Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': ""### Content \n\nThe dataset contains descriptions for each column of historical campaign finance data available on data.sfgov.org or the Excel exports on the Ethics Commission's Campaign Finance Database at http://nf4.netfile.com/pub2?aid=sfoPlease note -- the column header names on different schedules of Form 460 often match, but sometimes have different meanings. \n\n"", 'fileType': '.csv', 'name': 'campaign-finance-data-key.csv', 'ownerRef': 'san-francisco', 'totalBytes': 53220, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Form', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Schedule', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Column', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'Description', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-a-monetary-contributions.csv', 'creationDate': '2019-01-02T22:31:14.408Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized monetary contributions ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""A"" Monetary Contributions from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-a-monetary-contributions.csv', 'ownerRef': 'san-francisco', 'totalBytes': 154235087, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Tran_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Tran_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Tran_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Tran_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Tran_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Tran_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Tran_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Tran_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Tran_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Tran_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 24, 'name': 'Tran_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 25, 'name': 'Tran_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 26, 'name': 'Tran_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Tran_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 28, 'name': 'Tran_Date1', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 29, 'name': 'Tran_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 30, 'name': 'Tran_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 31, 'name': 'Tran_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_Zip', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Intr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Intr_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Intr_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'tblDetlTran_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'tblDetlTran_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 65, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 66, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 67, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 68, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 69, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 70, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 71, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 72, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 73, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 74, 'name': 'Int_CmteId', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 75, 'name': 'Tran_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 76, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 77, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-b1-loans-received.csv', 'creationDate': '2019-01-02T22:32:07.238Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized loans received ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""B1"" Loans Received from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-b1-loans-received.csv', 'ownerRef': 'san-francisco', 'totalBytes': 2344132, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Lndr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Lndr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Lndr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Lndr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Loan_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Loan_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Loan_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Loan_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Loan_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Loan_Date1', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Loan_Date2', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 25, 'name': 'Loan_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Loan_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 27, 'name': 'Loan_Amt3', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 28, 'name': 'Loan_Amt4', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 29, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Loan_EMP', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Loan_OCC', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Loan_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'B2Lender_Name_Inter_name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Loan_Amt5', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 58, 'name': 'Loan_Amt6', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 59, 'name': 'Loan_Amt7', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 60, 'name': 'Loan_Amt8', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 61, 'name': 'Loan_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-b2-loan-guarantors.csv', 'creationDate': '2019-01-02T22:31:03.234Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized guarantors of loans ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""B2"" Loan Guarantors from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-b2-loan-guarantors.csv', 'ownerRef': 'san-francisco', 'totalBytes': 12063, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Lndr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Lndr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Lndr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Lndr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Loan_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Loan_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Loan_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Loan_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Loan_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Loan_Date1', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Loan_Date2', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 25, 'name': 'Loan_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Loan_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 27, 'name': 'Loan_Amt3', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 28, 'name': 'Loan_Amt4', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 29, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Loan_EMP', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Loan_OCC', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Loan_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'B2Lender_Name_Inter_name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Loan_Amt5', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 58, 'name': 'Loan_Amt6', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 59, 'name': 'Loan_Amt7', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 60, 'name': 'Loan_Amt8', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 61, 'name': 'Loan_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-c-non-monetary-contributions.csv', 'creationDate': '2019-01-02T22:31:52.259Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized non-monetary contributions ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""C"" Non-Monetary Contributions from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-c-non-monetary-contributions.csv', 'ownerRef': 'san-francisco', 'totalBytes': 3697506, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Tran_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Tran_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Tran_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Tran_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Tran_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Tran_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Tran_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Tran_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Tran_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Tran_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 24, 'name': 'Tran_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 25, 'name': 'Tran_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 26, 'name': 'Tran_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Tran_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 28, 'name': 'Tran_Date1', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 29, 'name': 'Tran_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 30, 'name': 'Tran_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 31, 'name': 'Tran_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_Zip', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Intr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Intr_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Intr_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'tblDetlTran_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'tblDetlTran_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 65, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 66, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 67, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 68, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 69, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 70, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 71, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 72, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 73, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 74, 'name': 'Int_CmteId', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 75, 'name': 'Tran_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 76, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 77, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-d-summary-of-expenditures-supporting-opposing-other-candidates-measures-and-committees.csv', 'creationDate': '2019-01-02T22:32:01.634Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized expenditures supporting/opposing other candidates, measures and committees ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""D"" Expenditures Supporting/Opposing Other Candidates, Measures and Committees from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-d-summary-of-expenditures-supporting-opposing-other-candidates-measures-and-committees.csv', 'ownerRef': 'san-francisco', 'totalBytes': 8711896, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Payee_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Payee_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Payee_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Payee_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Payee_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Payee_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Payee_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Payee_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Payee_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Expn_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 25, 'name': 'Cum_YTD', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Expn_ChkNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Expn_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Agent_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Agent_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Agent_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Agent_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'G_From_E_F', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Payee_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-e-payments-made.csv', 'creationDate': '2019-01-02T22:31:32.146Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized payments made ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""E"" Payments Made from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-e-payments-made.csv', 'ownerRef': 'san-francisco', 'totalBytes': 55698313, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Payee_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Payee_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Payee_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Payee_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Payee_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Payee_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Payee_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Payee_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Payee_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Expn_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 25, 'name': 'Cum_YTD', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Expn_ChkNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Expn_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Agent_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Agent_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Agent_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Agent_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'G_From_E_F', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Payee_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-f-accrued-expenses-unpaid-bills.csv', 'creationDate': '2019-01-02T22:32:09.247Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized accrued expenses ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""F"" Accrued Expenses (Unpaid Bills) from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-f-accrued-expenses-unpaid-bills.csv', 'ownerRef': 'san-francisco', 'totalBytes': 11767462, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Payee_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Payee_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Payee_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Payee_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Payee_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Payee_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Payee_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Payee_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Payee_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Beg_Bal', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 24, 'name': 'Amt_Incur', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 25, 'name': 'Amt_Paid', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'End_Bal', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 27, 'name': 'Expn_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Payee_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-g-payments-made-by-an-agent-or-independent-contractor.csv', 'creationDate': '2019-01-02T22:32:11.227Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized payments made by an agent or independent contractor ($500 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""G"" Payments Made by an Agent or Independent Contractor from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-g-payments-made-by-an-agent-or-independent-contractor.csv', 'ownerRef': 'san-francisco', 'totalBytes': 12470698, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Payee_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Payee_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Payee_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Payee_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Payee_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Payee_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Payee_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Payee_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Payee_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Expn_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 25, 'name': 'Cum_YTD', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Expn_ChkNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Expn_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Agent_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Agent_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Agent_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Agent_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'G_From_E_F', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Payee_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-h-loans-made-to-others.csv', 'creationDate': '2019-01-02T22:32:18.277Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized loans made to others ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""H"" Loans Made to Others from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-h-loans-made-to-others.csv', 'ownerRef': 'san-francisco', 'totalBytes': 138346, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Lndr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Lndr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Lndr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Lndr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Loan_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Loan_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Loan_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Loan_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Loan_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Loan_Date1', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Loan_Date2', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 25, 'name': 'Loan_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Loan_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 27, 'name': 'Loan_Amt3', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 28, 'name': 'Loan_Amt4', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 29, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Loan_EMP', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Loan_OCC', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Loan_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'B2Lender_Name_Inter_name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Loan_Amt5', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 58, 'name': 'Loan_Amt6', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 59, 'name': 'Loan_Amt7', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 60, 'name': 'Loan_Amt8', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 61, 'name': 'Loan_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-schedule-i-miscellaneous-increases-to-cash.csv', 'creationDate': '2019-01-02T22:31:05.007Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized Miscellaneous Increases to Cash ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 460 Schedule ""I"" Miscellaneous Increases to Cash from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-schedule-i-miscellaneous-increases-to-cash.csv', 'ownerRef': 'san-francisco', 'totalBytes': 1348747, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Tran_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Tran_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Tran_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Tran_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Tran_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Tran_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Tran_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Tran_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Tran_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Tran_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 24, 'name': 'Tran_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 25, 'name': 'Tran_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 26, 'name': 'Tran_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Tran_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 28, 'name': 'Tran_Date1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Tran_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 30, 'name': 'Tran_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 31, 'name': 'Tran_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_Zip', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Intr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Intr_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Intr_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'tblDetlTran_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'tblDetlTran_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 65, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 66, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 67, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 68, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 69, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 70, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 71, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 72, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 73, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 74, 'name': 'Int_CmteId', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 75, 'name': 'Tran_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 76, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 77, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-460-summary-totals.csv', 'creationDate': '2019-01-02T22:31:09.611Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all summary totals e-filed on Fair Political Practices Commission (FPPC) Form 460 Summary Page from 1998 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-460-summary-totals.csv', 'ownerRef': 'san-francisco', 'totalBytes': 75099359, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': 'Filer ID (FPPC or Local)'}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': 'Filer Name (Committee Name)'}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': 'Report Number (Amendment Sequence Order, 000 Original Report, 001-999 Amendment Report number)'}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': 'Type of Committee including (CAO - Candidate/Officeholder, CTL - Controlled Committee, RCP - Recipient Committee, SMO - Slate Mailer Organization, BMC - Ballot Measure Committee, MDI - Major Donor/Independent Expenditure'}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': 'Date Document is Generated (As Written in CAL Submission)'}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': 'Period Start Date'}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': 'Period End Date'}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': 'Election Date'}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': 'Office Sought (Codes in CAL Spec)'}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': 'Office Sought Description (Required if Office_CD is ""OTH"" Code for Other)'}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': 'Record Type Value (Type of data, IE: Cover Page, Expenditure, etc.)'}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': 'If a letter then it is a schedule from Form 460; Otherwise indicates FPPC Form number'}, {'order': 12, 'name': 'Line_Item', 'type': 'String', 'originalType': 'string', 'description': 'Summary page line item (If Form Type = FPPC Form number such as 460 then lines from the Summary Page, if Form Type = letters then subtotal lines from each schedule page)'}, {'order': 13, 'name': 'Amount_A', 'type': 'Numeric', 'originalType': 'number', 'description': 'If Form_Type=F460 then Total this period (From Attached Schedules), if schedule letter value = line item from subtotal on 460 form schedule. If Form Type=other FPPC form, refer to the applicable summary page'}, {'order': 14, 'name': 'Amount_B', 'type': 'Numeric', 'originalType': 'number', 'description': 'If Form_Type=F460 then Calendar Year Total to Date, if schedule letter value = line item from subtotal on 460 form schedule. If Form Type=other FPPC form, refer to the applicable summary page'}, {'order': 15, 'name': 'Amount_C', 'type': 'Numeric', 'originalType': 'number', 'description': 'If Form_Type=F460 then Election Total to Date (No longer in use), if schedule letter value = line item from subtotal on 460 form schedule. If Form Type=other FPPC form, refer to the applicable summary page'}]}, {'ref': 'campaign-finance-fppc-form-461-major-donor-and-independent-expenditure-committee-statement-part-5-contributions-including-loans-forgiveness-of-loans-and-loan-guarantees-and-expenditures-made.csv', 'creationDate': '2019-01-02T22:31:28.163Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized Contributions (Including Loans, Forgiveness of Loans, and Loan Guarantees) and Expenditures Made ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 461 ""Part 5"" Contributions (Including Loans, Forgiveness of Loans, and Loan Guarantees) and Expenditures Made from 2009 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-461-major-donor-and-independent-expenditure-committee-statement-part-5-contributions-including-loans-forgiveness-of-loans-and-loan-guarantees-and-expenditures-made.csv', 'ownerRef': 'san-francisco', 'totalBytes': 1227566, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Payee_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Payee_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Payee_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Payee_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Payee_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Payee_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Payee_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Payee_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Payee_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Expn_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 25, 'name': 'Cum_YTD', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Expn_ChkNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Expn_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Agent_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Agent_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Agent_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Agent_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'G_From_E_F', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'EmplBus_CB', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Bus_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 65, 'name': 'Bus_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 66, 'name': 'Bus_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 67, 'name': 'Bus_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 68, 'name': 'Bus_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 69, 'name': 'Bus_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 70, 'name': 'Bus_Inter', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 71, 'name': 'BusAct_CB', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 72, 'name': 'BusActvity', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 73, 'name': 'Assoc_CB', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 74, 'name': 'Assoc_Int', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 75, 'name': 'Other_CB', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 76, 'name': 'Other_Int', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 77, 'name': 'Payee_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 78, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 79, 'name': 'Bus_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-465-supplemental-independent-expenditure-report-part-3-independent-expenditures-made.csv', 'creationDate': '2019-01-02T22:31:01.679Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized independent expenditures ($100 or more) e-filed on Fair Political Practices Commission (FPPC) Form 465 Part 3 Independent Expenditures Made from 2009 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-465-supplemental-independent-expenditure-report-part-3-independent-expenditures-made.csv', 'ownerRef': 'san-francisco', 'totalBytes': 4594299, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Payee_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Payee_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Payee_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Payee_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Payee_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Payee_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Payee_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Payee_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Payee_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Expn_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 24, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 25, 'name': 'Cum_YTD', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 26, 'name': 'Expn_ChkNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Expn_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Agent_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Agent_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Agent_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Agent_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Tres_ZIP4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'G_From_E_F', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Payee_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-496-late-independent-expenditure-report-independent-expenditures-made.csv', 'creationDate': '2019-01-02T22:31:06.449Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized late independent expenditures ($1000 or more) e-filed on Fair Political Practices Commission (FPPC) Form 496 Late Independent Expenditures Report from 2008 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-496-late-independent-expenditure-report-independent-expenditures-made.csv', 'ownerRef': 'san-francisco', 'totalBytes': 1148696, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 12, 'name': 'Exp_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 13, 'name': 'Date_Thru', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 14, 'name': 'Expn_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 24, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 25, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 26, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Dist_No', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 30, 'name': 'Rpt_ID_Num', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-496-late-independent-expenditure-report-part-3-contributions-of-100-or-more-received.csv', 'creationDate': '2019-01-02T22:30:59.993Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized contributions of $100 or more e-filed on Fair Political Practices Commission (FPPC) Form 496 ""Part 3"" Contributions of $100 or More Received from 2009 to the present. The data is current as of the last modified date on this dataset. \r\n\r\nSee the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-496-late-independent-expenditure-report-part-3-contributions-of-100-or-more-received.csv', 'ownerRef': 'san-francisco', 'totalBytes': 1017233, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'tblCover_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'tblCover_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Tran_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Tran_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Tran_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Tran_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Tran_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Tran_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Tran_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Tran_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Tran_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Tran_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 24, 'name': 'Tran_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 25, 'name': 'Tran_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 26, 'name': 'Tran_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Tran_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 28, 'name': 'Tran_Date1', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 29, 'name': 'Tran_Amt1', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 30, 'name': 'Tran_Amt2', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 31, 'name': 'Tran_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Tres_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Tres_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Tres_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Tres_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Tres_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 38, 'name': 'Tres_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Tres_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Tres_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Tres_Zip', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Intr_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Intr_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Intr_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 45, 'name': 'Intr_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 46, 'name': 'Intr_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 47, 'name': 'Intr_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 48, 'name': 'Intr_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 49, 'name': 'Intr_State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 50, 'name': 'Intr_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 51, 'name': 'Intr_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 52, 'name': 'Intr_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 53, 'name': 'Intr_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 54, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 55, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 56, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 57, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 58, 'name': 'tblDetlTran_Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 59, 'name': 'tblDetlTran_Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 60, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 61, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 62, 'name': 'Dist_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 63, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 64, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 65, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 66, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 67, 'name': 'Sup_Opp_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 68, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 69, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 70, 'name': 'BakRef_TID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 71, 'name': 'XRef_SchNm', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 72, 'name': 'XRef_Match', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 73, 'name': 'Loan_Rate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 74, 'name': 'Int_CmteId', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 75, 'name': 'Tran_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 76, 'name': 'Tres_Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 77, 'name': 'Intr_Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-fppc-form-497-late-contribution-report-late-contributions-made.csv', 'creationDate': '2019-01-02T22:31:56.404Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nThis dataset includes all itemized late contributions (cumulative $1,000 or more) e-filed on Fair Political Practices Commission (FPPC) Form 497 Late Contribution Report from 2008 to the present.The data is current as of the last modified date on this dataset.See the data key for column definitions: https://data.sfgov.org/Ethics/Campaign-Finance-Data-Key/wygs-cc76 \n\n', 'fileType': '.csv', 'name': 'campaign-finance-fppc-form-497-late-contribution-report-late-contributions-made.csv', 'ownerRef': 'san-francisco', 'totalBytes': 2404879, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Filer_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report_Num', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Committee_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Rpt_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'From_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 6, 'name': 'Thru_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Elect_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'Rec_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'Form_Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Tran_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Entity_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Enty_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Enty_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Enty_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Enty_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Enty_Adr1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Enty_Adr2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Enty_City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Enty_ST', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'Enty_Zip4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'Ctrib_Emp', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Ctrib_Occ', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Ctrib_Self', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 24, 'name': 'Elec_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 25, 'name': 'Ctrib_Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 26, 'name': 'Date_Thru', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 27, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 28, 'name': 'Cmte_ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'Cand_NamL', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Cand_NamF', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'Cand_NamT', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 32, 'name': 'Cand_NamS', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 33, 'name': 'Office_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 34, 'name': 'Offic_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 35, 'name': 'Juris_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 36, 'name': 'Juris_Dscr', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 37, 'name': 'Dist_No', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 38, 'name': 'Off_S_H_Cd', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 39, 'name': 'Bal_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 40, 'name': 'Bal_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 41, 'name': 'Bal_Juris', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 42, 'name': 'Memo_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 43, 'name': 'Memo_RefNo', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 44, 'name': 'Rpt_ID_Num', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-individual-expenditure-ceilings-iec.csv', 'creationDate': '2019-01-02T22:32:28.9Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': ""### Content \n\nThis table provides information about the Individual Expenditure Ceilings (IEC) for Board of Supervisors and Mayoral candidates. Only candidates who have been certified as eligible to receive public funds are bound by an Individual Expenditure Ceiling (IEC). Each publicly financed BOS candidate's IEC begins at $250,000 and may be raised in increments of $10,000. Each publicly financed Mayoral candidate's IEC begins at $1,475,000 and may be raised in increments of $100,000. \n\n"", 'fileType': '.csv', 'name': 'campaign-finance-individual-expenditure-ceilings-iec.csv', 'ownerRef': 'san-francisco', 'totalBytes': 33401, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Election Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 1, 'name': 'District', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Candidate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'Date Certified or IEC Raised', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 4, 'name': 'Amount of IEC', 'type': 'Numeric', 'originalType': 'number', 'description': None}]}, {'ref': 'campaign-finance-list-of-candidates-running-for-office-who-have-accepted-vec.csv', 'creationDate': '2019-01-02T22:32:24.312Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nCampaign Finance - List Of Candidates Running For Office Who Have Accepted Voluntary Expenditure Ceiling (VEC) \n\n', 'fileType': '.csv', 'name': 'campaign-finance-list-of-candidates-running-for-office-who-have-accepted-vec.csv', 'ownerRef': 'san-francisco', 'totalBytes': 700, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Election Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 1, 'name': 'Candidate Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Office Sought', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-public-funds-disbursed.csv', 'creationDate': '2019-01-02T22:32:16.733Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nCampaign Finance - Public Funds Disbursed \n\n', 'fileType': '.csv', 'name': 'campaign-finance-public-funds-disbursed.csv', 'ownerRef': 'san-francisco', 'totalBytes': 25639, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Election Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 1, 'name': 'District', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Candidate', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'Date of Submission', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 4, 'name': 'Date Certified/Approved', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'Pending/Completed', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 6, 'name': 'Funds Approved', 'type': 'Numeric', 'originalType': 'number', 'description': None}]}, {'ref': 'campaign-finance-san-francisco-campaign-committees-and-other-campaign-filers.csv', 'creationDate': '2019-01-02T22:32:15.233Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': ""### Content \n\nThis dataset contains a list of all active and terminated campaign committees and non-committee campaign finance filers in the Ethics Commission's records database. \n\n"", 'fileType': '.csv', 'name': 'campaign-finance-san-francisco-campaign-committees-and-other-campaign-filers.csv', 'ownerRef': 'san-francisco', 'totalBytes': 629718, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'OID', 'type': 'Numeric', 'originalType': 'number', 'description': 'Unique database row ID'}, {'order': 1, 'name': 'Name', 'type': 'String', 'originalType': 'string', 'description': 'Filer / Committee Name'}, {'order': 2, 'name': 'IsEfiler', 'type': 'String', 'originalType': 'string', 'description': 'Is the filer required to e-file?'}, {'order': 3, 'name': 'Status', 'type': 'String', 'originalType': 'string', 'description': 'Filer status'}, {'order': 4, 'name': 'Type', 'type': 'String', 'originalType': 'string', 'description': 'Type of filer'}, {'order': 5, 'name': 'FPPCID', 'type': 'String', 'originalType': 'string', 'description': 'ID number assigned by the Fair Political Practices Commission (FPPC). PEN numbers are local ID numbers for committees without an FPPC ID.'}, {'order': 6, 'name': 'PENID', 'type': 'String', 'originalType': 'string', 'description': 'PEN numbers are local ID numbers for committees without an FPPC ID.'}, {'order': 7, 'name': 'DisclosureCity', 'type': 'String', 'originalType': 'string', 'description': 'Filer city'}, {'order': 8, 'name': 'DisclosureState', 'type': 'String', 'originalType': 'string', 'description': 'Filer state'}, {'order': 9, 'name': 'DisclosurePostalCode', 'type': 'String', 'originalType': 'string', 'description': 'Filer zip code'}, {'order': 10, 'name': 'TreasurerFirst', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'TreasurerLast', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'TreasurerPrefix', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'T Disclosure City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'T Disclosure State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'T Disclosure PostalCode', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Asst Treasurer First', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Asst Treasurer Last', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Asst Treasurer Prefix', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'AT Disclosure City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'AT Disclosure State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'AT Disclosure PostalCode', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 22, 'name': 'Cont Cand First', 'type': 'String', 'originalType': 'string', 'description': 'Controlling candidate first name'}, {'order': 23, 'name': 'Cont Cand Last', 'type': 'String', 'originalType': 'string', 'description': 'Controlling candidate last name'}, {'order': 24, 'name': 'Cont Cand Prefix', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 25, 'name': 'CC Disclosure City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 26, 'name': 'CC Disclosure State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'CC Disclosure PostalCode', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 28, 'name': 'Disclosure Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 29, 'name': 'T Disclosure Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'AT Disclosure Location', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 31, 'name': 'CC Disclosure Location', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-sfec-1.126-notification-of-contract-approval-filings.csv', 'creationDate': '2019-01-02T22:31:29.297Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\n[Deprecation Warning] As of 2018-10-17, this dataset will no longer be updated. It remains available for historical purposes only. Instead, refer to https://data.sfgov.org/City-Management-and-Ethics/SFEC-Form-126-Notification-of-Contract-Approval-Fi/ite2-5y3b\r\n\r\nThe dataset includes a list of SFEC 1.126 Notification of Contract Approval Filings filed with the San Francisco Ethics Commission.Each City elective officer who approves a contract that has a value of $50,000 or more in a fiscal year must file form SFEC-126 with the Ethics Commission within five business days of approval. This filing requirement applies if the contract is approved by:(1)the City elective officer, (2) any board on which the City elective officer serves, or (3) the board of any state agency on which an appointee of the City elective officer serves.To view the filings, proceed to: http://www.sfethics.org/ethics/contracts/ \n\n', 'fileType': '.csv', 'name': 'campaign-finance-sfec-1.126-notification-of-contract-approval-filings.csv', 'ownerRef': 'san-francisco', 'totalBytes': 1593284, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Description of the Nature of the Contract that was Approved', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Contract Amount', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Date of Contract Approval', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 3, 'name': 'Date Received by Ethics', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 4, 'name': 'Date Posted by Ethics', 'type': 'DateTime', 'originalType': 'datetime', 'description': 'Date the filing was posted on-line.'}, {'order': 5, 'name': 'Name of Contractor', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 6, 'name': 'Name of Agency/Board Approving Contract', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 7, 'name': 'Name of City Elective Officer', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 8, 'name': 'Filing', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-status-of-voluntary-expenditure-ceiling-vecs.csv', 'creationDate': '2019-01-02T22:32:22.694Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nUnder S.F. Campaign and Governmental Conduct Code 1.128, a candidate who wishes to accept the voluntary expenditure ceiling must file Form SFEC-128 no later than the deadline for filing nomination papers. In a race where at least one candidate has accepted the VEC, all candidates running for office in the same race must file Form SFEC 134(b) within 24 hours of receiving contributions, making expenditures, or having funds that exceed 100 percent of the applicable VEC. \n\n', 'fileType': '.csv', 'name': 'campaign-finance-status-of-voluntary-expenditure-ceiling-vecs.csv', 'ownerRef': 'san-francisco', 'totalBytes': 1423, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Election Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 1, 'name': 'City Elective Office', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Amount of VEC', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 3, 'name': 'Status of VEC', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-summary-of-third-party-disclosure-forms-regarding-san-francisco-candidates.csv', 'creationDate': '2019-01-02T22:31:38.439Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': '### Content \n\nSan Francisco Campaign and Governmental Conduct Code (""S.F. C&GC Code"") sections 1.143(c), 1.152(a)(3), 1.161(b), 1.161.5, and 1.160.5 require persons who make any independent expenditure, electioneering communication, or member communication that clearly identifies a candidate for City elective office or who authorizes, administers or pays for a persuasion poll to file disclosure statements with the Ethics Commission. For detailed instructions, please see Third Party Disclosure Form Regarding Candidates. \n\n', 'fileType': '.csv', 'name': 'campaign-finance-summary-of-third-party-disclosure-forms-regarding-san-francisco-candidates.csv', 'ownerRef': 'san-francisco', 'totalBytes': 347352, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Election', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 1, 'name': 'Form Type', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 2, 'name': 'Report Number', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'Reference', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Date Filed', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 5, 'name': 'Filer', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 6, 'name': 'Filer Id', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 7, 'name': 'Amount', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 8, 'name': 'Candidate Identified', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'District', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Support Oppose or Neutral', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Start Date of Distribution', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 12, 'name': 'End or Only Date of Distribution', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 13, 'name': 'Notes', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Attachment 1', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Attachment 2', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Attachment 3', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Attachment 4', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Attachment 5', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Attachment 6', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'socrata_metadata_campaign-finance-committee-name-to-measure-or-candidate-mapping-for-june-5-2018-and-november-6-2018-elections.json', 'creationDate': '2019-01-02T22:32:31.537Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-committee-name-to-measure-or-candidate-mapping-for-june-5-2018-and-november-6-2018-elections.json', 'ownerRef': 'san-francisco', 'totalBytes': 11238, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-data-key.json', 'creationDate': '2019-01-02T22:32:25.979Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-data-key.json', 'ownerRef': 'san-francisco', 'totalBytes': 4947, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-a-monetary-contributions.json', 'creationDate': '2019-01-02T22:31:41.824Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-a-monetary-contributions.json', 'ownerRef': 'san-francisco', 'totalBytes': 64503, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-b1-loans-received.json', 'creationDate': '2019-01-02T22:31:21.208Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-b1-loans-received.json', 'ownerRef': 'san-francisco', 'totalBytes': 46800, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-b2-loan-guarantors.json', 'creationDate': '2019-01-02T22:32:12.818Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-b2-loan-guarantors.json', 'ownerRef': 'san-francisco', 'totalBytes': 30434, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-c-non-monetary-contributions.json', 'creationDate': '2019-01-02T22:32:03.638Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-c-non-monetary-contributions.json', 'ownerRef': 'san-francisco', 'totalBytes': 48836, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-d-summary-of-expenditures-supporting-opposing-other-candidates-measures-and-committees.json', 'creationDate': '2019-01-02T22:31:36.662Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-d-summary-of-expenditures-supporting-opposing-other-candidates-measures-and-committees.json', 'ownerRef': 'san-francisco', 'totalBytes': 52922, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-e-payments-made.json', 'creationDate': '2019-01-02T22:31:22.775Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-e-payments-made.json', 'ownerRef': 'san-francisco', 'totalBytes': 58740, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-f-accrued-expenses-unpaid-bills.json', 'creationDate': '2019-01-02T22:32:21.666Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-f-accrued-expenses-unpaid-bills.json', 'ownerRef': 'san-francisco', 'totalBytes': 37818, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-g-payments-made-by-an-agent-or-independent-contractor.json', 'creationDate': '2019-01-02T22:31:26.428Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-g-payments-made-by-an-agent-or-independent-contractor.json', 'ownerRef': 'san-francisco', 'totalBytes': 54330, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-h-loans-made-to-others.json', 'creationDate': '2019-01-02T22:31:24.07Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-h-loans-made-to-others.json', 'ownerRef': 'san-francisco', 'totalBytes': 39437, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-i-miscellaneous-increases-to-cash.json', 'creationDate': '2019-01-02T22:31:50.602Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-schedule-i-miscellaneous-increases-to-cash.json', 'ownerRef': 'san-francisco', 'totalBytes': 46872, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-460-summary-totals.json', 'creationDate': '2019-01-02T22:31:59.736Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-460-summary-totals.json', 'ownerRef': 'san-francisco', 'totalBytes': 18281, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-461-major-donor-and-independent-expenditure-committee-statement-part-5-contributions-including-loans-forgiveness-of-loans-and-loan-guarantees-and-expenditures-made.json', 'creationDate': '2019-01-02T22:31:17.864Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-461-major-donor-and-independent-expenditure-committee-statement-part-5-contributions-including-loans-forgiveness-of-loans-and-loan-guarantees-and-expenditures-made.json', 'ownerRef': 'san-francisco', 'totalBytes': 66207, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-465-supplemental-independent-expenditure-report-part-3-independent-expenditures-made.json', 'creationDate': '2019-01-02T22:32:05.485Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-465-supplemental-independent-expenditure-report-part-3-independent-expenditures-made.json', 'ownerRef': 'san-francisco', 'totalBytes': 49851, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-496-late-independent-expenditure-report-independent-expenditures-made.json', 'creationDate': '2019-01-02T22:31:58.021Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-496-late-independent-expenditure-report-independent-expenditures-made.json', 'ownerRef': 'san-francisco', 'totalBytes': 32367, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-496-late-independent-expenditure-report-part-3-contributions-of-100-or-more-received.json', 'creationDate': '2019-01-02T22:31:18.979Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-496-late-independent-expenditure-report-part-3-contributions-of-100-or-more-received.json', 'ownerRef': 'san-francisco', 'totalBytes': 44396, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-fppc-form-497-late-contribution-report-late-contributions-made.json', 'creationDate': '2019-01-02T22:31:34.856Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-fppc-form-497-late-contribution-report-late-contributions-made.json', 'ownerRef': 'san-francisco', 'totalBytes': 42234, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-individual-expenditure-ceilings-iec.json', 'creationDate': '2019-01-02T22:31:40.251Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-individual-expenditure-ceilings-iec.json', 'ownerRef': 'san-francisco', 'totalBytes': 7929, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-list-of-candidates-running-for-office-who-have-accepted-vec.json', 'creationDate': '2019-01-02T22:31:33.706Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-list-of-candidates-running-for-office-who-have-accepted-vec.json', 'ownerRef': 'san-francisco', 'totalBytes': 4129, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-public-funds-disbursed.json', 'creationDate': '2019-01-02T22:31:43.37Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-public-funds-disbursed.json', 'ownerRef': 'san-francisco', 'totalBytes': 8562, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-san-francisco-campaign-committees-and-other-campaign-filers.json', 'creationDate': '2019-01-02T22:31:48.84Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-san-francisco-campaign-committees-and-other-campaign-filers.json', 'ownerRef': 'san-francisco', 'totalBytes': 22484, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-sfec-1.126-notification-of-contract-approval-filings.json', 'creationDate': '2019-01-02T22:31:46.046Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-sfec-1.126-notification-of-contract-approval-filings.json', 'ownerRef': 'san-francisco', 'totalBytes': 20408, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-status-of-voluntary-expenditure-ceiling-vecs.json', 'creationDate': '2019-01-02T22:32:20.062Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-status-of-voluntary-expenditure-ceiling-vecs.json', 'ownerRef': 'san-francisco', 'totalBytes': 5222, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-summary-of-third-party-disclosure-forms-regarding-san-francisco-candidates.json', 'creationDate': '2019-01-02T22:31:16.093Z', 'datasetRef': 'san-francisco/sf-campaign-finance-data', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-summary-of-third-party-disclosure-forms-regarding-san-francisco-candidates.json', 'ownerRef': 'san-francisco', 'totalBytes': 28567, 'url': 'https://www.kaggle.com/', 'columns': []}]",41677,False,False,True,1,2019-01-02T22:32:32.257Z,Other (specified in description),City of San Francisco,san-francisco,san-francisco/sf-campaign-finance-data,From San Francisco Open Data,"[{'ref': 'socrata', 'competitionCount': 0, 'datasetCount': 1110, 'description': None, 'fullPath': 'initiatives > socrata', 'isAutomatic': False, 'name': 'socrata', 'scriptCount': 3, 'totalCount': 1113}, {'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'ethics', 'competitionCount': 0, 'datasetCount': 19, 'description': None, 'fullPath': 'philosophy and thinking > philosophy > ethics', 'isAutomatic': False, 'name': 'ethics', 'scriptCount': 0, 'totalCount': 19}]",SF Campaign Finance Data,0,56501468,https://www.kaggle.com/san-francisco/sf-campaign-finance-data,0.7941176,"[{'versionNumber': 67, 'creationDate': '2019-01-02T22:32:32.257Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20190102', 'status': 'Ready'}, {'versionNumber': 66, 'creationDate': '2019-01-02T19:05:14.507Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20190102', 'status': 'Ready'}, {'versionNumber': 65, 'creationDate': '2018-10-02T19:05:14.647Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20181002', 'status': 'Ready'}, {'versionNumber': 64, 'creationDate': '2018-09-05T05:55:01.497Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180905', 'status': 'Ready'}, {'versionNumber': 63, 'creationDate': '2018-09-04T21:26:05.393Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180904', 'status': 'Ready'}, {'versionNumber': 62, 'creationDate': '2018-08-18T01:11:42.93Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180818', 'status': 'Ready'}, {'versionNumber': 61, 'creationDate': '2018-08-17T23:10:37.68Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180817', 'status': 'Ready'}, {'versionNumber': 60, 'creationDate': '2018-08-17T22:10:22.56Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180817', 'status': 'Ready'}, {'versionNumber': 59, 'creationDate': '2018-08-17T21:01:49.113Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180817', 'status': 'Ready'}, {'versionNumber': 58, 'creationDate': '2018-08-17T19:11:40.97Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'sf-campaign-finance-data', 'versionNotes': 'Automated data update 20180817', 'status': 'Ready'}]",2392,2 +67,Tushar Mahendra Patil,,1,,374,"[{'ref': 'finance-county-level-data-sets.zip', 'creationDate': '2017-11-04T20:04:11.824Z', 'datasetRef': 'tusharpatil15/finance-study', 'description': '', 'fileType': '.zip', 'name': 'finance-county-level-data-sets.zip', 'ownerRef': 'tusharpatil15', 'totalBytes': 3170972, 'url': 'https://www.kaggle.com/', 'columns': []}]",3982,False,False,False,0,2017-11-04T20:05:21.893Z,CC BY-NC-SA 4.0,Tushar Mahendra Patil,tusharpatil15,tusharpatil15/finance-study,,[],finance study,0,3118831,https://www.kaggle.com/tusharpatil15/finance-study,0.25,"[{'versionNumber': 1, 'creationDate': '2017-11-04T20:05:21.893Z', 'creatorName': 'Tushar Mahendra Patil', 'creatorRef': 'finance-study', 'versionNotes': 'Initial release', 'status': 'Ready'}]",3334,5 +68,Kaggle Team,,1,"These files contain complete loan data for all loans issued through the 2007-2015, including the current loan status (Current, Late, Fully Paid, etc.) and latest payment information. The file containing loan data through the ""present"" contains complete loan data for all loans issued through the previous completed calendar quarter. Additional features include credit scores, number of finance inquiries, address including zip codes, and state, and collections among others. The file is a matrix of about 890 thousand observations and 75 variables. A data dictionary is provided in a separate file. k",53425,"[{'ref': 'database.sqlite', 'creationDate': '2019-03-18T18:43:06.494Z', 'datasetRef': 'wendykan/lending-club-loan-data', 'description': 'All loan data (sqlite)', 'fileType': '.sqlite', 'name': 'database.sqlite', 'ownerRef': 'wendykan', 'totalBytes': 1312145408, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'LCDataDictionary.xlsx', 'creationDate': '2019-03-18T18:39:30.519Z', 'datasetRef': 'wendykan/lending-club-loan-data', 'description': 'Data dictionary', 'fileType': '.xlsx', 'name': 'LCDataDictionary.xlsx', 'ownerRef': 'wendykan', 'totalBytes': 23582, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'loan.csv', 'creationDate': '2019-03-18T18:42:59.259Z', 'datasetRef': 'wendykan/lending-club-loan-data', 'description': 'All loan data (sqlite)', 'fileType': '.csv', 'name': 'loan.csv', 'ownerRef': 'wendykan', 'totalBytes': 1189395649, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': None, 'originalType': '', 'description': None}, {'order': 1, 'name': 'member_id', 'type': None, 'originalType': '', 'description': 'A unique LC assigned Id for the borrower member.'}, {'order': 2, 'name': 'loan_amnt', 'type': 'Uuid', 'originalType': '', 'description': 'amount of money requested by the borrower'}, {'order': 3, 'name': 'funded_amnt', 'type': 'Uuid', 'originalType': '', 'description': 'The total amount committed to that loan at that point in time.'}, {'order': 4, 'name': 'funded_amnt_inv', 'type': 'Uuid', 'originalType': '', 'description': 'The total amount committed by investors for that loan at that point in time.'}, {'order': 5, 'name': 'term', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'int_rate', 'type': 'Uuid', 'originalType': '', 'description': 'The interest rate on the loan'}, {'order': 7, 'name': 'installment', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'grade', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'sub_grade', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'emp_title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'emp_length', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'home_ownership', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'annual_inc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'verification_status', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'issue_d', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 16, 'name': 'loan_status', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'pymnt_plan', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'url', 'type': None, 'originalType': '', 'description': None}, {'order': 19, 'name': 'desc', 'type': None, 'originalType': '', 'description': None}, {'order': 20, 'name': 'purpose', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'zip_code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'addr_state', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'dti', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'delinq_2yrs', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'earliest_cr_line', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 27, 'name': 'inq_last_6mths', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 28, 'name': 'mths_since_last_delinq', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 29, 'name': 'mths_since_last_record', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 30, 'name': 'open_acc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 31, 'name': 'pub_rec', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 32, 'name': 'revol_bal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 33, 'name': 'revol_util', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 34, 'name': 'total_acc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 35, 'name': 'initial_list_status', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'out_prncp', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'out_prncp_inv', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 38, 'name': 'total_pymnt', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'total_pymnt_inv', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 40, 'name': 'total_rec_prncp', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'total_rec_int', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 42, 'name': 'total_rec_late_fee', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 43, 'name': 'recoveries', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'collection_recovery_fee', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'last_pymnt_d', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 46, 'name': 'last_pymnt_amnt', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 47, 'name': 'next_pymnt_d', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 48, 'name': 'last_credit_pull_d', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 49, 'name': 'collections_12_mths_ex_med', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 50, 'name': 'mths_since_last_major_derog', 'type': 'Uuid', 'originalType': '', 'description': '2 Year Delinquency Flag'}, {'order': 51, 'name': 'policy_code', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 52, 'name': 'application_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 53, 'name': 'annual_inc_joint', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 54, 'name': 'dti_joint', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 55, 'name': 'verification_status_joint', 'type': 'String', 'originalType': '', 'description': None}, {'order': 56, 'name': 'acc_now_delinq', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 57, 'name': 'tot_coll_amt', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 58, 'name': 'tot_cur_bal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 59, 'name': 'open_acc_6m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 60, 'name': 'open_act_il', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 61, 'name': 'open_il_12m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 62, 'name': 'open_il_24m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 63, 'name': 'mths_since_rcnt_il', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 64, 'name': 'total_bal_il', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 65, 'name': 'il_util', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 66, 'name': 'open_rv_12m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'open_rv_24m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 68, 'name': 'max_bal_bc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 69, 'name': 'all_util', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 70, 'name': 'total_rev_hi_lim', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 71, 'name': 'inq_fi', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 72, 'name': 'total_cu_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 73, 'name': 'inq_last_12m', 'type': 'Uuid', 'originalType': '', 'description': 'Outstanding Principal Amount'}, {'order': 74, 'name': 'acc_open_past_24mths', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 75, 'name': 'avg_cur_bal', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 76, 'name': 'bc_open_to_buy', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 77, 'name': 'bc_util', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 78, 'name': 'chargeoff_within_12_mths', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 79, 'name': 'delinq_amnt', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 80, 'name': 'mo_sin_old_il_acct', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 81, 'name': 'mo_sin_old_rev_tl_op', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 82, 'name': 'mo_sin_rcnt_rev_tl_op', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 83, 'name': 'mo_sin_rcnt_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 84, 'name': 'mort_acc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 85, 'name': 'mths_since_recent_bc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 86, 'name': 'mths_since_recent_bc_dlq', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 87, 'name': 'mths_since_recent_inq', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 88, 'name': 'mths_since_recent_revol_delinq', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 89, 'name': 'num_accts_ever_120_pd', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 90, 'name': 'num_actv_bc_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 91, 'name': 'num_actv_rev_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 92, 'name': 'num_bc_sats', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 93, 'name': 'num_bc_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 94, 'name': 'num_il_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 95, 'name': 'num_op_rev_tl', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 96, 'name': 'num_rev_accts', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 97, 'name': 'num_rev_tl_bal_gt_0', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 98, 'name': 'num_sats', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 99, 'name': 'num_tl_120dpd_2m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 100, 'name': 'num_tl_30dpd', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 101, 'name': 'num_tl_90g_dpd_24m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 102, 'name': 'num_tl_op_past_12m', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 103, 'name': 'pct_tl_nvr_dlq', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 104, 'name': 'percent_bc_gt_75', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 105, 'name': 'pub_rec_bankruptcies', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 106, 'name': 'tax_liens', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 107, 'name': 'tot_hi_cred_lim', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 108, 'name': 'total_bal_ex_mort', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 109, 'name': 'total_bc_limit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 110, 'name': 'total_il_high_credit_limit', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 111, 'name': 'revol_bal_joint', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 112, 'name': 'sec_app_earliest_cr_line', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 113, 'name': 'sec_app_inq_last_6mths', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 114, 'name': 'sec_app_mort_acc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 115, 'name': 'sec_app_open_acc', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 116, 'name': 'sec_app_revol_util', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 117, 'name': 'sec_app_open_act_il', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 118, 'name': 'sec_app_num_rev_accts', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 119, 'name': 'sec_app_chargeoff_within_12_mths', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 120, 'name': 'sec_app_collections_12_mths_ex_med', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 121, 'name': 'sec_app_mths_since_last_major_derog', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 122, 'name': 'hardship_flag', 'type': 'String', 'originalType': '', 'description': None}, {'order': 123, 'name': 'hardship_type', 'type': None, 'originalType': '', 'description': None}, {'order': 124, 'name': 'hardship_reason', 'type': None, 'originalType': '', 'description': None}, {'order': 125, 'name': 'hardship_status', 'type': None, 'originalType': '', 'description': None}, {'order': 126, 'name': 'deferral_term', 'type': None, 'originalType': '', 'description': None}, {'order': 127, 'name': 'hardship_amount', 'type': None, 'originalType': '', 'description': None}, {'order': 128, 'name': 'hardship_start_date', 'type': None, 'originalType': '', 'description': None}, {'order': 129, 'name': 'hardship_end_date', 'type': None, 'originalType': '', 'description': None}, {'order': 130, 'name': 'payment_plan_start_date', 'type': None, 'originalType': '', 'description': None}, {'order': 131, 'name': 'hardship_length', 'type': None, 'originalType': '', 'description': None}, {'order': 132, 'name': 'hardship_dpd', 'type': None, 'originalType': '', 'description': None}, {'order': 133, 'name': 'hardship_loan_status', 'type': None, 'originalType': '', 'description': None}, {'order': 134, 'name': 'orig_projected_additional_accrued_interest', 'type': None, 'originalType': '', 'description': None}, {'order': 135, 'name': 'hardship_payoff_balance_amount', 'type': None, 'originalType': '', 'description': None}, {'order': 136, 'name': 'hardship_last_payment_amount', 'type': None, 'originalType': '', 'description': None}, {'order': 137, 'name': 'disbursement_method', 'type': 'String', 'originalType': '', 'description': None}, {'order': 138, 'name': 'debt_settlement_flag', 'type': 'String', 'originalType': '', 'description': None}, {'order': 139, 'name': 'debt_settlement_flag_date', 'type': None, 'originalType': '', 'description': None}, {'order': 140, 'name': 'settlement_status', 'type': None, 'originalType': '', 'description': None}, {'order': 141, 'name': 'settlement_date', 'type': None, 'originalType': '', 'description': None}, {'order': 142, 'name': 'settlement_amount', 'type': None, 'originalType': '', 'description': None}, {'order': 143, 'name': 'settlement_percentage', 'type': None, 'originalType': '', 'description': None}, {'order': 144, 'name': 'settlement_term', 'type': None, 'originalType': '', 'description': None}]}]",34,False,False,True,582,2019-03-18T18:43:12.857Z,Unknown,Wendy Kan,wendykan,wendykan/lending-club-loan-data,Analyze Lending Club's issued loans,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",Lending Club Loan Data,33,736483000,https://www.kaggle.com/wendykan/lending-club-loan-data,0.7352941,"[{'versionNumber': 1, 'creationDate': '2019-03-18T18:43:12.857Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'lending-club-loan-data', 'versionNotes': 'Updating files until end of 2018', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2016-05-02T21:41:52.12Z', 'creatorName': 'Wendy Kan', 'creatorRef': 'lending-club-loan-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",298751,969 +69,Aditya Rajuladevi,,1,,147,"[{'ref': 'SPIndex.csv', 'creationDate': '2017-12-06T22:08:23.829Z', 'datasetRef': 'adityarajuladevi/sp-index-historical-data', 'description': 'Historical data of S&P Index from 2000 to 2017 downloaded from Yahoo Finance API.', 'fileType': '.csv', 'name': 'SPIndex.csv', 'ownerRef': 'adityarajuladevi', 'totalBytes': 350040, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'high', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'adjclose', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",6296,False,False,False,3,2017-12-06T22:08:32.46Z,CC0: Public Domain,Aditya Rajuladevi,adityarajuladevi,adityarajuladevi/sp-index-historical-data,S&P Index Historical Data from Yahoo finance ,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",S&P index historical Data,0,92820,https://www.kaggle.com/adityarajuladevi/sp-index-historical-data,0.5882353,"[{'versionNumber': 1, 'creationDate': '2017-12-06T22:08:32.46Z', 'creatorName': 'Aditya Rajuladevi', 'creatorRef': 'sp-index-historical-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1158,5 +70,DataJuicers,,1,,109,"[{'ref': 'bchbtc.csv', 'creationDate': '2018-09-24T06:15:45.317Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': 'DataJuicers cryptodatabase.\nOne month ticks extracted from Bitstamp of all tradable currencies. It contains the amount, price, timestamp, and ids of each transaction. ', 'fileType': '.csv', 'name': 'bchbtc.csv', 'ownerRef': 'albala', 'totalBytes': 768405, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'bcheur.csv', 'creationDate': '2018-09-24T06:15:45.231Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'bcheur.csv', 'ownerRef': 'albala', 'totalBytes': 1272174, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'bchusd.csv', 'creationDate': '2018-09-24T06:15:48.839Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'bchusd.csv', 'ownerRef': 'albala', 'totalBytes': 5494942, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'btceur.csv', 'creationDate': '2018-09-24T06:15:48.614Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'btceur.csv', 'ownerRef': 'albala', 'totalBytes': 18066858, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'btcusd.csv', 'creationDate': '2018-09-24T06:15:49.572Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'btcusd.csv', 'ownerRef': 'albala', 'totalBytes': 47811978, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'ethbtc.csv', 'creationDate': '2018-09-24T06:15:46.144Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'ethbtc.csv', 'ownerRef': 'albala', 'totalBytes': 4763432, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'etheur.csv', 'creationDate': '2018-09-24T06:15:50.717Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'etheur.csv', 'ownerRef': 'albala', 'totalBytes': 6438780, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'ethusd.csv', 'creationDate': '2018-09-24T06:15:50.327Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'ethusd.csv', 'ownerRef': 'albala', 'totalBytes': 22110164, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'eurusd.csv', 'creationDate': '2018-09-24T06:15:50.07Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'eurusd.csv', 'ownerRef': 'albala', 'totalBytes': 1503567, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'ltcbtc.csv', 'creationDate': '2018-09-24T06:15:49.907Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'ltcbtc.csv', 'ownerRef': 'albala', 'totalBytes': 1021328, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'ltceur.csv', 'creationDate': '2018-09-24T06:15:49.6Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'ltceur.csv', 'ownerRef': 'albala', 'totalBytes': 2134041, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'ltcusd.csv', 'creationDate': '2018-09-24T06:15:49.803Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'ltcusd.csv', 'ownerRef': 'albala', 'totalBytes': 5474843, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'xrpbtc.csv', 'creationDate': '2018-09-24T06:15:48.614Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'xrpbtc.csv', 'ownerRef': 'albala', 'totalBytes': 3878054, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'xrpeur.csv', 'creationDate': '2018-09-24T06:15:50.372Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'xrpeur.csv', 'ownerRef': 'albala', 'totalBytes': 7873279, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}, {'ref': 'xrpusd.csv', 'creationDate': '2018-09-24T06:15:49.826Z', 'datasetRef': 'albala/ticks-bitcoin-ethereumlitecoin-ripple', 'description': '', 'fileType': '.csv', 'name': 'xrpusd.csv', 'ownerRef': 'albala', 'totalBytes': 21112060, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'index', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'amount', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'price', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'type', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'buy_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'sell_order_id', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",55824,False,False,False,1,2018-09-24T06:28:23.997Z,"Database: Open Database, Contents: © Original Authors",DataJuicers,albala,albala/ticks-bitcoin-ethereumlitecoin-ripple,"Finance, Trading, Cryptocurrency",[],"ticks: bitcoin, ethereum,litecoin, ripple",0,37397747,https://www.kaggle.com/albala/ticks-bitcoin-ethereumlitecoin-ripple,0.3529412,"[{'versionNumber': 1, 'creationDate': '2018-09-24T06:28:23.997Z', 'creatorName': 'DataJuicers', 'creatorRef': 'ticks-bitcoin-ethereumlitecoin-ripple', 'versionNotes': 'Initial release', 'status': 'Ready'}]",801,6 +71,Aleksey Bilogur,,1,"### Context + +This dataset is a record of every building or building unit (apartment, etc.) sold in the New York City property market over a 12-month period. + +### Content + +This dataset contains the location, address, type, sale price, and sale date of building units sold. A reference on the trickier fields: + +* `BOROUGH`: A digit code for the borough the property is located in; in order these are Manhattan (1), Bronx (2), Brooklyn (3), Queens (4), and Staten Island (5). +* `BLOCK`; `LOT`: The combination of borough, block, and lot forms a unique key for property in New York City. Commonly called a `BBL`. +* `BUILDING CLASS AT PRESENT` and `BUILDING CLASS AT TIME OF SALE`: The type of building at various points in time. See the glossary linked to below. + +For further reference on individual fields see the [Glossary of Terms](http://www1.nyc.gov/assets/finance/downloads/pdf/07pdf/glossary_rsf071607.pdf). For the building classification codes see the [Building Classifications Glossary](http://www1.nyc.gov/assets/finance/jump/hlpbldgcode.html). + +Note that because this is a financial transaction dataset, there are some points that need to be kept in mind: + +* Many sales occur with a nonsensically small dollar amount: $0 most commonly. These sales are actually transfers of deeds between parties: for example, parents transferring ownership to their home to a child after moving out for retirement. +* This dataset uses the financial definition of a building/building unit, for tax purposes. In case a single entity owns the building in question, a sale covers the value of the entire building. In case a building is owned piecemeal by its residents (a condominium), a sale refers to a single apartment (or group of apartments) owned by some individual. + +### Acknowledgements + +This dataset is a concatenated and slightly cleaned-up version of the New York City Department of Finance's [Rolling Sales dataset](http://www1.nyc.gov/site/finance/taxes/property-rolling-sales-data.page). + +### Inspiration + +What can you discover about New York City real estate by looking at a year's worth of raw transaction records? Can you spot trends in the market, or build a model that predicts sale value in the future?",5288,"[{'ref': 'nyc-rolling-sales.csv', 'creationDate': '2017-09-22T19:41:55Z', 'datasetRef': 'new-york-city/nyc-property-sales', 'description': 'Properties sold in New York City over a 12-month period from September 2016 to September 2017.', 'fileType': '.csv', 'name': 'nyc-rolling-sales.csv', 'ownerRef': 'new-york-city', 'totalBytes': 1987717, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'BOROUGH', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'NEIGHBORHOOD', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'BUILDING CLASS CATEGORY', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'TAX CLASS AT PRESENT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'BLOCK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'LOT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'EASE-MENT', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'BUILDING CLASS AT PRESENT', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'ADDRESS', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'APARTMENT NUMBER', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'ZIP CODE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'RESIDENTIAL UNITS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'COMMERCIAL UNITS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'TOTAL UNITS', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'LAND SQUARE FEET', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'GROSS SQUARE FEET', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'YEAR BUILT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'TAX CLASS AT TIME OF SALE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'BUILDING CLASS AT TIME OF SALE', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'SALE PRICE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'SALE DATE', 'type': 'DateTime', 'originalType': '', 'description': None}]}]",2648,False,False,True,18,2017-09-22T19:43:30.99Z,CC0: Public Domain,City of New York,new-york-city,new-york-city/nyc-property-sales,A year's worth of properties sold on the NYC real estate market,"[{'ref': 'cities', 'competitionCount': 0, 'datasetCount': 72, 'description': 'In this tag you will find datasets and kernels about various cities around the world.', 'fullPath': 'geography and places > cities', 'isAutomatic': False, 'name': 'cities', 'scriptCount': 26, 'totalCount': 98}, {'ref': 'real estate', 'competitionCount': 3, 'datasetCount': 33, 'description': ""Datsets and kernels analyzing housing, apartments, and property in general. For those of you house-hunting, you should avoid max(house_price). It's high. Really high."", 'fullPath': 'society and social sciences > society > real estate', 'isAutomatic': False, 'name': 'real estate', 'scriptCount': 14, 'totalCount': 50}]",NYC Property Sales,3,1987717,https://www.kaggle.com/new-york-city/nyc-property-sales,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-09-22T19:43:30.99Z', 'creatorName': 'Aleksey Bilogur', 'creatorRef': 'nyc-property-sales', 'versionNotes': 'Initial release', 'status': 'Ready'}]",34674,124 +72,husky,,1,,11,"[{'ref': 'data.zip', 'creationDate': '2019-06-16T06:01:58.973Z', 'datasetRef': 'huskylovers/finance', 'description': '', 'fileType': '.zip', 'name': 'data.zip', 'ownerRef': 'huskylovers', 'totalBytes': 733757334, 'url': 'https://www.kaggle.com/', 'columns': []}]",233336,False,False,False,5,2019-06-16T06:03:58.25Z,Unknown,husky,huskylovers,huskylovers/finance,,[],finance,0,733757334,https://www.kaggle.com/huskylovers/finance,0.1875,"[{'versionNumber': 1, 'creationDate': '2019-06-16T06:03:58.25Z', 'creatorName': 'husky', 'creatorRef': 'finance', 'versionNotes': 'Initial release', 'status': 'Ready'}]",71,0 +73,Dominik Gawlik,,3,"# Context + +This dataset is a playground for fundamental and technical analysis. It is said that 30% of traffic on stocks is already generated by machines, can trading be fully automated? If not, there is still a lot to learn from historical data. + +# Content + +Dataset consists of following files: + + - **prices.csv**: raw, as-is daily prices. Most of data spans from 2010 to the end 2016, for companies new on stock market date range is shorter. There have been approx. 140 stock splits in that time, this set doesn't account for that. + - **prices-split-adjusted.csv**: same as prices, but there have been added adjustments for splits. + - **securities.csv**: general description of each company with division on sectors + - **fundamentals.csv**: metrics extracted from annual SEC 10K fillings (2012-2016), should be enough to derive most of popular fundamental indicators. + +# Acknowledgements + +Prices were fetched from Yahoo Finance, fundamentals are from Nasdaq Financials, extended by some fields from EDGAR SEC databases. + +# Inspiration + +Here is couple of things one could try out with this data: + + - One day ahead prediction: Rolling Linear Regression, ARIMA, Neural Networks, LSTM + - Momentum/Mean-Reversion Strategies + - Security clustering, portfolio construction/hedging + +Which company has biggest chance of being bankrupt? Which one is undervalued (how prices behaved afterwards), what is Return on Investment? + + +",29493,"[{'ref': 'fundamentals.csv', 'creationDate': '2017-02-20T00:18:51Z', 'datasetRef': 'dgawlik/nyse', 'description': 'SEC 10K annual fillings (2016-2012) ', 'fileType': '.csv', 'name': 'fundamentals.csv', 'ownerRef': 'dgawlik', 'totalBytes': 401773, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Ticker Symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Period Ending', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Accounts Payable', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Accounts Receivable', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': ""Add'l income/expense items"", 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'After Tax ROE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Capital Expenditures', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Capital Surplus', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Cash Ratio', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Cash and Cash Equivalents', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Changes in Inventories', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Common Stocks', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Cost of Revenue', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Current Ratio', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Deferred Asset Charges', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Deferred Liability Charges', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Depreciation', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Earnings Before Interest and Tax', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Earnings Before Tax', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Effect of Exchange Rate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Equity Earnings/Loss Unconsolidated Subsidiary', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Fixed Assets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'Goodwill', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Gross Margin', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Gross Profit', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Income Tax', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Intangible Assets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Interest Expense', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Inventory', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'Investments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 31, 'name': 'Liabilities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 32, 'name': 'Long-Term Debt', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Long-Term Investments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Minority Interest', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Misc. Stocks', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Net Borrowings', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Net Cash Flow', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Net Cash Flow-Operating', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Net Cash Flows-Financing', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'Net Cash Flows-Investing', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Net Income', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 42, 'name': 'Net Income Adjustments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 43, 'name': 'Net Income Applicable to Common Shareholders', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Net Income-Cont. Operations', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 45, 'name': 'Net Receivables', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 46, 'name': 'Non-Recurring Items', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 47, 'name': 'Operating Income', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 48, 'name': 'Operating Margin', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 49, 'name': 'Other Assets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 50, 'name': 'Other Current Assets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 51, 'name': 'Other Current Liabilities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 52, 'name': 'Other Equity', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 53, 'name': 'Other Financing Activities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 54, 'name': 'Other Investing Activities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 55, 'name': 'Other Liabilities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 56, 'name': 'Other Operating Activities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 57, 'name': 'Other Operating Items', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 58, 'name': 'Pre-Tax Margin', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 59, 'name': 'Pre-Tax ROE', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 60, 'name': 'Profit Margin', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 61, 'name': 'Quick Ratio', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 62, 'name': 'Research and Development', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 63, 'name': 'Retained Earnings', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 64, 'name': 'Sale and Purchase of Stock', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 65, 'name': 'Sales, General and Admin.', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 66, 'name': 'Short-Term Debt / Current Portion of Long-Term Debt', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 67, 'name': 'Short-Term Investments', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 68, 'name': 'Total Assets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 69, 'name': 'Total Current Assets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 70, 'name': 'Total Current Liabilities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 71, 'name': 'Total Equity', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 72, 'name': 'Total Liabilities', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 73, 'name': 'Total Liabilities & Equity', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 74, 'name': 'Total Revenue', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 75, 'name': 'Treasury Stock', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 76, 'name': 'For Year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 77, 'name': 'Earnings Per Share', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 78, 'name': 'Estimated Shares Outstanding', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'prices-split-adjusted.csv', 'creationDate': '2017-02-22T10:17:24Z', 'datasetRef': 'dgawlik/nyse', 'description': 'Adjustments for splits', 'fileType': '.csv', 'name': 'prices-split-adjusted.csv', 'ownerRef': 'dgawlik', 'totalBytes': 17479071, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'high', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'prices.csv', 'creationDate': '2017-02-19T12:18:22Z', 'datasetRef': 'dgawlik/nyse', 'description': 'Historical prices', 'fileType': '.csv', 'name': 'prices.csv', 'ownerRef': 'dgawlik', 'totalBytes': 16505283, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'high', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'volume', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'securities.csv', 'creationDate': '2017-02-20T00:19:40Z', 'datasetRef': 'dgawlik/nyse', 'description': 'Company descriptions/sector', 'fileType': '.csv', 'name': 'securities.csv', 'ownerRef': 'dgawlik', 'totalBytes': 61381, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Ticker symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Security', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'SEC filings', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'GICS Sector', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'GICS Sub Industry', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Address of Headquarters', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Date first added', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'CIK', 'type': 'Numeric', 'originalType': '', 'description': 'Central Index Key, Used to identify company, person, or entity.'}]}]",854,False,False,True,271,2017-02-22T10:18:25.517Z,CC0: Public Domain,Dominik Gawlik,dgawlik,dgawlik/nyse,S&P 500 companies historical prices with fundamental data,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",New York Stock Exchange,10,34402357,https://www.kaggle.com/dgawlik/nyse,0.852941155,"[{'versionNumber': 3, 'creationDate': '2017-02-22T10:18:25.517Z', 'creatorName': 'Dominik Gawlik', 'creatorRef': 'nyse', 'versionNotes': 'Bug in adjusted splits', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-02-20T00:36:12.34Z', 'creatorName': 'Dominik Gawlik', 'creatorRef': 'nyse', 'versionNotes': ' - Fundamentals: added EPS and estimated Shares Outstanding\n - Prices: stock splits adjustment', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-02-19T12:21:52.113Z', 'creatorName': 'Dominik Gawlik', 'creatorRef': 'nyse', 'versionNotes': 'Initial release', 'status': 'Ready'}]",150279,645 +74,Selene Reyes,,1,"### Context + +These are real world complaints received about financial products and services. Each complaint has been labeled with a specific product; therefore, this is a supervised text classification problem. With the aim to classify future complaints based on its content, we used different machine learning algorithms can make more accurate predictions (i.e., classify the complaint in one of the product categories) + +### Content + +The dataset contains different information of complaints that customers have made about a multiple products and services in the financial sector, such us Credit Reports, Student Loans, Money Transfer, etc. +The date of each complaint ranges from November 2011 to May 2019. + + +### Acknowledgements + +This work is considered a U.S. Government Work. The dataset is public dataset and it was downloaded from +https://catalog.data.gov/dataset/consumer-complaint-database +on 2019, May 13. + + +### Inspiration + +This is a sort of tutorial for beginner ",134,"[{'ref': 'rows.csv', 'creationDate': '2019-05-13T16:17:54.1756536Z', 'datasetRef': 'selener/consumer-complaint-database', 'description': 'csv file', 'fileType': '.csv', 'name': 'rows.csv', 'ownerRef': 'selener', 'totalBytes': 737001477, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date received', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Product', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Sub-product', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Issue', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Sub-issue', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Consumer complaint narrative', 'type': None, 'originalType': '', 'description': None}, {'order': 6, 'name': 'Company public response', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Company', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'ZIP code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Tags', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Consumer consent provided?', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Submitted via', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Date sent to company', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Company response to consumer', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Timely response?', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Consumer disputed?', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Complaint ID', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",191987,False,False,False,2,2019-05-13T16:17:54.08Z,U.S. Government Works,Selene Reyes,selener,selener/consumer-complaint-database,Consumer Finance Complaints (Bureau of Consumer Financial Protection),"[{'ref': 'classification', 'competitionCount': 2, 'datasetCount': 257, 'description': None, 'fullPath': 'machine learning > classification', 'isAutomatic': False, 'name': 'classification', 'scriptCount': 3332, 'totalCount': 3591}, {'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'text data', 'competitionCount': 25, 'datasetCount': 212, 'description': None, 'fullPath': 'data type > text data', 'isAutomatic': False, 'name': 'text data', 'scriptCount': 334, 'totalCount': 571}]",Consumer Complaint Database,0,179716209,https://www.kaggle.com/selener/consumer-complaint-database,0.8235294,"[{'versionNumber': 1, 'creationDate': '2019-05-13T16:17:54.08Z', 'creatorName': 'Selene Reyes', 'creatorRef': 'consumer-complaint-database', 'versionNotes': 'Initial release', 'status': 'Ready'}]",876,2 +75,Zielak,,16,"### Context +Bitcoin is the longest running and most well known cryptocurrency, first released as open source in 2009 by the anonymous Satoshi Nakamoto. Bitcoin serves as a decentralized medium of digital exchange, with transactions verified and recorded in a public distributed ledger (the blockchain) without the need for a trusted record keeping authority or central intermediary. Transaction blocks contain a SHA-256 cryptographic hash of previous transaction blocks, and are thus ""chained"" together, serving as an immutable record of all transactions that have ever occurred. As with any currency/commodity on the market, bitcoin trading and financial instruments soon followed public adoption of bitcoin and continue to grow. Included here is historical bitcoin market data at 1-min intervals for select bitcoin exchanges where trading takes place. Happy (data) mining! + +### Content + +coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv + +bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv + +CSV files for select bitcoin exchanges for the time period of Jan 2012 to March 2019, with minute to minute updates of OHLC (Open, High, Low, Close), Volume in BTC and indicated currency, and weighted bitcoin price. **Timestamps are in Unix time. Timestamps without any trades or activity have their data fields filled with NaNs.** If a timestamp is missing, or if there are jumps, this may be because the exchange (or its API) was down, the exchange (or its API) did not exist, or some other unforseen technical error in data reporting or gathering. All effort has been made to deduplicate entries and verify the contents are correct and complete to the best of my ability, but obviously trust at your own risk. + + +### Acknowledgements and Inspiration + +Bitcoin charts for the data. The various exchange APIs, for making it difficult or unintuitive enough to get OHLC and volume data at 1-min intervals that I set out on this data scraping project. Satoshi Nakamoto and the novel core concept of the blockchain, as well as its first execution via the bitcoin protocol. I'd also like to thank viewers like you! Can't wait to see what code or insights you all have to share. +",43353,"[{'ref': 'bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv', 'creationDate': '2019-03-15T16:19:02.329Z', 'datasetRef': 'mczielinski/bitcoin-historical-data', 'description': 'One minute OHLC data from Bitstamp, 2012-01-01 to 2019-03-13', 'fileType': '.csv', 'name': 'bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv', 'ownerRef': 'mczielinski', 'totalBytes': 231872383, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Timestamp', 'type': 'Uuid', 'originalType': '', 'description': 'Start time of time window (60s window), in Unix time'}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open price at start time window'}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'High price within time window'}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Low price within time window'}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close price at end of time window'}, {'order': 5, 'name': 'Volume_(BTC)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of BTC transacted in time window'}, {'order': 6, 'name': 'Volume_(Currency)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of Currency transacted in time window'}, {'order': 7, 'name': 'Weighted_Price', 'type': 'Uuid', 'originalType': '', 'description': 'volume-weighted average price (VWAP) '}]}, {'ref': 'coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv', 'creationDate': '2019-03-15T16:22:47.906Z', 'datasetRef': 'mczielinski/bitcoin-historical-data', 'description': 'One minute OHLC data from Coinbase, 2014-12-01 to 2019-01-09', 'fileType': '.csv', 'name': 'coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv', 'ownerRef': 'mczielinski', 'totalBytes': 150309532, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Timestamp', 'type': 'Uuid', 'originalType': '', 'description': 'Start time of time window (60s window), in Unix time'}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open price at start time window'}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'High price within time window'}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Low price within time window'}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close price at end of time window'}, {'order': 5, 'name': 'Volume_(BTC)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of BTC transacted in time window'}, {'order': 6, 'name': 'Volume_(Currency)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of Currency transacted in time window'}, {'order': 7, 'name': 'Weighted_Price', 'type': 'Uuid', 'originalType': '', 'description': 'volume-weighted average price (VWAP) '}]}]",1346,False,False,True,128,2019-03-15T16:22:58.397Z,CC BY-SA 4.0,Zielak,mczielinski,mczielinski/bitcoin-historical-data,"Bitcoin data at 1-min intervals from select exchanges, Jan 2012 to March 2019","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}]",Bitcoin Historical Data,27,123326534,https://www.kaggle.com/mczielinski/bitcoin-historical-data,1.0,"[{'versionNumber': 16, 'creationDate': '2019-03-15T16:22:58.397Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update 3/2019 (coinbase partial)', 'status': 'Ready'}, {'versionNumber': 15, 'creationDate': '2018-11-13T19:30:01.293Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update 11/2018', 'status': 'Ready'}, {'versionNumber': 14, 'creationDate': '2018-06-28T17:48:04.017Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update July 2018', 'status': 'Ready'}, {'versionNumber': 13, 'creationDate': '2018-03-28T18:50:42.693Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'March 2018 Corrected Names', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2018-03-28T18:43:17.747Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update March 2018', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2018-01-10T18:04:22.707Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update Jan 2018', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2017-11-16T22:32:52.747Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'fixed bitstampUSD filename', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2017-10-23T21:03:15.187Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated BitstampUSD', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2017-10-21T20:49:06.697Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated Coinbase USD', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2017-10-21T20:38:41.857Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated coincheckJPY', 'status': 'Ready'}]",326365,1284 +76,Megan Risdal,,2,"### Context + +The NYC Department of Finance collects data on every parking ticket issued in NYC (~10M per year!). This data is made publicly available to aid in ticket resolution and to guide policymakers. + + +### Content + +There are four files, covering Aug 2013-June 2017. The files are roughly organized by fiscal year (July 1 - June 30) with the exception of the initial dataset. The initial dataset also lacks 8 columns that are included in the other three datasets (although be warned that these additional data columns are used sparingly). See the dataset descriptions for exact details. Columns include information about the vehicle ticketed, the ticket issued, location, and time. + + +### Acknowledgements + +Data was produced by NYC Department of Finance. FY2018 data is found [here](https://data.cityofnewyork.us/City-Government/Parking-Violations-Issued-Fiscal-Year-2018/pvqr-7yc4) with updates every third week of the month. + + +### Inspiration + +* When are tickets most likely to be issued? Any seasonality? +* Where are tickets most commonly issued? +* What are the most common years and types of cars to be ticketed?",8080,"[{'ref': 'Parking_Violations_Issued_-_Fiscal_Year_2014__August_2013___June_2014_.csv', 'creationDate': '2017-10-26T18:30:18.979Z', 'datasetRef': 'new-york-city/nyc-parking-tickets', 'description': '* Summons Number: Nu\n* Plate ID:Plain Text\n* Registration State: Plain Text\n* Plate Type: Plain Text\n* Issue Date: Date & Time\n* Violation Code: Number\n* Vehicle Body Type: Plain Text\n* Vehicle Make: Plain Text\n* Issuing Agency: Plain Text\n* Street Code1: Number\n* Street Code2: Number\n* Street Code3: Number\n* Vehicle Expiration Date: Number\n* Violation Location: Plain Text\n* Violation Precinct: Number\n* Issuer Precinct: Number\n* Issuer Code: Number\n* Issuer Command: Plain Text\n* Issuer Squad: Plain Text\n* Violation Time: Plain Text\n* Time First Observed: Plain Text\n* Violation County: Plain Text\n* Violation In Front Of Or Opposite: Plain Text\n* House Number: Plain Text\n* Street Name: Plain Text\n* Intersecting Street: Plain Text\n* Date First Observed: Number\n* Law Section: Number\n* Sub Division: Plain Text\n* Violation Legal Code: Plain Text\n* Days Parking In Effect: Plain Text\n* From Hours In Effect: Plain Text\n* To Hours In Effect: Plain Text\n* Vehicle Color: Plain Text\n* Unregistered Vehicle?: Plain Text\n* Vehicle Year: Number\n* Meter Number: Plain Text\n* Feet From Curb: Number\n* Violation Post Code: Plain Text\n* Violation Description: Plain Text\n* No Standing or Stopping Violation: Plain Text\n* Hydrant Violation: Plain Text\n* Double Parking Violation: Plain Text', 'fileType': '.csv', 'name': 'Parking_Violations_Issued_-_Fiscal_Year_2014__August_2013___June_2014_.csv', 'ownerRef': 'new-york-city', 'totalBytes': 1869025315, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Summons Number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Plate ID', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Registration State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Plate Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Issue Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Violation Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Vehicle Body Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Vehicle Make', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Issuing Agency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Street Code1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Street Code2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Street Code3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Vehicle Expiration Date', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Violation Location', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Violation Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Issuer Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Issuer Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Issuer Command', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Issuer Squad', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Violation Time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Time First Observed', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Violation County', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Violation In Front Of Or Opposite', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'House Number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Street Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Intersecting Street', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Date First Observed', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Law Section', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Sub Division', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Violation Legal Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'Days Parking In Effect ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'From Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'To Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Vehicle Color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Unregistered Vehicle?', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Vehicle Year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Meter Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Feet From Curb', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Violation Post Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Violation Description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'No Standing or Stopping Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Hydrant Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'Double Parking Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'Latitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Longitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'Community Board', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'Community Council ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'Census Tract', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BIN', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BBL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'NTA', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Parking_Violations_Issued_-_Fiscal_Year_2015.csv', 'creationDate': '2017-10-26T18:34:44.154Z', 'datasetRef': 'new-york-city/nyc-parking-tickets', 'description': '* Summons Number: Number\n* Plate ID:Plain Text\n* Registration State: Plain Text\n* Plate Type: Plain Text\n* Issue Date: Date & Time\n* Violation Code: Number\n* Vehicle Body Type: Plain Text\n* Vehicle Make: Plain Text\n* Issuing Agency: Plain Text\n* Street Code1: Number\n* Street Code2: Number\n* Street Code3: Number\n* Vehicle Expiration Date: Number\n* Violation Location: Plain Text\n* Violation Precinct: Number\n* Issuer Precinct: Number\n* Issuer Code: Number\n* Issuer Command: Plain Text\n* Issuer Squad: Plain Text\n* Violation Time: Plain Text\n* Time First Observed: Plain Text\n* Violation County: Plain Text\n* Violation In Front Of Or Opposite: Plain Text\n* House Number: Plain Text\n* Street Name: Plain Text\n* Intersecting Street: Plain Text\n* Date First Observed: Number\n* Law Section: Number\n* Sub Division: Plain Text\n* Violation Legal Code: Plain Text\n* Days Parking In Effect: Plain Text\n* From Hours In Effect: Plain Text\n* To Hours In Effect: Plain Text\n* Vehicle Color: Plain Text\n* Unregistered Vehicle?: Plain Text\n* Vehicle Year: Number\n* Meter Number: Plain Text\n* Feet From Curb: Number\n* Violation Post Code: Plain Text\n* Violation Description: Plain Text\n* No Standing or Stopping Violation: Plain Text\n* Hydrant Violation: Plain Text\n* Double Parking Violation: Plain Text\n* Latitude: Number\n* Longitude: Number\n* Community Board: Number\n* Community Council: Number\n* Census Tract: Number\n* BIN: Number\n* BBL: Number\n* NTA: Plain Text', 'fileType': '.csv', 'name': 'Parking_Violations_Issued_-_Fiscal_Year_2015.csv', 'ownerRef': 'new-york-city', 'totalBytes': 2864071408, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Summons Number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Plate ID', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Registration State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Plate Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Issue Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Violation Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Vehicle Body Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Vehicle Make', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Issuing Agency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Street Code1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Street Code2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Street Code3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Vehicle Expiration Date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Violation Location', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Violation Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Issuer Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Issuer Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Issuer Command', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Issuer Squad', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Violation Time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Time First Observed', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Violation County', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Violation In Front Of Or Opposite', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'House Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Street Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Intersecting Street', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Date First Observed', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Law Section', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Sub Division', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Violation Legal Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'Days Parking In Effect ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'From Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'To Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Vehicle Color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Unregistered Vehicle?', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Vehicle Year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Meter Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Feet From Curb', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Violation Post Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Violation Description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'No Standing or Stopping Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Hydrant Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'Double Parking Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'Latitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Longitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'Community Board', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'Community Council ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'Census Tract', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BIN', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BBL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'NTA', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Parking_Violations_Issued_-_Fiscal_Year_2016.csv', 'creationDate': '2017-10-26T18:32:43.457Z', 'datasetRef': 'new-york-city/nyc-parking-tickets', 'description': '* Summons Number: Number\n* Plate ID:Plain Text\n* Registration State: Plain Text\n* Plate Type: Plain Text\n* Issue Date: Date & Time\n* Violation Code: Number\n* Vehicle Body Type: Plain Text\n* Vehicle Make: Plain Text\n* Issuing Agency: Plain Text\n* Street Code1: Number\n* Street Code2: Number\n* Street Code3: Number\n* Vehicle Expiration Date: Number\n* Violation Location: Plain Text\n* Violation Precinct: Number\n* Issuer Precinct: Number\n* Issuer Code: Number\n* Issuer Command: Plain Text\n* Issuer Squad: Plain Text\n* Violation Time: Plain Text\n* Time First Observed: Plain Text\n* Violation County: Plain Text\n* Violation In Front Of Or Opposite: Plain Text\n* House Number: Plain Text\n* Street Name: Plain Text\n* Intersecting Street: Plain Text\n* Date First Observed: Number\n* Law Section: Number\n* Sub Division: Plain Text\n* Violation Legal Code: Plain Text\n* Days Parking In Effect: Plain Text\n* From Hours In Effect: Plain Text\n* To Hours In Effect: Plain Text\n* Vehicle Color: Plain Text\n* Unregistered Vehicle?: Plain Text\n* Vehicle Year: Number\n* Meter Number: Plain Text\n* Feet From Curb: Number\n* Violation Post Code: Plain Text\n* Violation Description: Plain Text\n* No Standing or Stopping Violation: Plain Text\n* Hydrant Violation: Plain Text\n* Double Parking Violation: Plain Text\n* Latitude: Number\n* Longitude: Number\n* Community Board: Number\n* Community Council: Number\n* Census Tract: Number\n* BIN: Number\n* BBL: Number\n* NTA: Plain Text', 'fileType': '.csv', 'name': 'Parking_Violations_Issued_-_Fiscal_Year_2016.csv', 'ownerRef': 'new-york-city', 'totalBytes': 2151937808, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Summons Number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Plate ID', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Registration State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Plate Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Issue Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Violation Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Vehicle Body Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Vehicle Make', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Issuing Agency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Street Code1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Street Code2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Street Code3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Vehicle Expiration Date', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Violation Location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Violation Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Issuer Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Issuer Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Issuer Command', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Issuer Squad', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Violation Time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Time First Observed', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Violation County', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Violation In Front Of Or Opposite', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'House Number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Street Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Intersecting Street', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Date First Observed', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Law Section', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Sub Division', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Violation Legal Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'Days Parking In Effect ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'From Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'To Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Vehicle Color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Unregistered Vehicle?', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Vehicle Year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Meter Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Feet From Curb', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Violation Post Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Violation Description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'No Standing or Stopping Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Hydrant Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'Double Parking Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 43, 'name': 'Latitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 44, 'name': 'Longitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 45, 'name': 'Community Board', 'type': 'String', 'originalType': '', 'description': None}, {'order': 46, 'name': 'Community Council ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 47, 'name': 'Census Tract', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'BIN', 'type': 'String', 'originalType': '', 'description': None}, {'order': 49, 'name': 'BBL', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'NTA', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Parking_Violations_Issued_-_Fiscal_Year_2017.csv', 'creationDate': '2017-10-26T18:32:26.936Z', 'datasetRef': 'new-york-city/nyc-parking-tickets', 'description': '* Summons Number: Number\n* Plate ID:Plain Text\n* Registration State: Plain Text\n* Plate Type: Plain Text\n* Issue Date: Date & Time\n* Violation Code: Number\n* Vehicle Body Type: Plain Text\n* Vehicle Make: Plain Text\n* Issuing Agency: Plain Text\n* Street Code1: Number\n* Street Code2: Number\n* Street Code3: Number\n* Vehicle Expiration Date: Number\n* Violation Location: Plain Text\n* Violation Precinct: Number\n* Issuer Precinct: Number\n* Issuer Code: Number\n* Issuer Command: Plain Text\n* Issuer Squad: Plain Text\n* Violation Time: Plain Text\n* Time First Observed: Plain Text\n* Violation County: Plain Text\n* Violation In Front Of Or Opposite: Plain Text\n* House Number: Plain Text\n* Street Name: Plain Text\n* Intersecting Street: Plain Text\n* Date First Observed: Number\n* Law Section: Number\n* Sub Division: Plain Text\n* Violation Legal Code: Plain Text\n* Days Parking In Effect: Plain Text\n* From Hours In Effect: Plain Text\n* To Hours In Effect: Plain Text\n* Vehicle Color: Plain Text\n* Unregistered Vehicle?: Plain Text\n* Vehicle Year: Number\n* Meter Number: Plain Text\n* Feet From Curb: Number\n* Violation Post Code: Plain Text\n* Violation Description: Plain Text\n* No Standing or Stopping Violation: Plain Text\n* Hydrant Violation: Plain Text\n* Double Parking Violation: Plain Text', 'fileType': '.csv', 'name': 'Parking_Violations_Issued_-_Fiscal_Year_2017.csv', 'ownerRef': 'new-york-city', 'totalBytes': 2086913576, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Summons Number', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Plate ID', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Registration State', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Plate Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Issue Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Violation Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Vehicle Body Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Vehicle Make', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Issuing Agency', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Street Code1', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Street Code2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Street Code3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'Vehicle Expiration Date', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'Violation Location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'Violation Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'Issuer Precinct', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'Issuer Code', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'Issuer Command', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'Issuer Squad', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'Violation Time', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'Time First Observed', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'Violation County', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'Violation In Front Of Or Opposite', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'House Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'Street Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'Intersecting Street', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'Date First Observed', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'Law Section', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'Sub Division', 'type': 'String', 'originalType': '', 'description': None}, {'order': 29, 'name': 'Violation Legal Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'Days Parking In Effect ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'From Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'To Hours In Effect', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'Vehicle Color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'Unregistered Vehicle?', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'Vehicle Year', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 36, 'name': 'Meter Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'Feet From Curb', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'Violation Post Code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 39, 'name': 'Violation Description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 40, 'name': 'No Standing or Stopping Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 41, 'name': 'Hydrant Violation', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'Double Parking Violation', 'type': 'String', 'originalType': '', 'description': None}]}]",3498,False,False,True,6,2017-10-26T18:47:45.14Z,CC0: Public Domain,City of New York,new-york-city,new-york-city/nyc-parking-tickets,"42.3M Rows of Parking Ticket Data, Aug 2013-June 2017","[{'ref': 'government', 'competitionCount': 0, 'datasetCount': 103, 'description': 'Government related datasets and kernels include various datasets from government agencies like the Food and Drug Administration, police agencies, and government press releases.', 'fullPath': 'society and social sciences > society > government', 'isAutomatic': False, 'name': 'government', 'scriptCount': 4, 'totalCount': 107}, {'ref': 'cities', 'competitionCount': 0, 'datasetCount': 72, 'description': 'In this tag you will find datasets and kernels about various cities around the world.', 'fullPath': 'geography and places > cities', 'isAutomatic': False, 'name': 'cities', 'scriptCount': 26, 'totalCount': 98}, {'ref': 'law', 'competitionCount': 0, 'datasetCount': 63, 'description': 'Law is a system of rules that are created and enforced through social or governmental institutions to regulate behavior.', 'fullPath': 'society and social sciences > society > law', 'isAutomatic': False, 'name': 'law', 'scriptCount': 9, 'totalCount': 72}, {'ref': 'automobiles', 'competitionCount': 3, 'datasetCount': 53, 'description': 'The automobile tag is everything about cars. Analyze insurance rates or how far you can go on one gallon of petrol.', 'fullPath': 'technology and applied sciences > transport > automobiles', 'isAutomatic': False, 'name': 'automobiles', 'scriptCount': 13, 'totalCount': 69}]",NYC Parking Tickets,0,2171622562,https://www.kaggle.com/new-york-city/nyc-parking-tickets,0.8235294,"[{'versionNumber': 2, 'creationDate': '2017-10-26T18:47:45.14Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'nyc-parking-tickets', 'versionNotes': 'Initial upload', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-10-26T16:27:42.45Z', 'creatorName': 'Jacob Boysen', 'creatorRef': 'nyc-parking-tickets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",33147,97 +77,Timo Bozsolik,,3,"Context +--------- + +It is important that credit card companies are able to recognize fraudulent credit card transactions so that customers are not charged for items that they did not purchase. + +Content +--------- + +The datasets contains transactions made by credit cards in September 2013 by european cardholders. +This dataset presents transactions that occurred in two days, where we have 492 frauds out of 284,807 transactions. The dataset is highly unbalanced, the positive class (frauds) account for 0.172% of all transactions. + +It contains only numerical input variables which are the result of a PCA transformation. Unfortunately, due to confidentiality issues, we cannot provide the original features and more background information about the data. Features V1, V2, ... V28 are the principal components obtained with PCA, the only features which have not been transformed with PCA are 'Time' and 'Amount'. Feature 'Time' contains the seconds elapsed between each transaction and the first transaction in the dataset. The feature 'Amount' is the transaction Amount, this feature can be used for example-dependant cost-senstive learning. Feature 'Class' is the response variable and it takes value 1 in case of fraud and 0 otherwise. + +Inspiration +--------- + +Identify fraudulent credit card transactions. + +Given the class imbalance ratio, we recommend measuring the accuracy using the Area Under the Precision-Recall Curve (AUPRC). Confusion matrix accuracy is not meaningful for unbalanced classification. + +Acknowledgements +--------- + +The dataset has been collected and analysed during a research collaboration of Worldline and the Machine Learning Group (http://mlg.ulb.ac.be) of ULB (Université Libre de Bruxelles) on big data mining and fraud detection. +More details on current and past projects on related topics are available on [https://www.researchgate.net/project/Fraud-detection-5][1] and the page of the [DefeatFraud][2] project + +Please cite the following works: + +Andrea Dal Pozzolo, Olivier Caelen, Reid A. Johnson and Gianluca Bontempi. [Calibrating Probability with Undersampling for Unbalanced Classification.][3] In Symposium on Computational Intelligence and Data Mining (CIDM), IEEE, 2015 + +Dal Pozzolo, Andrea; Caelen, Olivier; Le Borgne, Yann-Ael; Waterschoot, Serge; Bontempi, Gianluca. [Learned lessons in credit card fraud detection from a practitioner perspective][4], Expert systems with applications,41,10,4915-4928,2014, Pergamon + +Dal Pozzolo, Andrea; Boracchi, Giacomo; Caelen, Olivier; Alippi, Cesare; Bontempi, Gianluca. [Credit card fraud detection: a realistic modeling and a novel learning strategy,][5] IEEE transactions on neural networks and learning systems,29,8,3784-3797,2018,IEEE + +Dal Pozzolo, Andrea [Adaptive Machine learning for credit card fraud detection][6] ULB MLG PhD thesis (supervised by G. Bontempi) + +Carcillo, Fabrizio; Dal Pozzolo, Andrea; Le Borgne, Yann-Aël; Caelen, Olivier; Mazzer, Yannis; Bontempi, Gianluca. [Scarff: a scalable framework for streaming credit card fraud detection with Spark][7], Information fusion,41, 182-194,2018,Elsevier + +Carcillo, Fabrizio; Le Borgne, Yann-Aël; Caelen, Olivier; Bontempi, Gianluca. [Streaming active learning strategies for real-life credit card fraud detection: assessment and visualization,][8] International Journal of Data Science and Analytics, 5,4,285-300,2018,Springer International Publishing + +Bertrand Lebichot, Yann-Aël Le Borgne, Liyun He, Frederic Oblé, Gianluca Bontempi [Deep-Learning Domain Adaptation Techniques for Credit Cards Fraud Detection](https://www.researchgate.net/publication/332180999_Deep-Learning_Domain_Adaptation_Techniques_for_Credit_Cards_Fraud_Detection), INNSBDDL 2019: Recent Advances in Big Data and Deep Learning, pp 78-88, 2019 + +Fabrizio Carcillo, Yann-Aël Le Borgne, Olivier Caelen, Frederic Oblé, Gianluca Bontempi [Combining Unsupervised and Supervised Learning in Credit Card Fraud Detection ](https://www.researchgate.net/publication/333143698_Combining_Unsupervised_and_Supervised_Learning_in_Credit_Card_Fraud_Detection) Information Sciences, 2019 + + + + [1]: https://www.researchgate.net/project/Fraud-detection-5 + [2]: https://mlg.ulb.ac.be/wordpress/portfolio_page/defeatfraud-assessment-and-validation-of-deep-feature-engineering-and-learning-solutions-for-fraud-detection/ + [3]: https://www.researchgate.net/publication/283349138_Calibrating_Probability_with_Undersampling_for_Unbalanced_Classification + [4]: https://www.researchgate.net/publication/260837261_Learned_lessons_in_credit_card_fraud_detection_from_a_practitioner_perspective + [5]: https://www.researchgate.net/publication/319867396_Credit_Card_Fraud_Detection_A_Realistic_Modeling_and_a_Novel_Learning_Strategy + [6]: http://di.ulb.ac.be/map/adalpozz/pdf/Dalpozzolo2015PhD.pdf + [7]: https://www.researchgate.net/publication/319616537_SCARFF_a_Scalable_Framework_for_Streaming_Credit_Card_Fraud_Detection_with_Spark + +[8]: https://www.researchgate.net/publication/332180999_Deep-Learning_Domain_Adaptation_Techniques_for_Credit_Cards_Fraud_Detection",136568,"[{'ref': 'creditcard.csv', 'creationDate': '2018-03-23T01:16:02.343Z', 'datasetRef': 'mlg-ulb/creditcardfraud', 'description': 'BigQuery Table bigquery-public-data.fraud_detection.comments', 'fileType': '.csv', 'name': 'creditcard.csv', 'ownerRef': 'mlg-ulb', 'totalBytes': 150828752, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Time', 'type': 'Numeric', 'originalType': '', 'description': 'Number of seconds elapsed between this transaction and the first transaction in the dataset'}, {'order': 1, 'name': 'V1', 'type': 'Numeric', 'originalType': '', 'description': 'may be result of a PCA Dimensionality reduction to protect user identities and sensitive features(v1-v28)'}, {'order': 2, 'name': 'V2', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'V3', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'V4', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'V5', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'V6', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'V7', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'V8', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'V9', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'V10', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'V11', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'V12', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'V13', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'V14', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'V15', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'V16', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'V17', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'V18', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'V19', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'V20', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'V21', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'V22', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'V23', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 24, 'name': 'V24', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 25, 'name': 'V25', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 26, 'name': 'V26', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 27, 'name': 'V27', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 28, 'name': 'V28', 'type': 'Numeric', 'originalType': '', 'description': 'abc'}, {'order': 29, 'name': 'Amount', 'type': 'Numeric', 'originalType': '', 'description': 'Transaction amount'}, {'order': 30, 'name': 'Class', 'type': 'Boolean', 'originalType': '', 'description': '1 for fraudulent transactions, 0 otherwise'}]}]",310,False,False,True,2135,2018-03-23T01:17:27.913Z,"Database: Open Database, Contents: Database Contents",Machine Learning Group - ULB,mlg-ulb,mlg-ulb/creditcardfraud,Anonymized credit card transactions labeled as fraudulent or genuine,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'machine learning', 'competitionCount': 0, 'datasetCount': 146, 'description': None, 'fullPath': 'machine learning', 'isAutomatic': False, 'name': 'machine learning', 'scriptCount': 344, 'totalCount': 490}, {'ref': 'crime', 'competitionCount': 1, 'datasetCount': 186, 'description': 'A crime is an unlawful act punishable by a state or other authority. Explore datasets, kernels, and competitions related to white collar crime, global terrorism, and more in this tag.', 'fullPath': 'society and social sciences > society > crime', 'isAutomatic': False, 'name': 'crime', 'scriptCount': 199, 'totalCount': 386}]",Credit Card Fraud Detection,40,69155632,https://www.kaggle.com/mlg-ulb/creditcardfraud,0.852941155,"[{'versionNumber': 3, 'creationDate': '2018-03-23T01:17:27.913Z', 'creatorName': 'Timo Bozsolik', 'creatorRef': 'creditcardfraud', 'versionNotes': 'Fixed preview', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2016-11-05T09:08:46.503Z', 'creatorName': 'Andrea', 'creatorRef': 'creditcardfraud', 'versionNotes': 'CSV format', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2016-11-03T13:21:36.757Z', 'creatorName': 'Andrea', 'creatorRef': 'creditcardfraud', 'versionNotes': 'Rdata format', 'status': 'Ready'}]",3194465,3430 +78,Aaron7sun,,1,"Actually, I prepare this dataset for students on my Deep Learning and NLP course. + +But I am also very happy to see kagglers play around with it. + +Have fun! + +**Description:** + +There are two channels of data provided in this dataset: + +1. News data: I crawled historical news headlines from [Reddit WorldNews Channel][1] (/r/worldnews). They are ranked by reddit users' votes, and only the top 25 headlines are considered for a single date. +(Range: 2008-06-08 to 2016-07-01) + +2. Stock data: Dow Jones Industrial Average (DJIA) is used to ""prove the concept"". +(Range: 2008-08-08 to 2016-07-01) + +I provided three data files in *.csv* format: + +1. **RedditNews.csv**: two columns +The first column is the ""date"", and second column is the ""news headlines"". +All news are ranked from top to bottom based on how *hot* they are. +Hence, there are 25 lines for each date. + +2. **DJIA_table.csv**: +Downloaded directly from [Yahoo Finance][2]: check out the web page for more info. + +3. **Combined_News_DJIA.csv**: +To make things easier for my students, I provide this combined dataset with 27 columns. +The first column is ""Date"", the second is ""Label"", and the following ones are news headlines ranging from ""Top1"" to ""Top25"". + +**=========================================** + +*To my students:* + +*I made this a binary classification task. Hence, there are only two labels:* + +*""1"" when DJIA Adj Close value rose or stayed as the same;* + +*""0"" when DJIA Adj Close value decreased.* + +*For task evaluation, please use data from 2008-08-08 to 2014-12-31 as Training Set, and Test Set is then the following two years data (from 2015-01-02 to 2016-07-01). This is roughly a 80%/20% split.* + +*And, of course, use AUC as the evaluation metric.* + +**=========================================** + +**+++++++++++++++++++++++++++++++++++++++++** + +*To all kagglers:* + +*Please upvote this dataset if you like this idea for market prediction.* + +*If you think you coded an amazing trading algorithm,* + +*friendly advice* + +*do play safe with your own money :)* + +**+++++++++++++++++++++++++++++++++++++++++** + +Feel free to contact me if there is any question~ + +And, remember me when you become a millionaire :P + +**Note: If you'd like to cite this dataset in your publications, please use:** + +` +Sun, J. (2016, August). Daily News for Stock Market Prediction, Version 1. Retrieved [Date You Retrieved This Data] from https://www.kaggle.com/aaron7sun/stocknews. +` + + [1]: https://www.reddit.com/r/worldnews?hl + [2]: https://finance.yahoo.com/quote/%5EDJI/history?p=%5EDJI",23371,"[{'ref': 'Combined_News_DJIA.csv', 'creationDate': '2016-08-25T16:51:29Z', 'datasetRef': 'aaron7sun/stocknews', 'description': 'Combined_News_DJIA ', 'fileType': '.csv', 'name': 'Combined_News_DJIA.csv', 'ownerRef': 'aaron7sun', 'totalBytes': 2514147, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'DJIA_table.csv', 'creationDate': '2016-08-25T16:51:20Z', 'datasetRef': 'aaron7sun/stocknews', 'description': 'DJIA_table', 'fileType': '.csv', 'name': 'DJIA_table.csv', 'ownerRef': 'aaron7sun', 'totalBytes': 167083, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': 'In YYYY-MM-DD format'}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': 'Opening weighted average stock value in USD'}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': 'All day high in USD'}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': 'All day low in USD'}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': 'Closing weighted average stock value in USD'}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': 'Number of trades'}, {'order': 6, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': 'Adjusted closing prices - adjusted for both dividends and splits - in USD'}]}, {'ref': 'RedditNews.csv', 'creationDate': '2016-08-25T16:51:31Z', 'datasetRef': 'aaron7sun/stocknews', 'description': 'Combined_News_DJIA ', 'fileType': '.csv', 'name': 'RedditNews.csv', 'ownerRef': 'aaron7sun', 'totalBytes': 3822469, 'url': 'https://www.kaggle.com/', 'columns': []}]",129,False,False,True,306,2016-08-25T16:56:51.32Z,CC BY-NC-SA 4.0,Aaron7sun,aaron7sun,aaron7sun/stocknews,Using 8 years daily news headlines to predict stock market movement,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Daily News for Stock Market Prediction,12,6384909,https://www.kaggle.com/aaron7sun/stocknews,0.882352948,"[{'versionNumber': 1, 'creationDate': '2016-08-25T16:56:51.32Z', 'creatorName': 'Aaron7sun', 'creatorRef': 'stocknews', 'versionNotes': 'Initial release', 'status': 'Ready'}]",173931,844 +79,Kaggle Team,,39,"### Content + +More details about each file are in the individual file descriptions. + +### Context + +This is a dataset hosted by the State of New York. The state has an open data platform found [here](https://data.ny.gov/) and they update their information according the amount of data that is brought in. Explore New York State using Kaggle and all of the data sources available through the State of New York [organization page](https://www.kaggle.com/new-york-state)! + +* Update Frequency: This dataset is updated monthly. + +### Acknowledgements + +This dataset is maintained using Socrata's API and Kaggle's API. [Socrata](https://socrata.com/) has assisted countless organizations with hosting their open data and has been an integral part of the process of bringing more data to the public. + +This dataset is distributed under the following licenses: Public Domain",26,"[{'ref': 'campaign-finance-filers-on-record-with-the-new-york-state-board-of-elections-beginning-july-1999.csv', 'creationDate': '2019-07-03T09:42:04.773Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': '### Content \n\nThis dataset contains information on the candidates and/or committees who file campaign finance disclosure information with the NYS Board of Elections. This data covers the period beginning July 1999. For updated information, please visit http://www.elections.ny.gov \n\n', 'fileType': '.csv', 'name': 'campaign-finance-filers-on-record-with-the-new-york-state-board-of-elections-beginning-july-1999.csv', 'ownerRef': 'new-york-state', 'totalBytes': 4439946, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'Candidate or Committee Name (Filer Name)', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Filer Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'Status', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Committee Type', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 5, 'name': 'Office', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 6, 'name': 'District', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 7, 'name': 'Treasurer First Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 8, 'name': 'Treasurer Last Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'Address', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Zip', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'campaign-finance-filings-submitted-to-the-new-york-state-board-of-elections-beginning-1999.csv', 'creationDate': '2019-07-03T09:42:54.219Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': '### Content \n\nThis dataset contains all financial disclosure reports filed with the New York State Board of Elections beginning July of 1999. For updated information, please visit http://www.elections.ny.gov \n\n', 'fileType': '.csv', 'name': 'campaign-finance-filings-submitted-to-the-new-york-state-board-of-elections-beginning-1999.csv', 'ownerRef': 'new-york-state', 'totalBytes': 2537297858, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Filer Id', 'type': 'String', 'originalType': 'string', 'description': 'Unique Filer Id. See Campaign Finance Filers on Record with NYS BOE Dataset for more info on Filers.'}, {'order': 1, 'name': 'Candidate or Committee Name (Filer Name)', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Report Id', 'type': 'String', 'originalType': 'string', 'description': '(A)32_Day_Pre_Primary (B)11_Day_Pre_Primary (C)10_Day_Post_Primary (D)32_Day_Pre_General (E)11_Day_Pre_General (F)27_Day_Post_General (H)11_Day_Pre_Special (I)27_Day_Post_Special (J)Periodic_Jan.15,19__ (K)Periodic_July15,19__ (L)24_hour_Notice'}, {'order': 3, 'name': 'Transaction Code', 'type': 'String', 'originalType': 'string', 'description': '(A)MonetaryContribs/Indiv&Partnerships\n(B)MonetaryContribs/Corporate\n(C)MonetaryContribs/AllOther\n(D)InKindContribs\n(E)OtherReceipts\n(F)Expenditure/Payments\n(G)TransfersIn\n(H)TransfersOut\n(I)LoansReceived\n(J)LoanRepayments\nFOR FULL LIST SEE DATADICTIONARY'}, {'order': 4, 'name': 'Election Year', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 5, 'name': 'Transaction Id', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 6, 'name': 'Date of Schedule Transaction', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 7, 'name': 'Original Date of Liability, Payment Date or Date Received', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 8, 'name': 'Contributor Code', 'type': 'String', 'originalType': 'string', 'description': '(CAN)Candidate/CandidateSpouse\n(FAM)Family Members\n(CORP)Corporate\n(IND)Individual\n(PART)Partnership\n(COM)Committee'}, {'order': 9, 'name': 'Contribution Type Code', 'type': 'String', 'originalType': 'string', 'description': '(1)Services/FacilitiesProvided\n(2)PropertyGiven (3)CampaignExpensesPaid'}, {'order': 10, 'name': 'Corporation Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Contributor First Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'Contributor Middle Initial', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Contributor Last Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Contributor Address', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Contributor City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Contributor State', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Contributor Zip', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Check Number', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'Check Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}, {'order': 20, 'name': 'Amount on Schedule(s)', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 21, 'name': 'Amount Forgiven, Outstanding, or Attributed', 'type': 'Numeric', 'originalType': 'number', 'description': None}, {'order': 22, 'name': 'Description', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 23, 'name': 'Other Receipt Code', 'type': 'String', 'originalType': 'string', 'description': '(INT/DIV)Interest/Dividend (PROC)Proceeds Sale/Lease (OTH)Other'}, {'order': 24, 'name': 'Expenditure Purpose Code', 'type': 'String', 'originalType': 'string', 'description': '(CMAIL)CampaignMailings\n(CONSL)CampaignConsultant\n(POSTA)Postage\n(CONSV)ConstituentServices\n(CNTRB)PoliticalContributions\n(PROFL)ProfessionalServices\n(FUNDR)Fundraising\n(RADIO)RadioAds\n(LITER)CampaignLiterature\nFOR FULL LIST SEE DATA DICTIONARY'}, {'order': 25, 'name': 'Expenditure Purpose Code For Schedule Q only', 'type': 'String', 'originalType': 'string', 'description': '(RENTO)OfficeRent\n(UTILS)Utilities\n(PAYRL)Payroll\n(POSTA)Postage\n(PROFL)ProfessionalServices\n(OFEXP)OfficeExpenses\n(MAILS)Mailings\n(OTHER)Other:ProvideExplanation\n(VOTER)VoterRegistrationMaterialsorServices'}, {'order': 26, 'name': 'Explanation', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 27, 'name': 'Transfer Type', 'type': 'String', 'originalType': 'string', 'description': '(Type1) Party/Constituted Committees\n (Type2) Committee Solely Supporting Same Candidate'}, {'order': 28, 'name': 'Bank Loan', 'type': 'String', 'originalType': 'string', 'description': '(B) If Bank Loan\n(O) If Other'}, {'order': 29, 'name': 'Record Created by User ID', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 30, 'name': 'Record Create Date', 'type': 'DateTime', 'originalType': 'datetime', 'description': None}]}, {'ref': 'CODES.TXT', 'creationDate': '2019-07-03T09:42:03.532Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'This file is an attachment', 'fileType': '.TXT', 'name': 'CODES.TXT', 'ownerRef': 'new-york-state', 'totalBytes': 3214, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'NYSBOE_CampaignFinanceFilings_DataDictionary.TXT', 'creationDate': '2019-07-03T09:42:01.39Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'This file is an attachment', 'fileType': '.TXT', 'name': 'NYSBOE_CampaignFinanceFilings_DataDictionary.TXT', 'ownerRef': 'new-york-state', 'totalBytes': 14186, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'NYSBOE_CampaignFinanceFilings_DataLayout.TXT', 'creationDate': '2019-07-03T09:42:04.074Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'This file is an attachment', 'fileType': '.TXT', 'name': 'NYSBOE_CampaignFinanceFilings_DataLayout.TXT', 'ownerRef': 'new-york-state', 'totalBytes': 2732, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'NYSBOE_CampaignFinanceFilings_Overview.pdf', 'creationDate': '2019-07-03T09:42:02.776Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'This file is an attachment', 'fileType': '.pdf', 'name': 'NYSBOE_CampaignFinanceFilings_Overview.pdf', 'ownerRef': 'new-york-state', 'totalBytes': 282049, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'NYSBOE_RegisteredFilers_Overview.pdf', 'creationDate': '2019-07-03T09:42:05.421Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'This file is an attachment', 'fileType': '.pdf', 'name': 'NYSBOE_RegisteredFilers_Overview.pdf', 'ownerRef': 'new-york-state', 'totalBytes': 299498, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-filers-on-record-with-the-new-york-state-board-of-elections-beginning-july-1999.json', 'creationDate': '2019-07-03T09:42:02.003Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-filers-on-record-with-the-new-york-state-board-of-elections-beginning-july-1999.json', 'ownerRef': 'new-york-state', 'totalBytes': 13243, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'socrata_metadata_campaign-finance-filings-submitted-to-the-new-york-state-board-of-elections-beginning-1999.json', 'creationDate': '2019-07-03T09:42:06.008Z', 'datasetRef': 'new-york-state/nys-campaign-finance-filers-and-filings', 'description': 'Socrata metadata for file in title', 'fileType': '.json', 'name': 'socrata_metadata_campaign-finance-filings-submitted-to-the-new-york-state-board-of-elections-beginning-1999.json', 'ownerRef': 'new-york-state', 'totalBytes': 35542, 'url': 'https://www.kaggle.com/', 'columns': []}]",34399,False,False,False,0,2019-07-03T09:42:54.753Z,CC0: Public Domain,State of New York,new-york-state,new-york-state/nys-campaign-finance-filers-and-filings,From New York State Open Data,"[{'ref': 'socrata', 'competitionCount': 0, 'datasetCount': 1110, 'description': None, 'fullPath': 'initiatives > socrata', 'isAutomatic': False, 'name': 'socrata', 'scriptCount': 3, 'totalCount': 1113}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",NYS Campaign Finance Filers and Filings,0,361934238,https://www.kaggle.com/new-york-state/nys-campaign-finance-filers-and-filings,0.7941176,"[{'versionNumber': 39, 'creationDate': '2019-07-03T09:42:54.753Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20190703', 'status': 'Ready'}, {'versionNumber': 38, 'creationDate': '2019-01-02T14:51:04.217Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20190102', 'status': 'Ready'}, {'versionNumber': 37, 'creationDate': '2018-12-02T14:23:22.783Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20181202', 'status': 'Ready'}, {'versionNumber': 36, 'creationDate': '2018-11-02T14:24:29.83Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20181102', 'status': 'Ready'}, {'versionNumber': 35, 'creationDate': '2018-10-02T14:23:18.803Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20181002', 'status': 'Ready'}, {'versionNumber': 34, 'creationDate': '2018-09-02T14:20:57.55Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20180902', 'status': 'Ready'}, {'versionNumber': 33, 'creationDate': '2018-08-27T04:10:44.18Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20180827', 'status': 'Ready'}, {'versionNumber': 32, 'creationDate': '2018-07-10T23:34:59.017Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20180710', 'status': 'Ready'}, {'versionNumber': 31, 'creationDate': '2018-07-09T18:10:06.57Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20180709', 'status': 'Ready'}, {'versionNumber': 30, 'creationDate': '2018-07-09T17:31:09.34Z', 'creatorName': 'Noah Daniels', 'creatorRef': 'nys-campaign-finance-filers-and-filings', 'versionNotes': 'Automated data update 20180709', 'status': 'Ready'}]",629,1 +80,Zielak,,16,"### Context +Bitcoin is the longest running and most well known cryptocurrency, first released as open source in 2009 by the anonymous Satoshi Nakamoto. Bitcoin serves as a decentralized medium of digital exchange, with transactions verified and recorded in a public distributed ledger (the blockchain) without the need for a trusted record keeping authority or central intermediary. Transaction blocks contain a SHA-256 cryptographic hash of previous transaction blocks, and are thus ""chained"" together, serving as an immutable record of all transactions that have ever occurred. As with any currency/commodity on the market, bitcoin trading and financial instruments soon followed public adoption of bitcoin and continue to grow. Included here is historical bitcoin market data at 1-min intervals for select bitcoin exchanges where trading takes place. Happy (data) mining! + +### Content + +coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv + +bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv + +CSV files for select bitcoin exchanges for the time period of Jan 2012 to March 2019, with minute to minute updates of OHLC (Open, High, Low, Close), Volume in BTC and indicated currency, and weighted bitcoin price. **Timestamps are in Unix time. Timestamps without any trades or activity have their data fields filled with NaNs.** If a timestamp is missing, or if there are jumps, this may be because the exchange (or its API) was down, the exchange (or its API) did not exist, or some other unforseen technical error in data reporting or gathering. All effort has been made to deduplicate entries and verify the contents are correct and complete to the best of my ability, but obviously trust at your own risk. + + +### Acknowledgements and Inspiration + +Bitcoin charts for the data. The various exchange APIs, for making it difficult or unintuitive enough to get OHLC and volume data at 1-min intervals that I set out on this data scraping project. Satoshi Nakamoto and the novel core concept of the blockchain, as well as its first execution via the bitcoin protocol. I'd also like to thank viewers like you! Can't wait to see what code or insights you all have to share. +",43353,"[{'ref': 'bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv', 'creationDate': '2019-03-15T16:19:02.329Z', 'datasetRef': 'mczielinski/bitcoin-historical-data', 'description': 'One minute OHLC data from Bitstamp, 2012-01-01 to 2019-03-13', 'fileType': '.csv', 'name': 'bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv', 'ownerRef': 'mczielinski', 'totalBytes': 231872383, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Timestamp', 'type': 'Uuid', 'originalType': '', 'description': 'Start time of time window (60s window), in Unix time'}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open price at start time window'}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'High price within time window'}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Low price within time window'}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close price at end of time window'}, {'order': 5, 'name': 'Volume_(BTC)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of BTC transacted in time window'}, {'order': 6, 'name': 'Volume_(Currency)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of Currency transacted in time window'}, {'order': 7, 'name': 'Weighted_Price', 'type': 'Uuid', 'originalType': '', 'description': 'volume-weighted average price (VWAP) '}]}, {'ref': 'coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv', 'creationDate': '2019-03-15T16:22:47.906Z', 'datasetRef': 'mczielinski/bitcoin-historical-data', 'description': 'One minute OHLC data from Coinbase, 2014-12-01 to 2019-01-09', 'fileType': '.csv', 'name': 'coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv', 'ownerRef': 'mczielinski', 'totalBytes': 150309532, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Timestamp', 'type': 'Uuid', 'originalType': '', 'description': 'Start time of time window (60s window), in Unix time'}, {'order': 1, 'name': 'Open', 'type': 'Uuid', 'originalType': '', 'description': 'Open price at start time window'}, {'order': 2, 'name': 'High', 'type': 'Uuid', 'originalType': '', 'description': 'High price within time window'}, {'order': 3, 'name': 'Low', 'type': 'Uuid', 'originalType': '', 'description': 'Low price within time window'}, {'order': 4, 'name': 'Close', 'type': 'Uuid', 'originalType': '', 'description': 'Close price at end of time window'}, {'order': 5, 'name': 'Volume_(BTC)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of BTC transacted in time window'}, {'order': 6, 'name': 'Volume_(Currency)', 'type': 'Uuid', 'originalType': '', 'description': 'Amount of Currency transacted in time window'}, {'order': 7, 'name': 'Weighted_Price', 'type': 'Uuid', 'originalType': '', 'description': 'volume-weighted average price (VWAP) '}]}]",1346,False,False,True,128,2019-03-15T16:22:58.397Z,CC BY-SA 4.0,Zielak,mczielinski,mczielinski/bitcoin-historical-data,"Bitcoin data at 1-min intervals from select exchanges, Jan 2012 to March 2019","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}]",Bitcoin Historical Data,27,123326534,https://www.kaggle.com/mczielinski/bitcoin-historical-data,1.0,"[{'versionNumber': 16, 'creationDate': '2019-03-15T16:22:58.397Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update 3/2019 (coinbase partial)', 'status': 'Ready'}, {'versionNumber': 15, 'creationDate': '2018-11-13T19:30:01.293Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update 11/2018', 'status': 'Ready'}, {'versionNumber': 14, 'creationDate': '2018-06-28T17:48:04.017Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update July 2018', 'status': 'Ready'}, {'versionNumber': 13, 'creationDate': '2018-03-28T18:50:42.693Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'March 2018 Corrected Names', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2018-03-28T18:43:17.747Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update March 2018', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2018-01-10T18:04:22.707Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Update Jan 2018', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2017-11-16T22:32:52.747Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'fixed bitstampUSD filename', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2017-10-23T21:03:15.187Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated BitstampUSD', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2017-10-21T20:49:06.697Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated Coinbase USD', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2017-10-21T20:38:41.857Z', 'creatorName': 'Zielak', 'creatorRef': 'bitcoin-historical-data', 'versionNotes': 'Updated coincheckJPY', 'status': 'Ready'}]",326365,1284 +81,Gorgia,,2,10 different exchanges daily data from 01/01/2017 to 01/03/2017,62,"[{'ref': 'btc_usd_Bitbay.csv', 'creationDate': '2018-04-10T08:23:45.113Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Bitbay.csv', 'ownerRef': 'gorgia', 'totalBytes': 38331, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Bitstamp.csv', 'creationDate': '2018-04-10T08:23:45.178Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Bitstamp.csv', 'ownerRef': 'gorgia', 'totalBytes': 40892, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Btcalpha.csv', 'creationDate': '2018-04-10T08:23:45.255Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Btcalpha.csv', 'ownerRef': 'gorgia', 'totalBytes': 31547, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Btcc.csv', 'creationDate': '2018-04-10T08:23:46.577Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Btcc.csv', 'ownerRef': 'gorgia', 'totalBytes': 27484, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Cex.csv', 'creationDate': '2018-04-10T08:23:46.808Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Cex.csv', 'ownerRef': 'gorgia', 'totalBytes': 28814, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Coinbase.csv', 'creationDate': '2018-04-10T08:23:45.512Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Coinbase.csv', 'ownerRef': 'gorgia', 'totalBytes': 32179, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Coinsbank.csv', 'creationDate': '2018-04-10T08:23:45.557Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Coinsbank.csv', 'ownerRef': 'gorgia', 'totalBytes': 25169, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_itBit.csv', 'creationDate': '2018-04-10T08:23:46.71Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_itBit.csv', 'ownerRef': 'gorgia', 'totalBytes': 37944, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Kraken.csv', 'creationDate': '2018-04-10T08:23:45.59Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Kraken.csv', 'ownerRef': 'gorgia', 'totalBytes': 40666, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'btc_usd_Wex.csv', 'creationDate': '2018-04-10T08:23:47.453Z', 'datasetRef': 'gorgia/bitcoin-markets', 'description': '', 'fileType': '.csv', 'name': 'btc_usd_Wex.csv', 'ownerRef': 'gorgia', 'totalBytes': 17961, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Volume (BTC)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Volume (Currency)', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Weighted Price', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",20559,False,False,False,1,2018-04-10T08:24:51.66Z,CC0: Public Domain,Gorgia,gorgia,gorgia/bitcoin-markets,Exchanges daily data,[],Bitcoin markets,0,150843,https://www.kaggle.com/gorgia/bitcoin-markets,0.4117647,"[{'versionNumber': 2, 'creationDate': '2018-04-10T08:24:51.66Z', 'creatorName': 'Gorgia', 'creatorRef': 'bitcoin-markets', 'versionNotes': 'some market data are not complete in the reference period', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-04-09T12:56:52.187Z', 'creatorName': 'Gorgia', 'creatorRef': 'bitcoin-markets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",615,3 +82,Vo Chi Cong,,1,,88,"[{'ref': 'btc.csv', 'creationDate': '2018-08-19T08:30:41.687Z', 'datasetRef': 'vochicong/btc-historical-data', 'description': 'BTC/JPY and BTC/USD orderbook history from some exchanges, i.e. Kraken, Bitflyer, Zaif, Quoinex and GDAX.', 'fileType': '.csv', 'name': 'btc.csv', 'ownerRef': 'vochicong', 'totalBytes': 501801561, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'pair', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'exchange', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'timestamp', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'bestAskPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'bestAskVolume', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'bestBidPrice', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'bestBidVolume', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",44816,False,False,False,1,2018-08-19T08:30:52.583Z,Unknown,Vo Chi Cong,vochicong,vochicong/btc-historical-data,BTC/JPY and BTC/USD orderbook history from some exchanges,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",BTC orderbook history,0,76232700,https://www.kaggle.com/vochicong/btc-historical-data,0.470588237,"[{'versionNumber': 1, 'creationDate': '2018-08-19T08:30:52.583Z', 'creatorName': 'Vo Chi Cong', 'creatorRef': 'btc-historical-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",870,4 +83,SRK,,13,"### Context + +Things like Block chain, Bitcoin, Bitcoin cash, Ethereum, Ripple etc are constantly coming in the news articles I read. So I wanted to understand more about it and [this post][1] helped me get started. Once the basics are done, the data scientist inside me started raising questions like: + +1. How many cryptocurrencies are there and what are their prices and valuations? +2. Why is there a sudden surge in the interest in recent days? + +For getting answers to all these questions (and if possible to predict the future prices ;)), I started collecting data from [coinmarketcap][2] about the cryptocurrencies. + + + +So what next? +Now that we have the price data, I wanted to dig a little more about the factors affecting the price of coins. I started of with Bitcoin and there are quite a few parameters which affect the price of Bitcoin. Thanks to [Blockchain Info][3], I was able to get quite a few parameters on once in two day basis. + +This will help understand the other factors related to Bitcoin price and also help one make future predictions in a better way than just using the historical price. + + +### Content + +The dataset has one csv file for each currency. Price history is available on a daily basis from April 28, 2013. This dataset has the historical price information of some of the top crypto currencies by market capitalization. The currencies included are: + + - Bitcoin + - Ethereum + - Ripple + - Bitcoin cash + - Bitconnect + - Dash + - Ethereum Classic + - Iota + - Litecoin + - Monero + - Nem + - Neo + - Numeraire + - Stratis + - Waves + + + + - Date : date of observation + - Open : Opening price on the given day + - High : Highest price on the given day + - Low : Lowest price on the given day + - Close : Closing price on the given day + - Volume : Volume of transactions on the given day + - Market Cap : Market capitalization in USD + +**Bitcoin Dataset (bitcoin_dataset.csv) :** + +This dataset has the following features. + + - Date : Date of observation + - btc_market_price : Average USD market price across major bitcoin exchanges. + - btc_total_bitcoins : The total number of bitcoins that have already been mined. + - btc_market_cap : The total USD value of bitcoin supply in circulation. + - btc_trade_volume : The total USD value of trading volume on major bitcoin exchanges. + - btc_blocks_size : The total size of all block headers and transactions. + - btc_avg_block_size : The average block size in MB. + - btc_n_orphaned_blocks : The total number of blocks mined but ultimately not attached to the main Bitcoin blockchain. + - btc_n_transactions_per_block : The average number of transactions per block. + - btc_median_confirmation_time : The median time for a transaction to be accepted into a mined block. + - btc_hash_rate : The estimated number of tera hashes per second the Bitcoin network is performing. + - btc_difficulty : A relative measure of how difficult it is to find a new block. + - btc_miners_revenue : Total value of coinbase block rewards and transaction fees paid to miners. + - btc_transaction_fees : The total value of all transaction fees paid to miners. + - btc_cost_per_transaction_percent : miners revenue as percentage of the transaction volume. + - btc_cost_per_transaction : miners revenue divided by the number of transactions. + - btc_n_unique_addresses : The total number of unique addresses used on the Bitcoin blockchain. + - btc_n_transactions : The number of daily confirmed Bitcoin transactions. + - btc_n_transactions_total : Total number of transactions. + - btc_n_transactions_excluding_popular : The total number of Bitcoin transactions, excluding the 100 most popular addresses. + - btc_n_transactions_excluding_chains_longer_than_100 : The total number of Bitcoin transactions per day excluding long transaction chains. + - btc_output_volume : The total value of all transaction outputs per day. + - btc_estimated_transaction_volume : The total estimated value of transactions on the Bitcoin blockchain. + - btc_estimated_transaction_volume_usd : The estimated transaction value in USD value. + +**Ethereum Dataset (ethereum_dataset.csv):** + +This dataset has the following features + + - Date(UTC) : Date of transaction + - UnixTimeStamp : unix timestamp + - eth_etherprice : price of ethereum + - eth_tx : number of transactions per day + - eth_address : Cumulative address growth + - eth_supply : Number of ethers in supply + - eth_marketcap : Market cap in USD + - eth_hashrate : hash rate in GH/s + - eth_difficulty : Difficulty level in TH + - eth_blocks : number of blocks per day + - eth_uncles : number of uncles per day + - eth_blocksize : average block size in bytes + - eth_blocktime : average block time in seconds + - eth_gasprice : Average gas price in Wei + - eth_gaslimit : Gas limit per day + - eth_gasused : total gas used per day + - eth_ethersupply : new ether supply per day + - eth_chaindatasize : chain data size in bytes + - eth_ens_register : Ethereal Name Service (ENS) registrations per day + + + +### Acknowledgements + +This data is taken from [coinmarketcap][5] and it is [free][6] to use the data. + +Bitcoin dataset is obtained from [Blockchain Info][7]. + +Ethereum dataset is obtained from [Etherscan][8]. + +Cover Image : Photo by Thomas Malama on Unsplash + +### Inspiration + +Some of the questions which could be inferred from this dataset are: + + 1. How did the historical prices / market capitalizations of various currencies change over time? + 2. Predicting the future price of the currencies + 3. Which currencies are more volatile and which ones are more stable? + 4. How does the price fluctuations of currencies correlate with each other? + 5. Seasonal trend in the price fluctuations + +Bitcoin / Ethereum dataset could be used to look at the following: + + 1. Factors affecting the bitcoin / ether price. + 2. Directional prediction of bitcoin / ether price. (refer [this paper][9] for more inspiration) + 3. Actual bitcoin price prediction. + + + + [1]: https://www.linkedin.com/pulse/blockchain-absolute-beginners-mohit-mamoria + [2]: https://coinmarketcap.com/ + [3]: https://blockchain.info/ + [4]: https://etherscan.io/charts + [5]: https://coinmarketcap.com/ + [6]: https://coinmarketcap.com/faq/ + [7]: https://blockchain.info/ + [8]: https://etherscan.io/charts + [9]: http://cs229.stanford.edu/proj2014/Isaac%20Madan,%20Shaurya%20Saluja,%20Aojia%20Zhao,Automated%20Bitcoin%20Trading%20via%20Machine%20Learning%20Algorithms.pdf",19255,"[{'ref': 'bitcoin_cash_price.csv', 'creationDate': '2018-02-21T12:36:34.523Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitcoin_cash_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 16300, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'bitcoin_dataset.csv', 'creationDate': '2018-02-21T12:36:20.93Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitcoin_dataset.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 764011, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'btc_market_price', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'btc_total_bitcoins', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'btc_market_cap', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'btc_trade_volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'btc_blocks_size', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'btc_avg_block_size', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'btc_n_orphaned_blocks', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'btc_n_transactions_per_block', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'btc_median_confirmation_time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'btc_hash_rate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'btc_difficulty', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'btc_miners_revenue', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'btc_transaction_fees', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'btc_cost_per_transaction_percent', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'btc_cost_per_transaction', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'btc_n_unique_addresses', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'btc_n_transactions', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 18, 'name': 'btc_n_transactions_total', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 19, 'name': 'btc_n_transactions_excluding_popular', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 20, 'name': 'btc_n_transactions_excluding_chains_longer_than_100', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'btc_output_volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'btc_estimated_transaction_volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'btc_estimated_transaction_volume_usd', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'bitcoin_price.csv', 'creationDate': '2018-02-21T12:36:31.241Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitcoin_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 129247, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'bitconnect_price.csv', 'creationDate': '2018-02-21T12:36:31.076Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'bitconnect_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 26774, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'dash_price.csv', 'creationDate': '2018-02-21T12:36:34.753Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'dash_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 92782, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ethereum_classic_price.csv', 'creationDate': '2018-02-21T12:36:34.434Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ethereum_classic_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 38569, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ethereum_dataset.csv', 'creationDate': '2018-02-21T12:36:21.792Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ethereum_dataset.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 140096, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date(UTC)', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'UnixTimeStamp', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'eth_etherprice', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'eth_tx', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'eth_address', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'eth_supply', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'eth_marketcap', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'eth_hashrate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'eth_difficulty', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'eth_blocks', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'eth_uncles', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'eth_blocksize', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'eth_blocktime', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'eth_gasprice', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'eth_gaslimit', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 15, 'name': 'eth_gasused', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 16, 'name': 'eth_ethersupply', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'eth_ens_register', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'ethereum_price.csv', 'creationDate': '2018-02-21T12:36:34.306Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ethereum_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 65244, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'iota_price.csv', 'creationDate': '2018-02-21T12:36:34.595Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'iota_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 19114, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'litecoin_price.csv', 'creationDate': '2018-02-21T12:36:33.444Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'litecoin_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 110073, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'monero_price.csv', 'creationDate': '2018-02-21T12:36:33.756Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'monero_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 93207, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'nem_price.csv', 'creationDate': '2018-02-21T12:36:36.217Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'nem_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 79107, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'neo_price.csv', 'creationDate': '2018-02-21T12:36:39.894Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'neo_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 37114, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'numeraire_price.csv', 'creationDate': '2018-02-21T12:36:33.961Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'numeraire_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 15485, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'omisego_price.csv', 'creationDate': '2018-02-21T12:36:37.604Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'omisego_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 14706, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'qtum_price.csv', 'creationDate': '2018-02-21T12:36:34.944Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'qtum_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 17781, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'ripple_price.csv', 'creationDate': '2018-02-21T12:36:39.073Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'ripple_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 126766, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'stratis_price.csv', 'creationDate': '2018-02-21T12:36:38.235Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'stratis_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 38241, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'waves_price.csv', 'creationDate': '2018-02-21T12:36:36.826Z', 'datasetRef': 'sudalairajkumar/cryptocurrencypricehistory', 'description': '', 'fileType': '.csv', 'name': 'waves_price.csv', 'ownerRef': 'sudalairajkumar', 'totalBytes': 43267, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Market Cap', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",1869,False,False,False,39,2018-02-21T12:36:47.22Z,CC0: Public Domain,SRK,sudalairajkumar,sudalairajkumar/cryptocurrencypricehistory,"Prices of top cryptocurrencies including Bitcoin, Ethereum, Ripple, Bitcoin cash","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}]",Cryptocurrency Historical Prices,12,715347,https://www.kaggle.com/sudalairajkumar/cryptocurrencypricehistory,0.7058824,"[{'versionNumber': 13, 'creationDate': '2018-02-21T12:36:47.22Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'new version', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2017-11-08T16:54:28.017Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Updated on Nov 8, 2017', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2017-10-04T06:28:03.47Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on October 4, 2017', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2017-09-18T18:20:26.337Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'updated few files which were not updated properly', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2017-09-18T18:17:40.507Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Prices updated on Sept 18, 2017', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2017-09-06T11:03:03.107Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on September 6, 2017', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2017-08-30T13:06:06.35Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on August 30, 2017', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2017-08-29T10:39:08.747Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'New prices updated on August 29, 2017', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2017-08-28T13:20:01.267Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Added ethereum_dataset.csv which has details of features related to Ethereum', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2017-08-27T14:02:03.23Z', 'creatorName': 'SRK', 'creatorRef': 'cryptocurrencypricehistory', 'versionNotes': 'Added bitcoin_dataset.csv which has other features along with bitcoin price', 'status': 'Ready'}]",140289,343 +84,Michael Pang,,4,"### Context + +Thousands of cryptocurrencies have sprung up in the past few years. Can you predict which one will be the next BTC? + + +### Content + +The dataset contains daily opening, high, low, close, and trading volumes for over 1200 cryptocurrencies (excluding bitcoin). + + +### Acknowledgements + +https://timescaledata.blob.core.windows.net/datasets/crypto_data.tar.gz + +### Inspiration + +Speculative forces are always at work on cryptocurrency exchanges - but do they contain any statistically significant features?",1023,"[{'ref': 'crypto_prices.csv', 'creationDate': '2018-07-11T14:14:59.798Z', 'datasetRef': 'akababa/cryptocurrencies', 'description': 'From https://timescaledata.blob.core.windows.net/datasets/crypto_data.tar.gz', 'fileType': '.csv', 'name': 'crypto_prices.csv', 'ownerRef': 'akababa', 'totalBytes': 38020546, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'DateTime', 'type': 'DateTime', 'originalType': '', 'description': 'Date'}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': 'Opening price'}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': 'Highest price'}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': 'Lowest price'}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': 'Closing price'}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': 'Trading volume in currency'}, {'order': 6, 'name': 'VolumeBTC', 'type': 'Numeric', 'originalType': '', 'description': 'Trading volume in BTC'}, {'order': 7, 'name': 'Symbol', 'type': 'String', 'originalType': '', 'description': 'Currency code'}]}]",9065,False,False,True,1,2018-07-11T14:15:12.387Z,CC0: Public Domain,Michael Pang,akababa,akababa/cryptocurrencies,Historical price data for 1200 cryptocurrencies (excluding BTC),"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}]",Cryptocurrencies,1,9049797,https://www.kaggle.com/akababa/cryptocurrencies,0.882352948,"[{'versionNumber': 4, 'creationDate': '2018-07-11T14:15:12.387Z', 'creatorName': 'Michael Pang', 'creatorRef': 'cryptocurrencies', 'versionNotes': 'fixed two swapped columns', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-01-09T17:41:08.08Z', 'creatorName': 'Michael Pang', 'creatorRef': 'cryptocurrencies', 'versionNotes': 'Add column headers', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-01-09T07:49:37.58Z', 'creatorName': 'Michael Pang', 'creatorRef': 'cryptocurrencies', 'versionNotes': 'csv', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-01-09T07:28:57.923Z', 'creatorName': 'Michael Pang', 'creatorRef': 'cryptocurrencies', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8106,42 +85,Jiun Yen,,7,"# AMEX, NYSE, and NASDAQ stocks histories +#### Update every **Satur... Sun... I mean Friday... >_< sometime during the weekend. I lied, I've been too busy the past few months and haven't updated in forever until today (2019.2.18)** +###Full history of stock symbols: +- Unzip **fh_< version_date >.zip** +- Each stock symbol has a .csv file under **full_history/** + - i.e. AMD.csv +- Columns in .csv + - **date** - year-month-day, 2018-08-08 + - **volume** - int, volume of the day + - **open** - float, opening price of the day + - **close** - float, closing price of the day + - **high** - float, highest price of the day + - **low** - float, lowest price of the day + - **adjclose** - float, adjusted closing price of the day + +###Other files: +- all_symbols.txt - All the stock symbols with history +- excluded_symbols.txt - All the ones that I couldn't retrieve data for +- NASDAQ.txt - NASDAQ listing +- NYSE.txt - NYSE listing +- AMEX.txt - AMEX listing + +###Disclaimer +This dataset contains **almost** all the stocks listed on these exchanges as of the date shown in the file name. Some of the symbols cannot be found on Yahoo Finance, which I plan on using CNN Money to scrape. There are other symbols that have different classes that require some modification before I can make them queryable... I have yet to decide on the best course of action. If you want to know what these excluded symbols are, see excluded_symbols.txt. + +Note: there used to be some tickers missing because of poor connection, that's been solved now. + +**I've also been asked why I don't put everything into one table, and here's my rationale (copy/pasted from my email):** + +It is possible and I've debated this before, but I've decided to go with individual files for quite a number of reasons, and I highly recommend you consider these before combining them: +1) I don't need to load everything into memory or search for the right rows if I only want to work with particular sets, +2) easier and faster to manipulate (append, remove, or whatever) when all the data of a ticker is in the same place, +3) I don't need to repeat ticker names for each row just to know which row belongs to which ticker, +4) reduce risk, latency, and waits during parallel processing of different ticker data, +5) in case of any unforeseen bad writes or termination, this way reduces the chances of affecting the entire dataset and allows for restart anytime without the need to keep backup things up every 5 minutes. +I get all these benefits only at the cost of slightly larger compressed file and a few more lines of code. To me it's worth it, but I can understand if you are frustrated, but it is possible to concatenate everything. + +###Github - for you to DIY: +**https://github.com/qks1lver/redtide** + +###Data source +**Listing files (i.e. NYSE.txt) are from http://eoddata.com/symbols.aspx** + +**Daily historical data compiled from Yahoo Finance** + +###Need someone to talk to? +If you have questions, e-mail me: jiunyyen@gmail.com + +Happy mining! +",2590,"[{'ref': 'fh_20190420.zip', 'creationDate': '2019-04-21T04:48:52.087Z', 'datasetRef': 'qks1lver/amex-nyse-nasdaq-stock-histories', 'description': '', 'fileType': '.zip', 'name': 'fh_20190420.zip', 'ownerRef': 'qks1lver', 'totalBytes': 520401093, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'history_60d.csv', 'creationDate': '2019-04-21T04:36:10.939Z', 'datasetRef': 'qks1lver/amex-nyse-nasdaq-stock-histories', 'description': ""Daily historical data of 8,032 stock tickers on AMEX, NYSE, and NASDAQ until March 1, 2019. Retrieved from Yahoo on the night of March 1, 2019. Each ticker has its own .csv file.\n\n**history_60d.csv** is every one of these tickers over the past 60 days concatenated together (still daily res. Also 60 calendar days not just trading days).\n\nTL;DR Overview: .csv files are in the full_history/ folder in the zip file, which uncompresses to around 2.5G\n\nI recommend taking a look at the Overview to see what's there, and the potential pitfalls.\n\nHappy mining!"", 'fileType': '.csv', 'name': 'history_60d.csv', 'ownerRef': 'qks1lver', 'totalBytes': 36528951, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'volume', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'high', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'adjclose', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",75752,False,False,True,5,2019-04-21T05:25:28.943Z,CC BY-SA 4.0,Jiun Yen,qks1lver,qks1lver/amex-nyse-nasdaq-stock-histories,"Daily historical data of over 8,000 stocks trading on AMEX, NYSE, and NASDAQ","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'economics', 'competitionCount': 0, 'datasetCount': 788, 'description': 'The economics tag contains resources for analyzing the production, consumption, and transfer of wealth.', 'fullPath': 'society and social sciences > social sciences > economics', 'isAutomatic': False, 'name': 'economics', 'scriptCount': 49, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}, {'ref': 'marketing', 'competitionCount': 4, 'datasetCount': 24, 'description': 'Marketing is the activity of connecting consumers to products and services. Find datasets, kernels, and competitions related to marketing in this tag.', 'fullPath': 'technology and applied sciences > marketing', 'isAutomatic': False, 'name': 'marketing', 'scriptCount': 19, 'totalCount': 47}]","AMEX, NYSE, NASDAQ stock histories",0,526877452,https://www.kaggle.com/qks1lver/amex-nyse-nasdaq-stock-histories,0.7647059,"[{'versionNumber': 7, 'creationDate': '2019-04-21T05:25:28.943Z', 'creatorName': 'Jiun Yen', 'creatorRef': 'amex-nyse-nasdaq-stock-histories', 'versionNotes': 'another week', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2019-04-14T18:57:38.973Z', 'creatorName': 'Jiun Yen', 'creatorRef': 'amex-nyse-nasdaq-stock-histories', 'versionNotes': 'weekly update', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2019-03-02T20:56:49.533Z', 'creatorName': 'Jiun Yen', 'creatorRef': 'amex-nyse-nasdaq-stock-histories', 'versionNotes': 'Another week', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2019-02-18T19:57:18.647Z', 'creatorName': 'Jiun Yen', 'creatorRef': 'amex-nyse-nasdaq-stock-histories', 'versionNotes': 'Historical data until 2/15/2019', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-11-17T05:09:23.667Z', 'creatorName': 'Jiun Yen', 'creatorRef': 'amex-nyse-nasdaq-stock-histories', 'versionNotes': 'Weekly update 2018.11.16', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-11-11T19:22:44.79Z', 'creatorName': 'Jiun Yen', 'creatorRef': 'amex-nyse-nasdaq-stock-histories', 'versionNotes': 'Initial release', 'status': 'Ready'}]",19881,149 +86,Chris Crawford,,1,"### Context +This corpus contains a metadata-rich collection of fictional conversations extracted from raw movie scripts: + +- 220,579 conversational exchanges between 10,292 pairs of movie characters +- involves 9,035 characters from 617 movies +- in total 304,713 utterances +- movie metadata included: + - genres + - release year + - IMDB rating + - number of IMDB votes + - IMDB rating +- character metadata included: + - gender (for 3,774 characters) + - position on movie credits (3,321 characters) + + + +### Content +In all files the original field separator was "" +++$+++ "" and have been converted to tabs (\t). Additionally, the original file encoding was ISO-8859-2. It's possible that the field separator conversion and decoding may have left some artifacts. + + +- movie_titles_metadata.txt + - contains information about each movie title + - fields: + - movieID, + - movie title, + - movie year, + - IMDB rating, + - no. IMDB votes, + - genres in the format ['genre1','genre2',É,'genreN'] + +- movie_characters_metadata.txt + - contains information about each movie character + - fields: + - characterID + - character name + - movieID + - movie title + - gender (""?"" for unlabeled cases) + - position in credits (""?"" for unlabeled cases) + +- movie_lines.txt + - contains the actual text of each utterance + - fields: + - lineID + - characterID (who uttered this phrase) + - movieID + - character name + - text of the utterance + +- movie_conversations.txt + - the structure of the conversations + - fields + - characterID of the first character involved in the conversation + - characterID of the second character involved in the conversation + - movieID of the movie in which the conversation occurred + - list of the utterances that make the conversation, in chronological + order: ['lineID1','lineID2',É,'lineIDN'] + has to be matched with movie_lines.txt to reconstruct the actual content + +- raw_script_urls.txt + - the urls from which the raw sources were retrieved + + +### Acknowledgements +This corpus comes from the paper, ""Chameleons in imagined conversations: A new approach to understanding coordination of linguistic style in dialogs"" by Cristian Danescu-Niculescu-Mizil and Lillian Lee. + +The paper and up-to-date data can be found here: [http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html][1] + +Please see the README for more information on the authors' collection procedures. + +The file formats were converted to TSV and may contain a few errors + +### Inspiration + + - What are all of these imaginary people talking about? Are they representative of how real people communicate? + - Can you identify themes in movies from certain writers or directors? + - How does the dialog change between characters? + + [1]: http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html",2537,"[{'ref': 'movie_characters_metadata.tsv', 'creationDate': '2017-07-11T20:54:33Z', 'datasetRef': 'Cornell-University/movie-dialog-corpus', 'description': 'Contains information about each movie character', 'fileType': '.tsv', 'name': 'movie_characters_metadata.tsv', 'ownerRef': 'Cornell-University', 'totalBytes': 353341, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_conversations.tsv', 'creationDate': '2017-07-11T20:54:34Z', 'datasetRef': 'Cornell-University/movie-dialog-corpus', 'description': 'Contains the structure of the conversations', 'fileType': '.tsv', 'name': 'movie_conversations.tsv', 'ownerRef': 'Cornell-University', 'totalBytes': 888540, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_lines.tsv', 'creationDate': '2017-07-11T20:54:36Z', 'datasetRef': 'Cornell-University/movie-dialog-corpus', 'description': 'Contains the actual text of each utterance', 'fileType': '.tsv', 'name': 'movie_lines.tsv', 'ownerRef': 'Cornell-University', 'totalBytes': 8604867, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_titles_metadata.tsv', 'creationDate': '2017-07-11T20:54:32Z', 'datasetRef': 'Cornell-University/movie-dialog-corpus', 'description': 'Contains information about each movie title', 'fileType': '.tsv', 'name': 'movie_titles_metadata.tsv', 'ownerRef': 'Cornell-University', 'totalBytes': 41970, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'raw_script_urls.tsv', 'creationDate': '2017-07-11T20:54:33Z', 'datasetRef': 'Cornell-University/movie-dialog-corpus', 'description': 'The urls from which the raw sources were retrieved', 'fileType': '.tsv', 'name': 'raw_script_urls.tsv', 'ownerRef': 'Cornell-University', 'totalBytes': 46885, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'README.txt', 'creationDate': '2017-07-11T20:54:32Z', 'datasetRef': 'Cornell-University/movie-dialog-corpus', 'description': 'README', 'fileType': '.txt', 'name': 'README.txt', 'ownerRef': 'Cornell-University', 'totalBytes': 4182, 'url': 'https://www.kaggle.com/', 'columns': []}]",1568,False,False,True,4,2017-07-11T21:41:03.35Z,Other (specified in description),Cornell University,Cornell-University,Cornell-University/movie-dialog-corpus,A metadata-rich collection of fictional conversations from raw movie scripts,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'film', 'competitionCount': 2, 'datasetCount': 62, 'description': 'Grab a bucket of popcorn and come analyze these movie ratings. The world must know which blockbuster film is the blockbuster film of all time!', 'fullPath': 'culture and arts > performing arts > film', 'isAutomatic': False, 'name': 'film', 'scriptCount': 5, 'totalCount': 69}]",Movie Dialog Corpus,1,9606952,https://www.kaggle.com/Cornell-University/movie-dialog-corpus,0.875,"[{'versionNumber': 1, 'creationDate': '2017-07-11T21:41:03.35Z', 'creatorName': 'Chris Crawford', 'creatorRef': 'movie-dialog-corpus', 'versionNotes': 'Initial release', 'status': 'Ready'}]",15864,66 +87,Rajath Chidananda,,1,"This corpus contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts: + +220,579 conversational exchanges between 10,292 pairs of movie characters + +involves 9,035 characters from 617 movies + +in total 304,713 utterances + +movie metadata included: + +genres + +release year + +IMDB rating + +number of IMDB votes + +IMDB rating + +character metadata included: + +gender (for 3,774 characters) + +position on movie credits (3,321 characters)",215,"[{'ref': '.DS_Store', 'creationDate': '2018-03-28T12:41:34.908Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.DS_Store', 'name': '.DS_Store', 'ownerRef': 'rajathmc', 'totalBytes': 6148, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'chameleons.pdf', 'creationDate': '2018-03-28T12:41:33.025Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.pdf', 'name': 'chameleons.pdf', 'ownerRef': 'rajathmc', 'totalBytes': 290691, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_characters_metadata.txt', 'creationDate': '2018-03-28T12:41:33.037Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': 'This corpus contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts:\n\n\n\n- 220,579 conversational exchanges between 10,292 pairs of movie characters\n\n- involves 9,035 characters from 617 movies\n\n- in total 304,713 utterances\n\n- movie metadata included:\n\n - genres\n\n - release year\n\n - IMDB rating\n\n - number of IMDB votes\n\n - IMDB rating\n\n- character metadata included:\n\n - gender (for 3,774 characters)\n\n - position on movie credits (3,321 characters)', 'fileType': '.txt', 'name': 'movie_characters_metadata.txt', 'ownerRef': 'rajathmc', 'totalBytes': 705695, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_conversations.txt', 'creationDate': '2018-03-28T12:41:34.697Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.txt', 'name': 'movie_conversations.txt', 'ownerRef': 'rajathmc', 'totalBytes': 6760930, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_lines.txt', 'creationDate': '2018-03-28T12:41:47.938Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.txt', 'name': 'movie_lines.txt', 'ownerRef': 'rajathmc', 'totalBytes': 34641919, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'movie_titles_metadata.txt', 'creationDate': '2018-03-28T12:41:35.711Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.txt', 'name': 'movie_titles_metadata.txt', 'ownerRef': 'rajathmc', 'totalBytes': 67289, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'raw_script_urls.txt', 'creationDate': '2018-03-28T12:41:36.17Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.txt', 'name': 'raw_script_urls.txt', 'ownerRef': 'rajathmc', 'totalBytes': 56177, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'README.txt', 'creationDate': '2018-03-28T12:41:32.96Z', 'datasetRef': 'rajathmc/cornell-moviedialog-corpus', 'description': '', 'fileType': '.txt', 'name': 'README.txt', 'ownerRef': 'rajathmc', 'totalBytes': 4182, 'url': 'https://www.kaggle.com/', 'columns': []}]",18754,False,False,False,3,2018-03-28T12:42:03.66Z,CC0: Public Domain,Rajath Chidananda,rajathmc,rajathmc/cornell-moviedialog-corpus,This corpus contains a large metadata-rich collection of fictional conversations,"[{'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}]",Cornell Movie-Dialog Corpus,0,10042980,https://www.kaggle.com/rajathmc/cornell-moviedialog-corpus,0.8125,"[{'versionNumber': 1, 'creationDate': '2018-03-28T12:42:03.66Z', 'creatorName': 'Rajath Chidananda', 'creatorRef': 'cornell-moviedialog-corpus', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1646,5 +88,Enrico Marocco,,1,"### Context + +Email archives are a great source of information about the real-world social networks people are generally most involved in. Although sharing of full email exchanges is almost never a good idea, flow metadata (i.e. who sent a message to whom, and when) can be **anonymized** quite effectively and still carry a lot of information. + +I'm sharing over 10 years of flow metadata from my work and personal email accounts to enable data scientists experiment with their favourite statistics and social network analysis tools. A getting-started notebook is available [here](https://www.kaggle.com/emarock/getting-started-with-email-flows). + +For anyone willing to extract similar datasets from their own email accounts, the tool I put together for producing mine is available at [https://github.com/emarock/mailfix](https://github.com/emarock/mailfix) (currently supports extraction from Gmail accounts, IMAP accounts and Apple Mail on macOS). + + +### Content + +This dataset contains two files: + + - `work.csv`: email flow metadata from my work account (~146,000 emails, from 2005 to 2018) + - `personal.csv`: email flow metadata from my personal account (~41,000 emails, from 2006 to 2018) + +As one should expect from any decade long archive, the data presents some partial corruptions and anomalies, that are however time-confined and should be easily identified and filtered out through basic statistical analysis. I will be happy to discuss and provide more information in the comments. + + +### Inspiration + +Basic exploration: + + - Who am I? + - Who's human and who's not? How different are attention-seekers from mailing list engines? + - How did my communication patterns change over time? Did they change in the same way in and out of work? + - Did my social network grow? Did it shrink? + - Who's my boss? Who were my former ones? Who'll be the next one? + +I will be also available to extend the dataset with additional data for training advanced classifiers (e.g. lists of actual humans, mailing lists, VIPs...). Feel free to ask in the comments. + + +### Anonymization and Privacy Note + +The anonymization function (code [here](https://github.com/emarock/mailfix/blob/master/lib/anonymizer.js), tests [here](https://github.com/emarock/mailfix/blob/master/test/anonymizer.js)) is based on [djb2 string hashing](http://www.cse.yorku.ca/~oz/hash.html) and on a [Mersenne Twister pseudorandom generator](https://en.wikipedia.org/wiki/Mersenne_Twister), implemented in the [string-hash](https://www.npmjs.com/package/string-hash) and [casual](https://www.npmjs.com/package/casual) node.js modules. It should be practically irreversible, modulo implementation defects. + +However, if you've ever been involved in email exchanges with me, you can work your way back to the anonymized address associated to your actual address by comparing the message timestamps. Similarly, with a little more guesswork, you can discover the anonymized addresses of those who were also involved in those exchanges. Since that is also true for them in respect to you, if that is of any concern just reach out and I'll censor the problematic entries in the dataset.",84,"[{'ref': 'personal.csv', 'creationDate': '2018-03-21T10:02:25.942Z', 'datasetRef': 'emarock/enricos-email-flows', 'description': ""Email flow data from my personal account. A single email messages sent to N recipients is identified by the 'id' field and is represented by N rows, one per recipient. The 'type' field indicates whether the recipient was in the To or in the Cc list."", 'fileType': '.csv', 'name': 'personal.csv', 'ownerRef': 'emarock', 'totalBytes': 10455037, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': 'The email message identifier'}, {'order': 1, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': 'The date and time'}, {'order': 2, 'name': 'type', 'type': 'String', 'originalType': '', 'description': 'The recipient type, either to or cc'}, {'order': 3, 'name': 'sender', 'type': 'String', 'originalType': '', 'description': 'The sender address (anonymized)'}, {'order': 4, 'name': 'receiver', 'type': 'String', 'originalType': '', 'description': 'The receiver address (anonymized)'}]}, {'ref': 'work.csv', 'creationDate': '2018-03-21T10:03:09.893Z', 'datasetRef': 'emarock/enricos-email-flows', 'description': ""Email flow data from my work account. A single email messages sent to N recipients is identified by the 'id' field and is represented by N rows, one per recipient. The 'type' field indicates whether the recipient was in the To or in the Cc list."", 'fileType': '.csv', 'name': 'work.csv', 'ownerRef': 'emarock', 'totalBytes': 153868022, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': 'Email message identifier'}, {'order': 1, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': 'Date and time'}, {'order': 2, 'name': 'type', 'type': 'String', 'originalType': '', 'description': 'Recipient type, either to or cc'}, {'order': 3, 'name': 'sender', 'type': 'String', 'originalType': '', 'description': 'Sender address (anonymized)'}, {'order': 4, 'name': 'receiver', 'type': 'String', 'originalType': '', 'description': 'Receiver address (anonymized)'}]}]",17701,False,False,False,1,2018-03-21T10:10:40.373Z,CC0: Public Domain,Enrico Marocco,emarock,emarock/enricos-email-flows,"Anonymized Metadata (i.e. sender, receivers, date) from my 2005-2018 Archives","[{'ref': 'network analysis', 'competitionCount': 0, 'datasetCount': 16, 'description': None, 'fullPath': 'analysis > network analysis', 'isAutomatic': False, 'name': 'network analysis', 'scriptCount': 36, 'totalCount': 52}, {'ref': 'telecommunications', 'competitionCount': 0, 'datasetCount': 30, 'description': ""In this tag you'll find datsets loosely related to telecommunications. There are primarily datasets about human activity based on cell phone sensors, robo calls, and cell phone reviews."", 'fullPath': 'technology and applied sciences > electronics > telecommunications', 'isAutomatic': False, 'name': 'telecommunications', 'scriptCount': 8, 'totalCount': 38}, {'ref': 'communication', 'competitionCount': 0, 'datasetCount': 6, 'description': None, 'fullPath': 'society and social sciences > society > communication', 'isAutomatic': False, 'name': 'communication', 'scriptCount': 1, 'totalCount': 7}]",Enrico's Email Flows,0,12867137,https://www.kaggle.com/emarock/enricos-email-flows,0.882352948,"[{'versionNumber': 1, 'creationDate': '2018-03-21T10:10:40.373Z', 'creatorName': 'Enrico Marocco', 'creatorRef': 'enricos-email-flows', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1122,2 +89,Vlado,,1,"### Context +Orderbook flow from exchanges is usually very expensive and hard to find luckily many exchanges offer websockets with full access to data. For a while I've been collecting this data, and this is a sample. + +### Content + +Data is acquired from [Poloniex][1] via websocket and stored in a database. Data consists of following fields: + +1. typeOT - string - Order 'o' or Trade 't' + +3. typeSB - numeric - Sell '0' or Buy '1' in term of trades, same goes for asks/bids in term of orders + +4. rate - numeric - actual rate at which it was traded/bidded/asked + +5. amount - numeric - actual amount + +6. timeDateT - numeric - time in UNIX epoch + +7. seq - numeric - sequence number for sorting + +8. timeDateOTe - date - time and date in a format, added by me + +9. timeDateOTh - date - time and date in a format, added by me + +### Acknowledgements + +Thank You Poloniex and crypto community for sharing data with researches. + +### Inspiration + +- build a state of art database of features? +- build state of art database of images? +- visualize it in a new manner? +- process each tick/order very very fast? +- continuously build LOB and show some statistics? + + [1]: http://www.poloniex.com",33,"[{'ref': 'Poloniex_BTCETH_OrderBookFlow_Sample.csv', 'creationDate': '2018-04-12T04:02:46.031Z', 'datasetRef': 'praeconium/poloniex-btceth-order-book-stream-sample', 'description': ""Orderbook flow from exchanges is usually very expensive and hard to find luckily many exchanges offer websockets with full access to data. For a while I've been collecting this data, and this is a sample.\n"", 'fileType': '.csv', 'name': 'Poloniex_BTCETH_OrderBookFlow_Sample.csv', 'ownerRef': 'praeconium', 'totalBytes': 386994941, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'typeOT', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'tradeID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'typeSB', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'rate', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'amount', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'timeDateT', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'seq', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'timeDateOTe', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'timeDateOTh', 'type': 'DateTime', 'originalType': '', 'description': None}]}]",21044,False,False,False,1,2018-04-12T04:04:11.673Z,Unknown,Vlado,praeconium,praeconium/poloniex-btceth-order-book-stream-sample,Order Flow from a websocket,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'business', 'competitionCount': 1, 'datasetCount': 397, 'description': 'Businesses are organizational entities that drive economic activity. Explore the inner workings of things like HR practices, product sales, and customer happiness in these competitions, kernels, and datasets.', 'fullPath': 'society and social sciences > society > business', 'isAutomatic': False, 'name': 'business', 'scriptCount': 101, 'totalCount': 499}]",Poloniex BTCETH OrderBook Stream Sample,0,67039769,https://www.kaggle.com/praeconium/poloniex-btceth-order-book-stream-sample,0.7058824,"[{'versionNumber': 1, 'creationDate': '2018-04-12T04:04:11.673Z', 'creatorName': 'Vlado', 'creatorRef': 'poloniex-btceth-order-book-stream-sample', 'versionNotes': 'Initial release', 'status': 'Ready'}]",590,1 +90,Florent Baptist,,1,"This data-set has data spanning from 2013 till 2018. The S&P 500 stock market index, maintained by S&P Dow Jones Indices, comprises 505 common stocks issued by 500 large-cap companies and traded on American stock exchanges, and covers about 80 percent of the American equity market by capitalization. The index is weighted by free-float market capitalization, so more valuable companies account for relatively more of the index. The index constituents and the constituent weights are updated regularly using rules published by S&P Dow Jones Indices. Although the index is called the S&P ""500"", the index contains 505 stocks because it includes two share classes of stock from 5 of its component companies. + +The dataset comprises of all the S&P 500 components with the records created for each stock's open and closing rate spanning from last 5 years. + +yahoo finance",48,"[{'ref': 'stock data.csv', 'creationDate': '2019-03-27T15:28:03.656Z', 'datasetRef': 'florentbaptist/sp-500', 'description': '619040 records in this data set.', 'fileType': '.csv', 'name': 'stock data.csv', 'ownerRef': 'florentbaptist', 'totalBytes': 30098860, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'open', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'high', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 3, 'name': 'low', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 4, 'name': 'close', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 5, 'name': 'volume', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Name', 'type': 'String', 'originalType': '', 'description': None}]}]",150553,False,False,False,1,2019-03-27T15:28:14.16Z,Unknown,Florent Baptist,florentbaptist,florentbaptist/sp-500,SP500 data history from yahoo,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}]",S&P 500,0,10035049,https://www.kaggle.com/florentbaptist/sp-500,0.5882353,"[{'versionNumber': 1, 'creationDate': '2019-03-27T15:28:14.16Z', 'creatorName': 'Florent Baptist', 'creatorRef': 'sp-500', 'versionNotes': 'Initial release', 'status': 'Ready'}]",305,1 +91,Kaggle Team,,229,"### Content + +The Multi Agency Permits dataset contains the permits data from two different data sources/exchanges – DOB Jobs Permits and DOHMH Permits + +### Context + +This is a dataset hosted by the City of New York. The city has an open data platform found [here](https://opendata.cityofnewyork.us/) and they update their information according the amount of data that is brought in. Explore New York City using Kaggle and all of the data sources available through the City of New York [organization page](https://www.kaggle.com/new-york-city)! + +* Update Frequency: This dataset is updated daily. + +### Acknowledgements + +This dataset is maintained using Socrata's API and Kaggle's API. [Socrata](https://socrata.com/) has assisted countless organizations with hosting their open data and has been an integral part of the process of bringing more data to the public. + +[Cover photo](https://unsplash.com/photos/E_8Zk_hfpcE) by [Adi Goldstein](https://unsplash.com/@adigold1) on [Unsplash](https://unsplash.com/) +_Unsplash Images are distributed under a unique [Unsplash License](https://unsplash.com/license)._",19,"[{'ref': 'multi-agency-permits.csv', 'creationDate': '2019-03-06T06:48:47.685Z', 'datasetRef': 'new-york-city/ny-multi-agency-permits', 'description': 'Main data file for this Dataset', 'fileType': '.csv', 'name': 'multi-agency-permits.csv', 'ownerRef': 'new-york-city', 'totalBytes': 1160083498, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Source', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 1, 'name': 'License_Permit_Holder', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 2, 'name': 'Business_Description', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 3, 'name': 'License/Permit_Number', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 4, 'name': 'Permit_Type_Description', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 5, 'name': 'Permit_Subtype_Description', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 6, 'name': 'Permit_Issuance_Date', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 7, 'name': 'Permit_Expiration_Date', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 8, 'name': 'Permit_Status_Date', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 9, 'name': 'Permit_Status_Description', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 10, 'name': 'Address', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 11, 'name': 'Street', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 12, 'name': 'City', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 13, 'name': 'Zip_Code', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 14, 'name': 'Borough', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 15, 'name': 'Building_ID_No', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 16, 'name': 'Borough_Block_Lot', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 17, 'name': 'Latitude_WGS84', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 18, 'name': 'Longitude_WGS84', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 19, 'name': 'License/Permit_Holder_Name', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 20, 'name': 'DOB_Skilled_Trades_Lic_Num', 'type': 'String', 'originalType': 'string', 'description': None}, {'order': 21, 'name': 'DOB_Skilled_Trades_Lic_Type', 'type': 'String', 'originalType': 'string', 'description': None}]}, {'ref': 'socrata_metadata.json', 'creationDate': '2019-03-06T06:48:48.163Z', 'datasetRef': 'new-york-city/ny-multi-agency-permits', 'description': 'Full Socrata metadata', 'fileType': '.json', 'name': 'socrata_metadata.json', 'ownerRef': 'new-york-city', 'totalBytes': 45352, 'url': 'https://www.kaggle.com/', 'columns': []}]",31393,False,False,False,0,2019-03-06T06:48:48.45Z,CC0: Public Domain,City of New York,new-york-city,new-york-city/ny-multi-agency-permits,From New York City Open Data,"[{'ref': 'socrata', 'competitionCount': 0, 'datasetCount': 1110, 'description': None, 'fullPath': 'initiatives > socrata', 'isAutomatic': False, 'name': 'socrata', 'scriptCount': 3, 'totalCount': 1113}]",NY Multi Agency Permits,0,190748122,https://www.kaggle.com/new-york-city/ny-multi-agency-permits,0.7647059,"[{'versionNumber': 229, 'creationDate': '2019-03-06T06:48:48.45Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190306', 'status': 'Ready'}, {'versionNumber': 228, 'creationDate': '2019-02-27T07:12:33.623Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190227', 'status': 'Ready'}, {'versionNumber': 227, 'creationDate': '2019-02-26T07:13:14.643Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190226', 'status': 'Ready'}, {'versionNumber': 226, 'creationDate': '2019-02-21T07:30:06.557Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190221', 'status': 'Ready'}, {'versionNumber': 225, 'creationDate': '2019-02-20T08:15:06.94Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190220', 'status': 'Ready'}, {'versionNumber': 224, 'creationDate': '2019-02-19T06:58:11.613Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190219', 'status': 'Ready'}, {'versionNumber': 223, 'creationDate': '2019-02-18T07:58:18.597Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190218', 'status': 'Ready'}, {'versionNumber': 222, 'creationDate': '2019-02-17T07:52:31.283Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190217', 'status': 'Ready'}, {'versionNumber': 221, 'creationDate': '2019-02-16T05:31:31.357Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190216', 'status': 'Ready'}, {'versionNumber': 220, 'creationDate': '2019-02-15T11:15:02.26Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'ny-multi-agency-permits', 'versionNotes': 'Automated data update 20190215', 'status': 'Ready'}]",1122,0 +92,Μαριος Μιχαηλιδης KazAnova,,2,"### Context + +This is the sentiment140 dataset. It contains 1,600,000 tweets extracted using the twitter api . The tweets have been annotated (0 = negative, 4 = positive) and they can be used to detect sentiment . + +### Content + +It contains the following 6 fields: + +1. **target**: the polarity of the tweet (*0* = negative, *2* = neutral, *4* = positive) + +2. **ids**: The id of the tweet ( *2087*) + +3. **date**: the date of the tweet (*Sat May 16 23:58:44 UTC 2009*) + +4. **flag**: The query (*lyx*). If there is no query, then this value is NO_QUERY. + +5. **user**: the user that tweeted (*robotickilldozr*) + +6. **text**: the text of the tweet (*Lyx is cool*) + + +### Acknowledgements + +The official link regarding the dataset with resources about how it was generated is [here][1] +The official paper detailing the approach is [here][2] + +Citation: Go, A., Bhayani, R. and Huang, L., 2009. Twitter sentiment classification using distant supervision. *CS224N Project Report, Stanford, 1(2009), p.12*. + + +### Inspiration + +To detect severity from tweets. You [may have a look at this][3]. + +[1]: http://%20http://help.sentiment140.com/for-students/ +[2]: http://bhttp://cs.stanford.edu/people/alecmgo/papers/TwitterDistantSupervision09.pdf +[3]: https://www.linkedin.com/pulse/social-machine-learning-h2o-twitter-python-marios-michailidis",13986,"[{'ref': 'training.1600000.processed.noemoticon.csv', 'creationDate': '2017-09-13T22:43:13.9758298Z', 'datasetRef': 'kazanova/sentiment140', 'description': 'This is the sentiment140 dataset. \nIt contains 1,600,000 tweets extracted using the twitter api . The tweets have been annotated (0 = negative, 2 = neutral, 4 = positive) and they can be used to detect sentiment . \nIt contains the following 6 fields:\n\n 1. **target**: the polarity of the tweet (*0* = negative, *2* = neutral, *4* = positive)\n 2. **ids**: The id of the tweet ( *2087*)\n 3. **date**: the date of the tweet (*Sat May 16 23:58:44 UTC 2009*)\n 4. **flag**: The query (*lyx*). If there is no query, then this value is NO_QUERY.\n 5. **user**: the user that tweeted (*robotickilldozr*)\n 6. **text**: the text of the tweet (*Lyx is cool*)\n\n\nThe official link regarding the dataset with resources about how it was generated is [here][1] \nThe official paper detailing the approach is [here][2] \n\nAccording to the creators of the dataset:\n\n""Our approach was unique because our training data was automatically created, as opposed to having humans manual annotate tweets. In our approach, we assume that any tweet with positive emoticons, like :), were positive, and tweets with negative emoticons, like :(, were negative. We used the Twitter Search API to collect these tweets by using keyword search""\n\ncitation: Go, A., Bhayani, R. and Huang, L., 2009. Twitter sentiment classification using distant supervision. *CS224N Project Report, Stanford, 1(2009), p.12*.\n\n\n [1]: http://%20http://help.sentiment140.com/for-students/\n [2]: http://bhttp://cs.stanford.edu/people/alecmgo/papers/TwitterDistantSupervision09.pdf\ns', 'fileType': '.csv', 'name': 'training.1600000.processed.noemoticon.csv', 'ownerRef': 'kazanova', 'totalBytes': 88031309, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '0', 'type': 'Numeric', 'originalType': '', 'description': 'target'}, {'order': 1, 'name': '1467810369', 'type': 'Numeric', 'originalType': '', 'description': 'id'}, {'order': 2, 'name': 'Mon Apr 06 22:19:45 PDT 2009', 'type': 'DateTime', 'originalType': '', 'description': 'date'}, {'order': 3, 'name': 'NO_QUERY', 'type': 'String', 'originalType': '', 'description': 'flag'}, {'order': 4, 'name': '_TheSpecialOne_', 'type': 'String', 'originalType': '', 'description': 'user'}, {'order': 5, 'name': ""@switchfoot http://twitpic.com/2y1zl - Awww, that's a bummer. You shoulda got David Carr of Third Day to do it. ;D"", 'type': 'String', 'originalType': '', 'description': 'text'}]}]",2477,False,False,False,37,2017-09-13T22:43:19.117Z,Other (specified in description),Μαριος Μιχαηλιδης KazAnova,kazanova,kazanova/sentiment140,Sentiment analysis with tweets,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'languages', 'competitionCount': 2, 'datasetCount': 174, 'description': 'Language is a method of communication that consists of using words arranged into meaningful patterns. This is a good place to find natural language processing datasets and kernels to study languages and train your chat bots.', 'fullPath': 'culture and arts > culture and humanities > languages', 'isAutomatic': False, 'name': 'languages', 'scriptCount': 40, 'totalCount': 216}]",Sentiment140 dataset with 1.6 million tweets,3,88031309,https://www.kaggle.com/kazanova/sentiment140,0.882352948,"[{'versionNumber': 2, 'creationDate': '2017-09-13T22:43:19.117Z', 'creatorName': 'Μαριος Μιχαηλιδης KazAnova', 'creatorRef': 'sentiment140', 'versionNotes': 'updated description', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-09-13T22:07:02.883Z', 'creatorName': 'Μαριος Μιχαηλιδης KazAnova', 'creatorRef': 'sentiment140', 'versionNotes': 'Initial release', 'status': 'Ready'}]",85750,270 +93,vikas,,2,"### Context + +As part of the House Intelligence Committee investigation into how Russia may have influenced the 2016 US Election, Twitter released the screen names of almost 3000 Twitter accounts believed to be connected to Russia’s Internet Research Agency, a company known for operating social media troll accounts. Twitter immediately suspended these accounts, deleting their data from Twitter.com and the Twitter API. A team at NBC News including Ben Popken and EJ Fox was able to reconstruct a dataset consisting of a subset of the deleted data for their investigation and were able to show how these troll accounts went on attack during key election moments. This dataset is the body of this open-sourced reconstruction. + +For more background, read the NBC news article publicizing the release: [""Twitter deleted 200,000 Russian troll tweets. Read them here.""](https://www.nbcnews.com/tech/social-media/now-available-more-200-000-deleted-russian-troll-tweets-n844731) + +### Content + +This dataset contains two CSV files. `tweets.csv` includes details on individual tweets, while `users.csv` includes details on individual accounts. + +To recreate a link to an individual tweet found in the dataset, replace `user_key` in `https://twitter.com/user_key/status/tweet_id` with the screen-name from the `user_key` field and `tweet_id` with the number in the `tweet_id` field. + +Following the links will lead to a suspended page on Twitter. But some copies of the tweets as they originally appeared, including images, can be found by entering the links on web caches like `archive.org` and `archive.is`. + +### Acknowledgements + +If you publish using the data, please credit NBC News and include a link to this page. Send questions to `ben.popken@nbcuni.com`. + +### Inspiration + +What are the characteristics of the fake tweets? Are they distinguishable from real ones? ",2291,"[{'ref': 'tweets.csv', 'creationDate': '2018-02-15T00:49:05.3967358Z', 'datasetRef': 'vikasg/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'tweets.csv', 'ownerRef': 'vikasg', 'totalBytes': 59075614, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'user_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'user_key', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'created_at', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'created_str', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'retweet_count', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'retweeted', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'favorite_count', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'tweet_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'source', 'type': 'String', 'originalType': '', 'description': 'Utility used to post the Tweet, as an HTML-formatted string. Tweets from the Twitter website have a source value of web.'}, {'order': 10, 'name': 'hashtags', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'expanded_urls', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'posted', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'mentions', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'retweeted_status_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'in_reply_to_status_id', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'users.csv', 'creationDate': '2018-02-15T00:48:10.767Z', 'datasetRef': 'vikasg/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'users.csv', 'ownerRef': 'vikasg', 'totalBytes': 94780, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'followers_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'statuses_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'time_zone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'verified', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 7, 'name': 'lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'favourites_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'friends_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'listed_count', 'type': 'Numeric', 'originalType': '', 'description': 'The number of public lists that this user is a member of. \n\n'}]}]",13184,False,False,True,8,2018-02-15T00:49:04.63Z,CC0: Public Domain,vikas,vikasg,vikasg/russian-troll-tweets,"200,000 malicious-account tweets captured by NBC","[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'international relations', 'competitionCount': 0, 'datasetCount': 40, 'description': ""You'll find a variety of datasets and kernels in this tag concerning multiple nations and their demographics, economics, and trade."", 'fullPath': 'society and social sciences > social sciences > international relations', 'isAutomatic': False, 'name': 'international relations', 'scriptCount': 3, 'totalCount': 43}, {'ref': 'russia', 'competitionCount': 0, 'datasetCount': 22, 'description': ""At 17,125,200 square kilometres, Russia is the largest country in the world by area, covering more than one-eighth of the Earth's inhabited land area, and the ninth most populous."", 'fullPath': 'geography and places > asia > russia', 'isAutomatic': False, 'name': 'russia', 'scriptCount': 3, 'totalCount': 25}]",Russian Troll Tweets,4,21993810,https://www.kaggle.com/vikasg/russian-troll-tweets,0.7352941,"[{'versionNumber': 2, 'creationDate': '2018-02-15T00:49:04.63Z', 'creatorName': 'vikas', 'creatorRef': 'russian-troll-tweets', 'versionNotes': 'Initial Upload', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-02-15T00:37:33.747Z', 'creatorName': 'vikas', 'creatorRef': 'russian-troll-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",23049,114 +94,Chris Crawford,,4,"### Context +I have been interested in using public sentiment and journalism to gather sentiment profiles on publicly traded companies. I first developed a Python package (https://github.com/dwallach1/Stocker) that scrapes the web for articles written about companies, and then noticed the abundance of overlap with Twitter. I then developed a NodeJS project that I have been running on my RaspberryPi to monitor Twitter for all tweets coming from those mentioned in the *content* section. If one of them tweeted about a company in the stocks_cleaned.csv file, then it would write the tweet to the database. Currently, the file is only from earlier today, but after about a month or two, I plan to update the tweets.csv file (hopefully closer to 50,000 entries. + +I am not quite sure how this dataset will be relevant, but I hope to use these tweets and try to generate some sense of public sentiment score. + + +### Content + +This dataset has all the publicly traded companies (tickers and company names) that were used as input to fill the tweets.csv. The influencers whose tweets were monitored were: +['MarketWatch', 'business', 'YahooFinance', 'TechCrunch', 'WSJ', 'Forbes', 'FT', 'TheEconomist', 'nytimes', 'Reuters', 'GerberKawasaki', 'jimcramer', 'TheStreet', 'TheStalwart', 'TruthGundlach', 'Carl_C_Icahn', 'ReformedBroker', 'benbernanke', 'bespokeinvest', 'BespokeCrypto', 'stlouisfed', 'federalreserve', 'GoldmanSachs', 'ianbremmer', 'MorganStanley', 'AswathDamodaran', 'mcuban', 'muddywatersre', 'StockTwits', 'SeanaNSmith' + + + +### Acknowledgements + +The data used here is gathered from a project I developed : https://github.com/dwallach1/StockerBot + +### Inspiration + +I hope to develop a financial sentiment text classifier that would be able to track Twitter's (and the entire public's) feelings about any publicly traded company (and cryptocurrency).",2008,"[{'ref': 'stockerbot-export.csv', 'creationDate': '2018-08-09T17:13:52.67Z', 'datasetRef': 'davidwallach/financial-tweets', 'description': 'This file contains 28k+ tweets about publicly traded companies (and a few cryptocurrencies) that are tagged with the company they are tweeting about and their symbol as well as more fields', 'fileType': '.csv', 'name': 'stockerbot-export.csv', 'ownerRef': 'davidwallach', 'totalBytes': 7277599, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'stocks_cleaned.csv', 'creationDate': '2018-08-09T17:13:44.043Z', 'datasetRef': 'davidwallach/financial-tweets', 'description': 'All of the stocks used by https://github.com/dwallach1/StockerBot to monitor twitter ', 'fileType': '.csv', 'name': 'stocks_cleaned.csv', 'ownerRef': 'davidwallach', 'totalBytes': 11366, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ticker', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': ' name', 'type': 'String', 'originalType': '', 'description': None}]}]",37620,False,False,True,4,2018-08-09T17:13:55.89Z,"Database: Open Database, Contents: Database Contents",David Wallach,davidwallach,davidwallach/financial-tweets,"Tweets from verified users concerning stocks traded on the NYSE, NASDAQ, & SNP","[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}]",Financial Tweets,0,2273078,https://www.kaggle.com/davidwallach/financial-tweets,0.8235294,"[{'versionNumber': 4, 'creationDate': '2018-08-09T17:13:55.89Z', 'creatorName': 'Chris Crawford', 'creatorRef': 'financial-tweets', 'versionNotes': 'Re-upload files', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-08-09T17:11:20.643Z', 'creatorName': 'Chris Crawford', 'creatorRef': 'financial-tweets', 'versionNotes': 'Re-uploaded stockerbot-export.csv ', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-07-19T03:45:36.867Z', 'creatorName': 'David Wallach', 'creatorRef': 'financial-tweets', 'versionNotes': 'Added 20k more tweets', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-07-18T19:01:36.567Z', 'creatorName': 'David Wallach', 'creatorRef': 'financial-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",18859,59 +95,wayward_artisan,,2,"### Context + +During the 2019 Australian election I noticed that almost everything I was seeing on Twitter was unusually left-wing. So I decided to scrape some data and investigate. Unfortunately my sentiment analysis has so far been too inaccurate to come to any useful conclusions. I decided to share the data so that others may be able to help with the sentiment or any other interesting analysis. + + +### Content + +Over 180,000 tweets collected using Twitter API keyword search between 10.05.2019 and 20.05.2019. +Columns are as follows: + +- **created_at**: Date and time of tweet creation +- **id**: Unique ID of the tweet +- **full_text**: Full tweet text +- **retweet_count**: Number of retweets +- **favorite_count**: Number of likes +- **user_id**: User ID of tweet creator +- **user_name**: Username of tweet creator +- **user_screen_name**: Screen name of tweet creator +- **user_description**: Description on tweet creator's profile +- **user_location**: Location given on tweet creator's profile +- **user_created_at**: Date the tweet creator joined Twitter + +The **latitude** and **longitude** of **user_location** is also available in location_geocode.csv. This information was retrieved using the Google Geocode API. + +### Acknowledgements + +Thanks to Twitter for providing the free API. + + +### Inspiration + +There are a lot of interesting things that could be investigated with this data. Primarily I was interested to do sentiment analysis, before and after the election results were known, to determine whether Twitter users are indeed a left-leaning bunch. Did the tweets become more negative as the results were known? + +Other ideas for investigation include: + +- Take into account retweets and favourites to weight overall sentiment analysis. + +- Which parts of the world are interested (ie: tweet about) the Australian elections, apart from Australia? + +- How do the users who tweet about this sort of thing tend to describe themselves? + +- Is there a correlation between when the user joined Twitter and their political views (this assumes the sentiment analysis is already working well)? + +- Predict gender from username/screen name and segment tweet count and sentiment by gender",2370,"[{'ref': 'auspol2019.csv', 'creationDate': '2019-05-21T09:41:39.1180564Z', 'datasetRef': 'taniaj/australian-election-2019-tweets', 'description': 'Over 180000 tweets collected using the Twitter API keyword search during the 2019 Australian election. The election was held on 18.05.2019 and data was collected for dates between 10.05.2019 and 20.05.2019. Keywords used include Australia (election OR vote), #auspol, #australiavotes, #ausvotes and #AustraliaDecides.', 'fileType': '.csv', 'name': 'auspol2019.csv', 'ownerRef': 'taniaj', 'totalBytes': 70831251, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'created_at', 'type': 'DateTime', 'originalType': '', 'description': 'Date on which the tweet was posted'}, {'order': 1, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': 'ID of the tweet'}, {'order': 2, 'name': 'full_text', 'type': 'String', 'originalType': '', 'description': 'Full tweet text'}, {'order': 3, 'name': 'retweet_count', 'type': 'Uuid', 'originalType': '', 'description': 'Number of retweets'}, {'order': 4, 'name': 'favorite_count', 'type': 'Uuid', 'originalType': '', 'description': 'Number of likes'}, {'order': 5, 'name': 'user_id', 'type': 'Uuid', 'originalType': '', 'description': 'User ID of user who posted the tweet'}, {'order': 6, 'name': 'user_name', 'type': 'String', 'originalType': '', 'description': 'Username of user who posted the tweet'}, {'order': 7, 'name': 'user_screen_name', 'type': 'String', 'originalType': '', 'description': 'Screen name of user who posted the tweet'}, {'order': 8, 'name': 'user_description', 'type': 'String', 'originalType': '', 'description': 'Free text description on profile of user who posted the tweet'}, {'order': 9, 'name': 'user_location', 'type': 'String', 'originalType': '', 'description': 'Free text location on profile of user who posted the tweet'}, {'order': 10, 'name': 'user_created_at', 'type': 'DateTime', 'originalType': '', 'description': 'Date of create of account of user who posted the tweet'}]}, {'ref': 'location_geocode.csv', 'creationDate': '2019-05-21T09:41:36.261Z', 'datasetRef': 'taniaj/australian-election-2019-tweets', 'description': 'Latitude and Longitude of locations that tweets come from, retrieved using the Google Geocode API.', 'fileType': '.csv', 'name': 'location_geocode.csv', 'ownerRef': 'taniaj', 'totalBytes': 411554, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'name', 'type': 'String', 'originalType': '', 'description': 'Free text description of location'}, {'order': 1, 'name': 'lat', 'type': 'Uuid', 'originalType': '', 'description': 'Latitude'}, {'order': 2, 'name': 'long', 'type': 'Uuid', 'originalType': '', 'description': 'Longitude'}]}]",199847,False,False,True,8,2019-05-21T09:41:38.763Z,CC0: Public Domain,wayward_artisan,taniaj,taniaj/australian-election-2019-tweets,"May 18th 2019, 180k+ tweets","[{'ref': 'text data', 'competitionCount': 25, 'datasetCount': 212, 'description': None, 'fullPath': 'data type > text data', 'isAutomatic': False, 'name': 'text data', 'scriptCount': 334, 'totalCount': 571}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'world', 'competitionCount': 0, 'datasetCount': 353, 'description': ""The kernels and datasets with this tag make the world go 'round."", 'fullPath': 'geography and places > world', 'isAutomatic': False, 'name': 'world', 'scriptCount': 42, 'totalCount': 395}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'australia', 'competitionCount': 0, 'datasetCount': 16, 'description': 'This tag contains information on Australia: AKA the smallest continent, the land down under, Oz, Terra Australis or Straya.', 'fullPath': 'geography and places > australia', 'isAutomatic': False, 'name': 'australia', 'scriptCount': 5, 'totalCount': 21}]",Australian Election 2019 Tweets,0,29972572,https://www.kaggle.com/taniaj/australian-election-2019-tweets,1.0,"[{'versionNumber': 2, 'creationDate': '2019-05-21T09:41:38.763Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'australian-election-2019-tweets', 'versionNotes': 'Added location geocodes', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2019-05-21T09:10:47.893Z', 'creatorName': 'wayward_artisan', 'creatorRef': 'australian-election-2019-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",12498,78 +96,ActiveGalaXy,,3,"Context +------- + +The image at the top of the page is a frame from today's (7/26/2016) Isis #TweetMovie from twitter, a ""normal"" day when two Isis operatives murdered a priest saying mass in a French church. (You can see this in the center left). A selection of data from this site is being made available here to Kaggle users. + +UPDATE: An excellent study by Audrey Alexander titled [Digital Decay?][1] is now available which traces the ""change over time among English-language Islamic State sympathizers on Twitter. + +Intent +------ + +This data set is intended to be a counterpoise to the [How Isis Uses Twitter][2] data set. That data set contains 17k tweets alleged to originate with ""100+ pro-ISIS fanboys"". This new set contains 122k tweets collected on two separate days, 7/4/2016 and 7/11/2016, which contained any of the following terms, with no further editing or selection: + + - isis + - isil + - daesh + - islamicstate + - raqqa + - Mosul + - ""islamic state"" + +This is not a perfect counterpoise as it almost surely contains a small number of pro-Isis fanboy tweets. However, unless some entity, such as Kaggle, is willing to expend significant resources on a service something like an expert level Mechanical Turk or Zooniverse, a high quality counterpoise is out of reach. + +A counterpoise provides a balance or backdrop against which to measure a primary object, in this case the original pro-Isis data. So if anyone wants to discriminate between pro-Isis tweets and other tweets concerning Isis you will need to model the original pro-Isis data or **signal** against the counterpoise which is **signal + noise**. Further background and some analysis can be found in [this forum thread][3]. + +This data comes from postmodernnews.com/token-tv.aspx which daily collects about 25MB of Isis tweets for the purposes of graphical display. PLEASE NOTE: This server is not currently active. + +Data Details +------------ + +There are several differences between the format of this data set and the pro-ISIS fanboy [dataset][4]. + 1. All the twitter t.co tags have been expanded where possible + 2. There are no ""description, location, followers, numberstatuses"" data columns. + +I have also included my version of the original pro-ISIS fanboy set. This version has all the t.co links expanded where possible. + + + [1]: https://extremism.gwu.edu/sites/extremism.gwu.edu/files/DigitalDecayFinal_0.pdf + [2]: https://www.kaggle.com/kzaman/how-isis-uses-twitter + [3]: https://www.kaggle.com/forums/f/1277/how-isis-uses-twitter/t/22165/isis-tweetmovie + [4]: https://www.kaggle.com/kzaman/how-isis-uses-twitter",1573,"[{'ref': 'AboutIsis.csv', 'creationDate': '2016-07-29T23:57:45Z', 'datasetRef': 'activegalaxy/isis-related-tweets', 'description': 'The counterpoise itself', 'fileType': '.csv', 'name': 'AboutIsis.csv', 'ownerRef': 'activegalaxy', 'totalBytes': 10186123, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'IsisFanboy.csv', 'creationDate': '2016-07-29T23:57:28Z', 'datasetRef': 'activegalaxy/isis-related-tweets', 'description': 'My updated version of the original pro-ISIS fanboy set (see above)', 'fileType': '.csv', 'name': 'IsisFanboy.csv', 'ownerRef': 'activegalaxy', 'totalBytes': 1072365, 'url': 'https://www.kaggle.com/', 'columns': []}]",79,False,False,True,24,2016-07-29T23:59:27.183Z,CC0: Public Domain,ActiveGalaXy,activegalaxy,activegalaxy/isis-related-tweets,General tweets about Isis & related words,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'crime', 'competitionCount': 1, 'datasetCount': 186, 'description': 'A crime is an unlawful act punishable by a state or other authority. Explore datasets, kernels, and competitions related to white collar crime, global terrorism, and more in this tag.', 'fullPath': 'society and social sciences > society > crime', 'isAutomatic': False, 'name': 'crime', 'scriptCount': 199, 'totalCount': 386}]",Tweets Targeting Isis,3,11258466,https://www.kaggle.com/activegalaxy/isis-related-tweets,0.875,"[{'versionNumber': 3, 'creationDate': '2016-07-29T23:59:27.183Z', 'creatorName': 'ActiveGalaXy', 'creatorRef': 'isis-related-tweets', 'versionNotes': ""At the request of Kaggle the two files have been removed from their zip container and separated so they won't fight. "", 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2016-07-29T14:24:42.663Z', 'creatorName': 'ActiveGalaXy', 'creatorRef': 'isis-related-tweets', 'versionNotes': 'This is a CSV version', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2016-07-26T19:57:29.1Z', 'creatorName': 'ActiveGalaXy', 'creatorRef': 'isis-related-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",16335,39 +97,Ben Hamner,,1,"Twitter has played an increasingly prominent role in the 2016 US Presidential Election. Debates have raged and candidates have risen and fallen based on tweets. + +This dataset provides ~3000 recent tweets from [Hillary Clinton](https://twitter.com/HillaryClinton) and [Donald Trump](https://twitter.com/realDonaldTrump), the two major-party presidential nominees. + +[![graph](https://www.kaggle.io/svf/377009/a6e6d9eeb0a7158b8f31498b1274c30b/clinton_vs_trump_retweets_and_favorites.png)](https://www.kaggle.com/benhamner/d/benhamner/clinton-trump-tweets/twitter-showdown-clinton-vs-trump)",4958,"[{'ref': 'tweets.csv', 'creationDate': '2016-09-28T00:31:03Z', 'datasetRef': 'benhamner/clinton-trump-tweets', 'description': 'Table of the ~3000 most recent tweets and associated metadata from Hillary Clinton and Donald Trump.', 'fileType': '.csv', 'name': 'tweets.csv', 'ownerRef': 'benhamner', 'totalBytes': 1028293, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': 'id'}, {'order': 1, 'name': 'handle', 'type': 'String', 'originalType': 'String', 'description': 'twitter handle name\n'}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': 'String', 'description': 'tweets'}, {'order': 3, 'name': 'is_retweet', 'type': 'Boolean', 'originalType': 'String', 'description': 'Whether the tweet was retweeted'}, {'order': 4, 'name': 'original_author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'in_reply_to_screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'in_reply_to_status_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'in_reply_to_user_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'is_quote_status', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 10, 'name': 'lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'retweet_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'favorite_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'longitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'latitude', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'place_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'place_full_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 17, 'name': 'place_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'place_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'place_country_code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'place_country', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'place_contained_within', 'type': 'String', 'originalType': '', 'description': None}, {'order': 22, 'name': 'place_attributes', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'place_bounding_box', 'type': 'String', 'originalType': '', 'description': None}, {'order': 24, 'name': 'source_url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'truncated', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 26, 'name': 'entities', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'extended_entities', 'type': 'String', 'originalType': '', 'description': None}]}]",201,False,False,True,87,2016-09-28T00:37:25.633Z,Unknown,Ben Hamner,benhamner,benhamner/clinton-trump-tweets,Tweets from the major party candidates for the 2016 US Presidential Election,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",Hillary Clinton and Donald Trump Tweets,3,1028293,https://www.kaggle.com/benhamner/clinton-trump-tweets,0.7352941,"[{'versionNumber': 1, 'creationDate': '2016-09-28T00:37:25.633Z', 'creatorName': 'Ben Hamner', 'creatorRef': 'clinton-trump-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",38748,107 +98,Kyle Pastor,,4,"### Context + +Twitter give the general public unfiltered direct access to the ideas and policies of politicians. This means that understanding the content and reach of these tweets can help us understand what connects with constituents. This dataset is meant to help with that exploration. By applying sentiment analysis (using an already trained system) we can apply sentiment context to these tweets. This will help us understand who responds to positive and negative content. Finally this analysis may help to indentify fake or hyperbole polarized Twitter users. + + +### Content + +The dataset contains two files both in .csv format. The first is a list of the political party and the representative handles, and the second are the 200 latest tweets as of May 2018 from those twitter users. + +### Acknowledgements + +I would like to thank the following website and people who helped me get started + +### Inspiration + +I was first inspired by trying to find out if the average person would be able to distinguish between political tweets of no context was given. I made a small website that you can try this on. I will use real user data to cross check and see if ML methods are actually better than the average person. + +Other ace uses are the following: +Can we use this to detect Russian troll twitter accounts? +Do people respond to negative or positive political tweets? +",913,"[{'ref': 'ExtractedTweets.csv', 'creationDate': '2018-05-27T17:20:56.9192494Z', 'datasetRef': 'kapastor/democratvsrepublicantweets', 'description': 'Extracted tweets from all of the representatives (latest 200 as of May 17th 2018)', 'fileType': '.csv', 'name': 'ExtractedTweets.csv', 'ownerRef': 'kapastor', 'totalBytes': 13676066, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Handle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Tweet', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'TwitterHandles.csv', 'creationDate': '2018-05-27T17:20:13.086Z', 'datasetRef': 'kapastor/democratvsrepublicantweets', 'description': 'Extracted list of Democrat and Republican Twitter handles and meta data', 'fileType': '.csv', 'name': 'TwitterHandles.csv', 'ownerRef': 'kapastor', 'totalBytes': 5618, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Handle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'AvatarURL', 'type': 'String', 'originalType': '', 'description': None}]}]",26920,False,False,True,8,2018-05-27T17:20:55.79Z,CC0: Public Domain,Kyle Pastor,kapastor,kapastor/democratvsrepublicantweets,200 tweets of Dems and Reps,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",Democrat Vs. Republican Tweets,1,4838286,https://www.kaggle.com/kapastor/democratvsrepublicantweets,0.8235294,"[{'versionNumber': 4, 'creationDate': '2018-05-27T17:20:55.79Z', 'creatorName': 'Kyle Pastor', 'creatorRef': 'democratvsrepublicantweets', 'versionNotes': 'Added Update to twitter handles using Kernal', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-05-18T12:47:52.713Z', 'creatorName': 'Kyle Pastor', 'creatorRef': 'democratvsrepublicantweets', 'versionNotes': 'Added Headers and renamed some files', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-05-17T16:29:44.233Z', 'creatorName': 'Kyle Pastor', 'creatorRef': 'democratvsrepublicantweets', 'versionNotes': 'Twitter Handles', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-05-16T18:29:00.063Z', 'creatorName': 'Kyle Pastor', 'creatorRef': 'democratvsrepublicantweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8146,49 +99,LiamLarsen,,2,"# Context +Unlike [This][1] dataset, (which proved to be unusable). And [This one][2] which was filled with unnecessary columns; This Donald trump dataset has the cleanest usability and consists of over 7,000 tweets, no nonsense + +**You may need to use a decoder other than UTF-8 if you want to see the emojis** +# Content + +**Data consists of:** + + - + + -Date + + -Time + + -Tweet_Text + + -Type + + -Media_Type + + -Hashtags + + -Tweet_Id + + -Tweet_Url + + -twt_favourites_IS_THIS_LIKE_QUESTION_MARK + + -Retweets + +I scrapped this from someone on reddit +=== + [1]: https://www.kaggle.com/austinvernsonger/donaldtrumptweets + [2]: https://www.kaggle.com/benhamner/clinton-trump-tweets",2169,"[{'ref': 'Donald-Tweets!.csv', 'creationDate': '2017-04-16T04:24:12Z', 'datasetRef': 'kingburrito666/better-donald-trump-tweets', 'description': 'tweets', 'fileType': '.csv', 'name': 'Donald-Tweets!.csv', 'ownerRef': 'kingburrito666', 'totalBytes': 583499, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Tweet_Text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Media_Type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Hashtags', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Tweet_Id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Tweet_Url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'twt_favourites_IS_THIS_LIKE_QUESTION_MARK', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Retweets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': '', 'type': 'String', 'originalType': '', 'description': None}]}]",1121,False,False,True,30,2017-04-16T04:24:29.33Z,Unknown,LiamLarsen,kingburrito666,kingburrito666/better-donald-trump-tweets,A collection of all of Donald Trump tweets--better than its predecessors,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",(Better) - Donald Trump Tweets!,0,583499,https://www.kaggle.com/kingburrito666/better-donald-trump-tweets,0.7058824,"[{'versionNumber': 2, 'creationDate': '2017-04-16T04:24:29.33Z', 'creatorName': 'LiamLarsen', 'creatorRef': 'better-donald-trump-tweets', 'versionNotes': 'Fixed UTF-8 Encoding!', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-04-16T02:26:24.163Z', 'creatorName': 'LiamLarsen', 'creatorRef': 'better-donald-trump-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",19000,52 +100,Ed King,,1,"Tweets scraped by [Chris Albon](https://github.com/chrisalbon) on the day of the 2016 United States elections. + +Chris Albon's site only posted tweet IDs, rather than full tweets. We're in the process of scraping the full information, but due to API limiting this is taking a very long time. Version 1 of this dataset contains just under 400k tweets, about 6% of the 6.5 million originally posted. + +This dataset will be updated as more tweets become available. + +## Acknowledgements + +[The original data](https://github.com/chrisalbon/election_day_2016_twitter) was scraped by [Chris Albon](https://github.com/chrisalbon), and tweet IDs were posted to his Github page. + +## The Data + +Since I (Ed King) used my own Twitter API key to scrape these tweets, this dataset contains a couple of fields with information on whether I have personally interacted with particular users or tweets. Since Kaggle encouraged me to not remove any data from a dataset, I'm leaving it in; feel free to build a classifier of the types of users I follow. + +The dataset consists of the following fields: + +- **text**: text of the tweet +- **created_at**: date and time of the tweet +- **geo**: a JSON object containing coordinates [latitude, longitude] and a `type' +- **lang**: Twitter's guess as to the language of the tweet +- **place**: a Place object from the Twitter API +- **coordinates**: a JSON object containing coordinates [longitude, latitude] and a `type'; **note** that coordinates are reversed from the **geo** field +- **user.favourites_count**: number of tweets the user has favorited +- **user.statuses_count**: number of statuses the user has posted +- **user.description**: the text of the user's profile description +- **user.location**: text of the user's profile location +- **user.id**: unique id for the user +- **user.created_at**: when the user created their account +- **user.verified**: bool; is user verified? +- **user.following**: bool; am I (Ed King) following this user? +- **user.url**: the URL that the user listed in their profile (not necessarily a link to their Twitter profile) +- **user.listed_count**: number of lists this user is on (?) +- **user.followers_count**: number of accounts that follow this user +- **user.default_profile_image**: bool; does the user use the default profile pic? +- **user.utc_offset**: positive or negative distance from UTC, in seconds +- **user.friends_count**: number of accounts this user follows +- **user.default_profile**: bool; does the user use the default profile? +- **user.name**: user's profile name +- **user.lang**: user's default language +- **user.screen_name**: user's account name +- **user.geo_enabled**: bool; does user have geo enabled? +- **user.profile_background_color**: user's profile background color, as hex in format ""RRGGBB"" (no '#') +- **user.profile_image_url**: a link to the user's profile pic +- **user.time_zone**: full name of the user's time zone +- **id**: unique tweet ID +- **favorite_count**: number of times the tweet has been favorited +- **retweeted**: is this a retweet? +- **source**: if a link, where is it from (e.g., ""Instagram"") +- **favorited**: have I (Ed King) favorited this tweet? +- **retweet_count**: number of times this tweet has been retweeted + + +I've also included a file called ```bad_tweets.csv``` , which includes all of the tweet IDs that could not be scraped, along with the error message I received while trying to scrape them. This typically happens because the tweet has been deleted, the user has deleted their account (or been banned), or the user has made their tweets private. The fields in this file are **id** and **exception.response**.",1322,"[{'ref': 'bad_tweets_partial.csv', 'creationDate': '2016-11-26T22:50:32Z', 'datasetRef': 'kinguistics/election-day-tweets', 'description': 'Tweets that are no longer available\n\n- **id**: unique tweet id\n- **exception.response**: what went wrong while trying to scrape this tweet', 'fileType': '.csv', 'name': 'bad_tweets_partial.csv', 'ownerRef': 'kinguistics', 'totalBytes': 374925, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'election_day_tweets.csv', 'creationDate': '2016-11-26T22:55:34Z', 'datasetRef': 'kinguistics/election-day-tweets', 'description': '- **text**: text of the tweet\n- **created_at**: date and time of the tweet\n- **geo**: a JSON object containing coordinates [latitude, longitude] and a `type\'\n- **lang**: Twitter\'s guess as to the language of the tweet\n- **place**: a Place object from the Twitter API\n- **coordinates**: a JSON object containing coordinates [longitude, latitude] and a `type\'; **note** that coordinates are reversed from the **geo** field\n- **user.favourites_count**: number of tweets the user has favorited\n- **user.statuses_count**: number of statuses the user has posted\n- **user.description**: the text of the user\'s profile description\n- **user.location**: text of the user\'s profile location\n- **user.id**: unique id for the user\n- **user.created_at**: when the user created their account\n- **user.verified**: bool; is user verified?\n- **user.following**: bool; am I (Ed King) following this user?\n- **user.url**: the URL that the user listed in their profile (not necessarily a link to their Twitter profile)\n- **user.listed_count**: number of lists this user is on (?)\n- **user.followers_count**: number of accounts that follow this user\n- **user.default_profile_image**: bool; does the user use the default profile pic?\n- **user.utc_offset**: positive or negative distance from UTC, in seconds\n- **user.friends_count**: number of accounts this user follows\n- **user.default_profile**: bool; does the user use the default profile?\n- **user.name**: user\'s profile name\n- **user.lang**: user\'s default language\n- **user.screen_name**: user\'s account name\n- **user.geo_enabled**: bool; does user have geo enabled?\n- **user.profile_background_color**: user\'s profile background color, as hex in format ""RRGGBB"" (no \'#\')\n- **user.profile_image_url**: a link to the user\'s profile pic\n- **user.time_zone**: full name of the user\'s time zone\n- **id**: unique tweet ID\n- **favorite_count**: number of times the tweet has been favorited\n- **retweeted**: is this a retweet?\n- **source**: if a link, where is it from (e.g., ""Instagram"")\n- **favorited**: have I (Ed King) favorited this tweet?\n- **retweet_count**: number of times this tweet has been retweeted\n', 'fileType': '.csv', 'name': 'election_day_tweets.csv', 'ownerRef': 'kinguistics', 'totalBytes': 87627207, 'url': 'https://www.kaggle.com/', 'columns': []}]",451,False,False,True,6,2016-11-26T23:01:06.707Z,CC0: Public Domain,Ed King,kinguistics,kinguistics/election-day-tweets,"Tweets scraped from Twitter on November 8, 2016","[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",Election Day Tweets,0,88002110,https://www.kaggle.com/kinguistics/election-day-tweets,0.875,"[{'versionNumber': 1, 'creationDate': '2016-11-26T23:01:06.707Z', 'creatorName': 'Ed King', 'creatorRef': 'election-day-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8899,24 +101,Myles O'Neill,,2,"# 3 million Russian troll tweets + +This data was used in the FiveThirtyEight story [Why We’re Sharing 3 Million Russian Troll Tweets](https://fivethirtyeight.com/features/why-were-sharing-3-million-russian-troll-tweets/). + +This directory contains data on nearly 3 million tweets sent from Twitter handles connected to the Internet Research Agency, a Russian ""troll factory"" and a defendant in [an indictment](https://www.justice.gov/file/1035477/download) filed by the Justice Department in February 2018, as part of special counsel Robert Mueller's Russia investigation. The tweets in this database were sent between February 2012 and May 2018, with the vast majority posted from 2015 through 2017. + +FiveThirtyEight obtained the data from Clemson University researchers [Darren Linvill](https://www.clemson.edu/cbshs/faculty-staff/profiles/darrenl), an associate professor of communication, and [Patrick Warren](http://pwarren.people.clemson.edu/), an associate professor of economics, on July 25, 2018. They gathered the data using custom searches on a tool called Social Studio, owned by Salesforce and contracted for use by Clemson's [Social Media Listening Center](https://www.clemson.edu/cbshs/centers-institutes/smlc/). + +The basis for the Twitter handles included in this data are the [November 2017](https://democrats-intelligence.house.gov/uploadedfiles/exhibit_b.pdf) and [June 2018](https://democrats-intelligence.house.gov/uploadedfiles/ira_handles_june_2018.pdf) lists of Internet Research Agency-connected handles that Twitter [provided](https://democrats-intelligence.house.gov/news/documentsingle.aspx?DocumentID=396) to Congress. This data set contains every tweet sent from each of the 2,752 handles on the November 2017 list since May 10, 2015. For the 946 handles newly added on the June 2018 list, this data contains every tweet since June 19, 2015. (For certain handles, the data extends even earlier than these ranges. Some of the listed handles did not tweet during these ranges.) The researchers believe that this includes the overwhelming majority of these handles’ activity. The researchers also removed 19 handles that remained on the June 2018 list but that they deemed very unlikely to be IRA trolls. + +In total, the nine CSV files include 2,973,371 tweets from 2,848 Twitter handles. Also, as always, caveat emptor -- in this case, tweet-reader beware: In addition to their own content, some of the tweets contain active links, which may lead to adult content or worse. + +The Clemson researchers used this data in a working paper, [Troll Factories: The Internet Research Agency and State-Sponsored Agenda Building](http://pwarren.people.clemson.edu/Linvill_Warren_TrollFactory.pdf), which is currently under review at an academic journal. The authors’ analysis in this paper was done on the data file provided here, limiting the date window to June 19, 2015, to Dec. 31, 2017. + +The files have the following columns: + + Header | Definition + ---|--------- + `external_author_id` | An author account ID from Twitter + `author` | The handle sending the tweet + `content` | The text of the tweet + `region` | A region classification, as [determined by Social Studio](https://help.salesforce.com/articleView? id=000199367&type=1) + `language` | The language of the tweet + `publish_date` | The date and time the tweet was sent + `harvested_date` | The date and time the tweet was collected by Social Studio + `following` | The number of accounts the handle was following at the time of the tweet + `followers` | The number of followers the handle had at the time of the tweet + `updates` | The number of “update actions” on the account that authored the tweet, including tweets, retweets and likes + `post_type` | Indicates if the tweet was a retweet or a quote-tweet + `account_type` | Specific account theme, as coded by Linvill and Warren + `retweet` | A binary indicator of whether or not the tweet is a retweet + `account_category` | General account theme, as coded by Linvill and Warren + `new_june_2018` | A binary indicator of whether the handle was newly listed in June 2018 + +If you use this data and find anything interesting, please let us know. Send your projects to oliver.roeder@fivethirtyeight.com or [@ollie](https://twitter.com/ollie). + +The Clemson researchers wish to acknowledge the assistance of the Clemson University Social Media Listening Center and Brandon Boatwright of the University of Tennessee, Knoxville.",938,"[{'ref': 'IRAhandle_tweets_1.csv', 'creationDate': '2018-08-01T08:40:43.262Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_1.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 87874842, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_2.csv', 'creationDate': '2018-08-01T08:40:46.26Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_2.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 89384804, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_3.csv', 'creationDate': '2018-08-01T08:40:44.123Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_3.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 87696348, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_4.csv', 'creationDate': '2018-08-01T08:40:44.576Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_4.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 87771344, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_5.csv', 'creationDate': '2018-08-01T08:39:45.16Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_5.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 79412644, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_6.csv', 'creationDate': '2018-08-01T08:39:31.551Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_6.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 77962778, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_7.csv', 'creationDate': '2018-08-01T08:40:12.567Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_7.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 82408170, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_8.csv', 'creationDate': '2018-08-01T08:40:35.353Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_8.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 85947534, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'IRAhandle_tweets_9.csv', 'creationDate': '2018-08-01T08:26:36.241Z', 'datasetRef': 'fivethirtyeight/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'IRAhandle_tweets_9.csv', 'ownerRef': 'fivethirtyeight', 'totalBytes': 9444208, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'external_author_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'region', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'language', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'harvested_date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'following', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'followers', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'updates', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'post_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'account_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'new_june_2018', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 13, 'name': 'retweet', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'account_category', 'type': 'String', 'originalType': '', 'description': None}]}]",39964,False,False,True,5,2018-08-01T09:04:25.733Z,CC0: Public Domain,FiveThirtyEight,fivethirtyeight,fivethirtyeight/russian-troll-tweets,3 million tweets from accounts associated with the 'Internet Research Agency',"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'international relations', 'competitionCount': 0, 'datasetCount': 40, 'description': ""You'll find a variety of datasets and kernels in this tag concerning multiple nations and their demographics, economics, and trade."", 'fullPath': 'society and social sciences > social sciences > international relations', 'isAutomatic': False, 'name': 'international relations', 'scriptCount': 3, 'totalCount': 43}, {'ref': 'russia', 'competitionCount': 0, 'datasetCount': 22, 'description': ""At 17,125,200 square kilometres, Russia is the largest country in the world by area, covering more than one-eighth of the Earth's inhabited land area, and the ninth most populous."", 'fullPath': 'geography and places > asia > russia', 'isAutomatic': False, 'name': 'russia', 'scriptCount': 3, 'totalCount': 25}]",Russian Troll Tweets,2,183447803,https://www.kaggle.com/fivethirtyeight/russian-troll-tweets,0.7058824,"[{'versionNumber': 2, 'creationDate': '2018-08-01T09:04:25.733Z', 'creatorName': ""Myles O'Neill"", 'creatorRef': 'russian-troll-tweets', 'versionNotes': 'removed parent zip', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-08-01T08:12:08.563Z', 'creatorName': ""Myles O'Neill"", 'creatorRef': 'russian-troll-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8375,45 +102,DhruvMangtani,,1,"# Context + +This dataset contains the metadata of over 50,000 tweets from Christmas Eve and Christmas. We are hoping the data science and research community can use this to develop new and informative conclusions about this holiday season. + + +# Content + +We acquired this data through a web crawler written in Java. The first field is the id of the tweet, and the second is the HTML metadata. We recommend using BeautifulSoup or another library to parse this data and extract information from each tweet. + + +# Inspiration + +We would especially like to see research on the use of emojis in tweets, the type of sentiment there is on Christmas (Maybe determine how grateful each country is), or some kind of demographic on the age or nationality of active Twitter users during Christmas.",531,"[{'ref': 'HolidayTweets.csv', 'creationDate': '2016-12-25T18:54:55Z', 'datasetRef': 'dhruvm/christmastwitterdata', 'description': '50,000 Christmas tweets from December 24 and 25. Use BeautifulSoup or another library to parse the HTML.', 'fileType': '.csv', 'name': 'HolidayTweets.csv', 'ownerRef': 'dhruvm', 'totalBytes': 7189259, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': ' Metadata', 'type': 'String', 'originalType': '', 'description': None}]}]",591,False,False,True,4,2016-12-25T18:58:34.293Z,"Database: Open Database, Contents: Database Contents",DhruvMangtani,dhruvm,dhruvm/christmastwitterdata,"50,000 scraped tweet metadata from this 2k16 Christmas","[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'faith and traditions', 'competitionCount': 0, 'datasetCount': 14, 'description': ""Various versions of religious texts and religion-related datsets. There's even a dataset of Christmas tweets."", 'fullPath': 'religion and belief systems > belief systems > faith and traditions', 'isAutomatic': False, 'name': 'faith and traditions', 'scriptCount': 0, 'totalCount': 14}]",Christmas Tweets,1,7189259,https://www.kaggle.com/dhruvm/christmastwitterdata,0.8235294,"[{'versionNumber': 1, 'creationDate': '2016-12-25T18:58:34.293Z', 'creatorName': 'DhruvMangtani', 'creatorRef': 'christmastwitterdata', 'versionNotes': 'Initial release', 'status': 'Ready'}]",7972,15 +103,Rob Harrand,,1,"# Context + +It's possible, using R (and no doubt Python), to 'listen' to Twitter and capture tweets that match a certain description. I decided to test this out by grabbing tweets with the text 'good morning' in them over a 24 hours period, to see if you could see the world waking up from the location information and time-stamp. The main R package used was [streamR][1] + + +# Content + +The tweets have been tidied up quite a bit. First, I've removed re-tweets, second, I've removed duplicates (not sure why Twitter gave me them in the first place), third, I've made sure the tweet contained the words 'good morning' (some tweets were returned that didn't have the text in for some reason) and fourth, I've removed all the tweets that didn't have a longitude and latitude included. This latter step removed the vast majority. What's left are various aspects of just under 5000 tweets. The columns are, + +- text +- retweet_count +- favorited +- truncated +- id_str +- in_reply_to_screen_name +- source +- retweeted +- created_at +- in_reply_to_status_id_str +- in_reply_to_user_id_str +- lang +- listed_count +- verified +- location +- user_id_str +- description +- geo_enabled +- user_created_at +- statuses_count +- followers_count +- favourites_count +- protected +- user_url +- name +- time_zone +- user_lang +- utc_offset +- friends_count +- screen_name +- country_code +- country +- place_type +- full_name +- place_name +- place_id +- place_lat +- place_lon +- lat +- lon +- expanded_url +- url + + +# Acknowledgements + +I used a few blog posts to get the code up and running, including [this one][2] + + +# Code + +The R code I used to get the tweets is as follows (note, I haven't includes the code to set up the connection to Twitter. See the streamR PFD and the link above for that. You need a Twitter account), + + + i = 1 + + while (i <= 280) { + + filterStream(""tw_gm.json"", timeout = 300, oauth = my_oauth, track = 'good morning', language = 'en') + tweets_gm = parseTweets(""tw_gm.json"") + + ex = grepl('RT', tweets_gm$text, ignore.case = FALSE) #Remove the RTs + tweets_gm = tweets_gm[!ex,] + + ex = grepl('good morning', tweets_gm$text, ignore.case = TRUE) #Remove anything without good morning in the main tweet text + tweets_gm = tweets_gm[ex,] + + ex = is.na(tweets_gm$place_lat) #Remove any with missing place_latitude information + tweets_gm = tweets_gm[!ex,] + + tweets.all = rbind(tweets.all, tweets_gm) #Add to the collection + + i=i+1 + + Sys.sleep(5) + + } + + + [1]: https://cran.r-project.org/web/packages/streamR/streamR.pdf + [2]: http://politicaldatascience.blogspot.co.uk/2015/12/rtutorial-using-r-to-harvest-twitter.html",590,"[{'ref': 'tweets_all.csv', 'creationDate': '2016-12-09T16:22:54Z', 'datasetRef': 'tentotheminus9/good-morning-tweets', 'description': 'Good morning Tweets', 'fileType': '.csv', 'name': 'tweets_all.csv', 'ownerRef': 'tentotheminus9', 'totalBytes': 978617, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'retweet_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'favorited', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 4, 'name': 'truncated', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 5, 'name': 'id_str', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'in_reply_to_screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'source', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'retweeted', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 9, 'name': 'created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'in_reply_to_status_id_str', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'in_reply_to_user_id_str', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'listed_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 14, 'name': 'verified', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 15, 'name': 'location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 16, 'name': 'user_id_str', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 17, 'name': 'description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 18, 'name': 'geo_enabled', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 19, 'name': 'user_created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'statuses_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 21, 'name': 'followers_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 22, 'name': 'favourites_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 23, 'name': 'protected', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 24, 'name': 'user_url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 25, 'name': 'name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 26, 'name': 'time_zone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 27, 'name': 'user_lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'utc_offset', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 29, 'name': 'friends_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 30, 'name': 'screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 31, 'name': 'country_code', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'country', 'type': 'String', 'originalType': '', 'description': None}, {'order': 33, 'name': 'place_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 34, 'name': 'full_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'place_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'place_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 37, 'name': 'place_lat', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 38, 'name': 'place_lon', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 39, 'name': 'lat', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 40, 'name': 'lon', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 41, 'name': 'expanded_url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 42, 'name': 'url', 'type': 'String', 'originalType': '', 'description': None}]}]",516,False,False,True,10,2016-12-09T16:24:24.507Z,Unknown,Rob Harrand,tentotheminus9,tentotheminus9/good-morning-tweets,Tweets captured over ~24 hours with the text 'good morning' in them,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'sociology', 'competitionCount': 0, 'datasetCount': 34, 'description': 'Sociology is the study of society, including patterns of social relationships, and culture. Why are there so many people in the gym right now? What do young people do with their time? What do people tweet about in the morning?', 'fullPath': 'society and social sciences > social sciences > sociology', 'isAutomatic': False, 'name': 'sociology', 'scriptCount': 6, 'totalCount': 40}]",Good Morning Tweets,0,978617,https://www.kaggle.com/tentotheminus9/good-morning-tweets,0.7058824,"[{'versionNumber': 1, 'creationDate': '2016-12-09T16:24:24.507Z', 'creatorName': 'Rob Harrand', 'creatorRef': 'good-morning-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",5752,15 +104,Kaan Ulgen,,1,"### Context + +[Elon Musk](https://en.wikipedia.org/wiki/Elon_Musk) is an American business magnate. He was one of the founders of PayPal in the past, and the founder and/or cofounder and/or CEO of SpaceX, Tesla, SolarCity, OpenAI, Neuralink, and The Boring Company in the present. He is known as much for his extremely forward-thinking ideas and huge media presence as he is for his extremely business savvy. + +Musk is famously active on Twitter. This dataset contains all tweets made by [@elonmusk](https://twitter.com/elonmusk), his official Twitter handle, between November 16, 2012 and September 29, 2017. + +### Content + +This dataset includes the body of the tweet and the time it was made, as well as who it was re-tweeted from (if it is a retweet). + +### Inspiration + +* Can you figure out Elon Musk's opinions on various things by studying his Twitter statements? +* How Elon Musk's post rate increased, decreased, or stayed about the same over time? ",898,"[{'ref': 'data_elonmusk.csv', 'creationDate': '2017-10-12T10:35:55Z', 'datasetRef': 'kulgen/elon-musks-tweets', 'description': '', 'fileType': '.csv', 'name': 'data_elonmusk.csv', 'ownerRef': 'kulgen', 'totalBytes': 452905, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'row ID', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Tweet', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Retweet from', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'User', 'type': 'String', 'originalType': '', 'description': None}]}]",2931,False,False,True,7,2017-10-12T10:41:47.637Z,CC0: Public Domain,Kaan Ulgen,kulgen,kulgen/elon-musks-tweets,Tweets by @elonmusk from 2012 to 2017,[],Elon Musk's Tweets,1,171605,https://www.kaggle.com/kulgen/elon-musks-tweets,0.5882353,"[{'versionNumber': 1, 'creationDate': '2017-10-12T10:41:47.637Z', 'creatorName': 'Kaan Ulgen', 'creatorRef': 'elon-musks-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",6718,27 +105,Elias Dabbas,,3,"### Context +Nike just announced its partnership with Colin Kaepernick to be the face of the 30th anniversary of its **JustDoIt** campaign. +They used the slogan ""Believe in something, even if it means sacrificing everything."" +Kaepernick had made a controversial decision not to stand up during the national anthem, as a protest to police brutality, a while back. +This has stirred a heated debate, and became a big national issue especially when [Donald Trump commented on it](https://www.youtube.com/watch?v=oY3hpZVZ7pk). + + +### Content + +This dataset contains 5,000 tweets that contain the hashtag #JustDoIt. +All tweets happened on September 7, 2018, which is days after Nike made its announcement to endorse Kaepernick. + +#### Some of the top entities of those tweets: +### #JustDoIt #Nike #ColinKaepernick #TakeaKnee +### 😂 🤣 ✔ 🔥 ❤ 🏈 💯 💙 🇺🇸 +### @Nike @Kaepernick7 @realDonaldTrump + + + +### Acknowledgements +Python, Twitter, twython, pandas, matplotlib do the heavy lifting in generating the data and exploring it. + +### Inspiration +I'm an online marketing person. Love words, love numbers. Can't help it! +I think it's very interesting to see how these issues unfold, and how people respond to them. Maybe you can uncover some hidden insights or patterns. +I'm also trying to show how you can [use the `extract_` functions from my `advertools` package](https://www.kaggle.com/eliasdabbas/extract-entities-from-social-media-posts). +",944,"[{'ref': 'import_tweets.py', 'creationDate': '2018-09-08T16:32:37.9025598Z', 'datasetRef': 'eliasdabbas/5000-justdoit-tweets-dataset', 'description': 'Python script to import the data. \nRetweets were filtered to focus more active content.\nYou can modify the query in the script for other options if you want to recreate the dataset.\nColumns are retained as is, though many might not be useful, but who knows what you might think of! \nColumn names were appended with either `tweet_` or `user_` to indicate whether the column data pertains to the tweet or the user who tweeted it. ', 'fileType': '.py', 'name': 'import_tweets.py', 'ownerRef': 'eliasdabbas', 'totalBytes': 1544, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'justdoit_tweets_2018_09_07_2.csv', 'creationDate': '2018-09-08T16:32:37.5587751Z', 'datasetRef': 'eliasdabbas/5000-justdoit-tweets-dataset', 'description': ""Tweets including the hashtag #JustDoIt after Nike's announcement to endorse Colin Kaepernick on its 30th anniversary of its JustDoIt campaign. \nSeptember 7, 2018.\n\nAll columns related to the tweets start with `tweet_` and all columns related to the user who tweeted the tweet start with `user_`."", 'fileType': '.csv', 'name': 'justdoit_tweets_2018_09_07_2.csv', 'ownerRef': 'eliasdabbas', 'totalBytes': 21339798, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'tweet_contributors', 'type': None, 'originalType': '', 'description': None}, {'order': 1, 'name': 'tweet_coordinates', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tweet_created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'tweet_display_text_range', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'tweet_entities', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'tweet_extended_entities', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'tweet_favorite_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'tweet_favorited', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 8, 'name': 'tweet_full_text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'tweet_geo', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'tweet_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'tweet_id_str', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 12, 'name': 'tweet_in_reply_to_screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'tweet_in_reply_to_status_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 14, 'name': 'tweet_in_reply_to_status_id_str', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 15, 'name': 'tweet_in_reply_to_user_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 16, 'name': 'tweet_in_reply_to_user_id_str', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 17, 'name': 'tweet_is_quote_status', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 18, 'name': 'tweet_lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 19, 'name': 'tweet_metadata', 'type': 'String', 'originalType': '', 'description': None}, {'order': 20, 'name': 'tweet_place', 'type': 'String', 'originalType': '', 'description': None}, {'order': 21, 'name': 'tweet_possibly_sensitive', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 22, 'name': 'tweet_quoted_status', 'type': 'String', 'originalType': '', 'description': None}, {'order': 23, 'name': 'tweet_quoted_status_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 24, 'name': 'tweet_quoted_status_id_str', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 25, 'name': 'tweet_retweet_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 26, 'name': 'tweet_retweeted', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 27, 'name': 'tweet_source', 'type': 'String', 'originalType': '', 'description': None}, {'order': 28, 'name': 'tweet_truncated', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 29, 'name': 'tweet_user', 'type': 'String', 'originalType': '', 'description': None}, {'order': 30, 'name': 'user_contributors_enabled', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 31, 'name': 'user_created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 32, 'name': 'user_default_profile', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 33, 'name': 'user_default_profile_image', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 34, 'name': 'user_description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 35, 'name': 'user_entities', 'type': 'String', 'originalType': '', 'description': None}, {'order': 36, 'name': 'user_favourites_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 37, 'name': 'user_follow_request_sent', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 38, 'name': 'user_followers_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 39, 'name': 'user_following', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 40, 'name': 'user_friends_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 41, 'name': 'user_geo_enabled', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 42, 'name': 'user_has_extended_profile', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 43, 'name': 'user_id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 44, 'name': 'user_id_str', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 45, 'name': 'user_is_translation_enabled', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 46, 'name': 'user_is_translator', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 47, 'name': 'user_lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 48, 'name': 'user_listed_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 49, 'name': 'user_location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 50, 'name': 'user_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 51, 'name': 'user_notifications', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 52, 'name': 'user_profile_background_color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 53, 'name': 'user_profile_background_image_url', 'type': None, 'originalType': '', 'description': None}, {'order': 54, 'name': 'user_profile_background_image_url_https', 'type': None, 'originalType': '', 'description': None}, {'order': 55, 'name': 'user_profile_background_tile', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 56, 'name': 'user_profile_banner_url', 'type': None, 'originalType': '', 'description': None}, {'order': 57, 'name': 'user_profile_image_url', 'type': None, 'originalType': '', 'description': None}, {'order': 58, 'name': 'user_profile_image_url_https', 'type': None, 'originalType': '', 'description': None}, {'order': 59, 'name': 'user_profile_link_color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 60, 'name': 'user_profile_sidebar_border_color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 61, 'name': 'user_profile_sidebar_fill_color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 62, 'name': 'user_profile_text_color', 'type': 'String', 'originalType': '', 'description': None}, {'order': 63, 'name': 'user_profile_use_background_image', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 64, 'name': 'user_protected', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 65, 'name': 'user_screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 66, 'name': 'user_statuses_count', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 67, 'name': 'user_time_zone', 'type': None, 'originalType': '', 'description': None}, {'order': 68, 'name': 'user_translator_type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 69, 'name': 'user_url', 'type': None, 'originalType': '', 'description': None}, {'order': 70, 'name': 'user_utc_offset', 'type': None, 'originalType': '', 'description': None}, {'order': 71, 'name': 'user_verified', 'type': 'Boolean', 'originalType': '', 'description': None}]}]",50792,False,False,True,6,2018-09-08T16:32:37.09Z,CC0: Public Domain,Elias Dabbas,eliasdabbas,eliasdabbas/5000-justdoit-tweets-dataset,People reacting to Nike's endorsement of Colin Kaepernick,"[{'ref': 'text data', 'competitionCount': 25, 'datasetCount': 212, 'description': None, 'fullPath': 'data type > text data', 'isAutomatic': False, 'name': 'text data', 'scriptCount': 334, 'totalCount': 571}, {'ref': 'text mining', 'competitionCount': 0, 'datasetCount': 82, 'description': None, 'fullPath': 'analysis > text mining', 'isAutomatic': False, 'name': 'text mining', 'scriptCount': 286, 'totalCount': 368}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'marketing', 'competitionCount': 4, 'datasetCount': 24, 'description': 'Marketing is the activity of connecting consumers to products and services. Find datasets, kernels, and competitions related to marketing in this tag.', 'fullPath': 'technology and applied sciences > marketing', 'isAutomatic': False, 'name': 'marketing', 'scriptCount': 19, 'totalCount': 47}]","5,000 #JustDoIt! Tweets Dataset",1,3256985,https://www.kaggle.com/eliasdabbas/5000-justdoit-tweets-dataset,0.9411765,"[{'versionNumber': 3, 'creationDate': '2018-09-08T16:32:37.09Z', 'creatorName': 'Elias Dabbas', 'creatorRef': '5000-justdoit-tweets-dataset', 'versionNotes': 'Remove wrong version', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-09-08T16:29:09.287Z', 'creatorName': 'Elias Dabbas', 'creatorRef': '5000-justdoit-tweets-dataset', 'versionNotes': 'Removed erroneous data', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-09-08T05:54:53.033Z', 'creatorName': 'Elias Dabbas', 'creatorRef': '5000-justdoit-tweets-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",9905,18 +106,Rituparna,,4,"**Context:** +------------ +The FIFA World Cup (often simply called the World Cup ),  being the most prestigious association football tournament, as well as the most widely viewed and followed sporting event in the world, was one of the Top Trending topics frequently on Twitter while ongoing. 

+This dataset contains a random collection of 530k tweets starting from the Round of 16 till the World Cup Final that took place on 15 July, 2018 & was won by France
+A preliminary analysis from the data (till the Round of 16) is available at:
+[https://medium.com/@ritu_rg/nlp-text-visualization-twitter-sentiment-analysis-in-r-5ac22c778448][1] + + +**Content:** +------------ +**Data Collection:**
+The dataset was created using the Tweepy API, by streaming tweets from world-wide football fans before, during or after the matches.
+Tweepy is a Python API for accessing the Twitter API, that provides an easy-to-use interface for streaming real-time data from Twitter. More information related to this API can be found at: http://tweepy.readthedocs.io/en/v3.5.0/

+ +**Data Pre-processing:**
+The dataset includes English language tweets containing any references to FIFA or the World Cup. The collected tweets have been pre-processed to facilitate analysis , while trying to ensure that any information from the original tweets is not lost. 
+- The original tweet has been stored in the column ""Orig_tweet"". 
+- As part of pre-processing, using the ""BeautifulSoup"" & ""regex"" libraries in Python, the tweets have been cleaned off any nuances as required for natural language processing, such as website names, hashtags, user mentions, special characters, RTs, tabs, heading/trailing/multiple spaces, among others.
+- Words containing extensions such as n't 'll 're 've have been replaced with their proper English language counterparts. Duplicate tweets have been removed from the dataset.
+- The original Hashtags & User Mentions extracted during the above step have also been stored in separate columns.

+ +**Data Storage:**
+The collected tweets have been consolidated into a single dataset & shared as a Comma Separated Values file ""FIFA.csv"".
+Each tweet is uniquely identifiable by its ID, & characterized by the following attributes, per availability:
+- ""Lang"" - Language of the tweet
+- ""Date"" - When it was tweeted
+- ""Source"" - The device/medium where it was tweeted from
+- ""len"" - The length of the tweet
+- ""Orig_Tweet"" - The tweet in its original form
+- ""Tweet"" - The updated tweet after pre-processing
+- ""Likes"" - The number of likes received by the tweet (till the time the extraction was done)
+- ""RTs"" - The number of times the tweet was shared
+- ""Hashtags"" - The Hashtags found in the original tweet
+- ""UserMentionNames"" & ""UserMentionID"" -  Extracted from the original tweet

+ +It also includes the following attributes about the person that the tweet is from:
+- ""Name"" & ""Place"" of the user
+- ""Followers"" - The number of followers that the user account has
+- ""Friends"" - The number of friends the user account has
+ + +**Acknowledgements:**
+----------------- +The following resources have helped me through using the Tweepy API:
+[http://tweepy.readthedocs.io/en/v3.5.0/auth_tutorial.html][2]
+[https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets][3]
+[https://www.safaribooksonline.com/library/view/mining-the-social/9781449368180/ch01.html][4]
+ + + +**Inspiration:**
+------------ +This project gave me a fascinating look into the conversations & sentiments of people from all over the world, who were following this prestigious football tournament, while also giving me the opportunity to explore some of the streaming, natural language processing & visualizations techniques in both R & Python

+ + + [1]: https://medium.com/@ritu_rg/nlp-text-visualization-twitter-sentiment-analysis-in-r-5ac22c778448 + [2]: http://tweepy.readthedocs.io/en/v3.5.0/auth_tutorial.html + [3]: https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets + [4]: https://www.safaribooksonline.com/library/view/mining-the-social/9781449368180/ch01.html",1516,"[{'ref': 'FIFA.csv', 'creationDate': '2018-08-15T05:30:43.398Z', 'datasetRef': 'rgupta09/world-cup-2018-tweets', 'description': '', 'fileType': '.csv', 'name': 'FIFA.csv', 'ownerRef': 'rgupta09', 'totalBytes': 183640802, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'ID', 'type': 'Uuid', 'originalType': '', 'description': 'Unique ID of the tweet'}, {'order': 1, 'name': 'lang', 'type': 'String', 'originalType': '', 'description': 'Language of the tweet'}, {'order': 2, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': 'Timestamp when it was tweeted'}, {'order': 3, 'name': 'Source', 'type': 'String', 'originalType': '', 'description': 'The device/medium where it was tweeted from'}, {'order': 4, 'name': 'len', 'type': 'Uuid', 'originalType': '', 'description': 'The length of the tweet'}, {'order': 5, 'name': 'Orig_Tweet', 'type': 'String', 'originalType': '', 'description': 'The tweet in its original form'}, {'order': 6, 'name': 'Tweet', 'type': 'String', 'originalType': '', 'description': 'The updated tweet after pre-processing'}, {'order': 7, 'name': 'Likes', 'type': 'Uuid', 'originalType': '', 'description': 'The number of likes received by the tweet (till the time the extraction was done)'}, {'order': 8, 'name': 'RTs', 'type': 'Uuid', 'originalType': '', 'description': 'The number of times the tweet was shared'}, {'order': 9, 'name': 'Hashtags', 'type': 'String', 'originalType': '', 'description': 'The Hashtags found in the original tweet'}, {'order': 10, 'name': 'UserMentionNames', 'type': 'String', 'originalType': '', 'description': 'User names mentioned from the original tweet'}, {'order': 11, 'name': 'UserMentionID', 'type': 'String', 'originalType': '', 'description': 'User IDs mentioned from the original tweet'}, {'order': 12, 'name': 'Name', 'type': 'String', 'originalType': '', 'description': 'Name of the Twitter user'}, {'order': 13, 'name': 'Place', 'type': 'String', 'originalType': '', 'description': 'Place of the Twitter user'}, {'order': 14, 'name': 'Followers', 'type': 'Uuid', 'originalType': '', 'description': 'The number of followers that the user account has'}, {'order': 15, 'name': 'Friends', 'type': 'Uuid', 'originalType': '', 'description': 'The number of friends the user account has'}]}]",43276,False,False,True,8,2018-08-15T05:30:46.967Z,Unknown,Rituparna,rgupta09,rgupta09/world-cup-2018-tweets,A collection of tweets during the 2018 FIFA World Cup,"[{'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}]",FIFA World Cup 2018 Tweets,3,45758955,https://www.kaggle.com/rgupta09/world-cup-2018-tweets,0.647058845,"[{'versionNumber': 4, 'creationDate': '2018-08-15T05:30:46.967Z', 'creatorName': 'Rituparna', 'creatorRef': 'world-cup-2018-tweets', 'versionNotes': 'ID updated', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-08-15T03:33:53.01Z', 'creatorName': 'Rituparna', 'creatorRef': 'world-cup-2018-tweets', 'versionNotes': 'Added column name', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-08-14T01:10:18.94Z', 'creatorName': 'Rituparna', 'creatorRef': 'world-cup-2018-tweets', 'versionNotes': 'removed redundant column', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-08-14T00:50:28.353Z', 'creatorName': 'Rituparna', 'creatorRef': 'world-cup-2018-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",10845,50 +107,Dan,,6,"### Context + +Tweets containing Hurricane Harvey from the morning of 8/25/2017. I hope to keep this updated if computer problems do not persist. + +***8/30 Update** +This update includes the most recent tweets tagged ""Tropical Storm Harvey"", which spans from 8/20 to 8/30 as well as the properly merged version of dataset including Tweets from when Harvey before it was downgraded back to a tropical storm. + + +### Inspiration + +What are the popular tweets? + +Can we find popular news stories from this? + +Can we identify people likely staying or leaving, and is there a difference in sentiment between the two groups? + +Is it possible to predict popularity with respect to retweets, likes, and shares?",655,"[{'ref': 'Hurricane_Harvey.csv', 'creationDate': '2017-09-09T17:38:51Z', 'datasetRef': 'dan195/hurricaneharvey', 'description': 'Hurricane Harvey tweets.', 'fileType': '.csv', 'name': 'Hurricane_Harvey.csv', 'ownerRef': 'dan195', 'totalBytes': 20556605, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'ID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Likes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Replies', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Retweets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Tweet', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'TS_Harvey_Tweets.csv', 'creationDate': '2017-09-09T17:40:36Z', 'datasetRef': 'dan195/hurricaneharvey', 'description': 'Tweets tagged tropical storm Harvey.', 'fileType': '.csv', 'name': 'TS_Harvey_Tweets.csv', 'ownerRef': 'dan195', 'totalBytes': 2465679, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'ID', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Time', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Tweet', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Retweets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Replies', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Likes', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",2216,False,False,True,3,2017-09-09T17:40:57.633Z,CC0: Public Domain,Dan,dan195,dan195/hurricaneharvey,Recent tweets on Hurricane Harvey,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'weather', 'competitionCount': 1, 'datasetCount': 195, 'description': 'Weather datasets and kernels come in all wind speeds and directions. You have weather data about hurricanes and other inclement phenomena, hourly readings, and general weather for various cities.', 'fullPath': 'natural and physical sciences > physical sciences > climate > weather', 'isAutomatic': False, 'name': 'weather', 'scriptCount': 30, 'totalCount': 226}]",Hurricane Harvey Tweets,5,23022262,https://www.kaggle.com/dan195/hurricaneharvey,0.8235294,"[{'versionNumber': 6, 'creationDate': '2017-09-09T17:40:57.633Z', 'creatorName': 'Dan', 'creatorRef': 'hurricaneharvey', 'versionNotes': 'Version 6. Final Version', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2017-09-05T03:46:28.89Z', 'creatorName': 'Dan', 'creatorRef': 'hurricaneharvey', 'versionNotes': 'Tweets tagged Tropical Storm Harvey. ', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2017-08-30T16:55:49.097Z', 'creatorName': 'Dan', 'creatorRef': 'hurricaneharvey', 'versionNotes': 'Tropical Storm and Hurricane Update', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-08-30T13:46:31.527Z', 'creatorName': 'Dan', 'creatorRef': 'hurricaneharvey', 'versionNotes': 'Tropical_Storm_Update', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-08-26T18:40:03.397Z', 'creatorName': 'Dan', 'creatorRef': 'hurricaneharvey', 'versionNotes': 'Initial release', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-08-25T22:16:26.503Z', 'creatorName': 'Dan', 'creatorRef': 'hurricaneharvey', 'versionNotes': 'Initial release', 'status': 'Ready'}]",7250,19 +108,LiamLarsen,,1,"# Content + + - tweet id, contains tweet-stamp + - date + time, date and time of day (24hr) + - tweet text, text of tweet, remove 'b' + +# usage + +What's someone going to do with a bunch of tweets? + + - Maybe someone would want to generate text using this dataset + - or do sentiment analysis + - Or find out the most likely time of day Elon would tweet. + - pie his tweets per month, ITS DATA!! + +Either way its up to you! + +# Inspiration: + +![elon][1] + + + [1]: http://iotblog.ir/wp-content/uploads/2017/01/eloninfograph.jpg",369,"[{'ref': 'elonmusk_tweets.csv', 'creationDate': '2017-04-23T08:55:35Z', 'datasetRef': 'kingburrito666/elon-musk-tweets', 'description': 'tweets', 'fileType': '.csv', 'name': 'elonmusk_tweets.csv', 'ownerRef': 'kingburrito666', 'totalBytes': 402077, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'created_at', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}]}]",1153,False,False,True,11,2017-04-23T09:08:35.637Z,Other (specified in description),LiamLarsen,kingburrito666,kingburrito666/elon-musk-tweets,All Elon Musk Tweets from 2010 to 2017,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'celebrity', 'competitionCount': 0, 'datasetCount': 12, 'description': 'Celebrity is the fame and public attention we give to superstars of popular culture like the Kardashian family and Jeff Dean.', 'fullPath': 'culture and arts > arts and entertainment > celebrity', 'isAutomatic': False, 'name': 'celebrity', 'scriptCount': 1, 'totalCount': 13}, {'ref': 'technology forecasting', 'competitionCount': 0, 'datasetCount': 4, 'description': 'Technology forecasting can be considered science fiction, but for the business section of the newspaper.', 'fullPath': 'technology and applied sciences > technology forecasting', 'isAutomatic': False, 'name': 'technology forecasting', 'scriptCount': 0, 'totalCount': 4}]","Elon Musk Tweets, 2010 to 2017",0,178148,https://www.kaggle.com/kingburrito666/elon-musk-tweets,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-04-23T09:08:35.637Z', 'creatorName': 'LiamLarsen', 'creatorRef': 'elon-musk-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",4565,16 +109,Ben Hamner,,2,"*This data originally came from [Crowdflower's Data for Everyone library](http://www.crowdflower.com/data-for-everyone).* + +As the original source says, + +> We looked through tens of thousands of tweets about the early August GOP debate in Ohio and asked contributors to do both sentiment analysis and data categorization. Contributors were asked if the tweet was relevant, which candidate was mentioned, what subject was mentioned, and then what the sentiment was for a given tweet. We've removed the non-relevant messages from the uploaded dataset. + +The data we're providing on Kaggle is a slightly reformatted version of the original source. It includes both a CSV file and SQLite database. The code that does these transformations is [available on GitHub](https://github.com/benhamner/crowdflower-first-gop-debate-twitter-sentiment)",12708,"[{'ref': 'database.sqlite', 'creationDate': '2016-10-06T03:18:46Z', 'datasetRef': 'crowdflower/first-gop-debate-twitter-sentiment', 'description': 'SQLite version of the sentiments table', 'fileType': '.sqlite', 'name': 'database.sqlite', 'ownerRef': 'crowdflower', 'totalBytes': 1456744, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Sentiment.csv', 'creationDate': '2016-10-06T03:18:43Z', 'datasetRef': 'crowdflower/first-gop-debate-twitter-sentiment', 'description': 'Table of tweets and their sentiment', 'fileType': '.csv', 'name': 'Sentiment.csv', 'ownerRef': 'crowdflower', 'totalBytes': 1212596, 'url': 'https://www.kaggle.com/', 'columns': []}]",16,False,False,True,122,2016-10-06T03:19:29.417Z,CC BY-NC-SA 4.0,Figure Eight,crowdflower,crowdflower/first-gop-debate-twitter-sentiment,Analyze tweets on the first 2016 GOP Presidential Debate,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}]",First GOP Debate Twitter Sentiment,3,2669318,https://www.kaggle.com/crowdflower/first-gop-debate-twitter-sentiment,0.852941155,"[{'versionNumber': 2, 'creationDate': '2016-10-06T03:19:29.417Z', 'creatorName': 'Ben Hamner', 'creatorRef': 'first-gop-debate-twitter-sentiment', 'versionNotes': 'Got files correctly in system', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2015-12-28T06:04:45Z', 'creatorName': 'Kaggle Team', 'creatorRef': 'first-gop-debate-twitter-sentiment', 'versionNotes': 'Initial release', 'status': 'Ready'}]",46650,90 +110,Derrick M,,3,"###Context + +I collected this data from incubators and accelerators to find out what they have been talking about in 2017. + +###Content + +The data contains the twitter usernames of various organizations and tweets for the year 2017 collected on 28th Dec 2017. + +###Acknowledgements + +Much appreciation to @emmanuelkens for helping in thinking through this + +###Inspiration + +I am very curious to find out what the various organizations have been talking about in 2017. I would also like to find out the most popular organization by tweets and engagement. I am also curious to find out if there is any relationship between the number of retweets a tweet gets and the time of day it was posted! +",503,"[{'ref': 'tweets.csv', 'creationDate': '2018-01-07T15:09:50.754Z', 'datasetRef': 'derrickmwiti/24-thousand-tweets-later', 'description': '', 'fileType': '.csv', 'name': 'tweets.csv', 'ownerRef': 'derrickmwiti', 'totalBytes': 4421998, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'tweet_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'created_at', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tweet ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'retweets', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'tweets.xlsx', 'creationDate': '2018-01-07T15:10:05.4817205Z', 'datasetRef': 'derrickmwiti/24-thousand-tweets-later', 'description': 'I collected the tweets from several incubators and accelerators across the world. tweet_id is the tweet id from Twitter created_at is the date and time the tweet was created tweet is the tweet itself retweets is the number of retweets the tweet got username is the twitter username of the organization', 'fileType': '.xlsx', 'name': 'tweets.xlsx', 'ownerRef': 'derrickmwiti', 'totalBytes': 2246827, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'tweet_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'tweet ', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'retweets', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'username', 'type': 'String', 'originalType': '', 'description': None}]}]",8213,False,False,True,4,2018-01-07T15:10:04.06Z,GPL 2,Derrick M,derrickmwiti,derrickmwiti/24-thousand-tweets-later,2017 tweets from incubators and accelerators,"[{'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'companies', 'competitionCount': 0, 'datasetCount': 17, 'description': None, 'fullPath': 'technology and applied sciences > computing > companies', 'isAutomatic': False, 'name': 'companies', 'scriptCount': 4, 'totalCount': 21}]",24 thousand tweets later ,0,3697713,https://www.kaggle.com/derrickmwiti/24-thousand-tweets-later,0.7647059,"[{'versionNumber': 3, 'creationDate': '2018-01-07T15:10:04.06Z', 'creatorName': 'Derrick M', 'creatorRef': '24-thousand-tweets-later', 'versionNotes': 'Uploaded csv ', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-01-05T22:16:35.223Z', 'creatorName': 'Jacob Boysen', 'creatorRef': '24-thousand-tweets-later', 'versionNotes': 'Uploaded .csv', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-12-29T14:18:21.637Z', 'creatorName': 'Derrick M', 'creatorRef': '24-thousand-tweets-later', 'versionNotes': 'Initial release', 'status': 'Ready'}]",4332,20 +111,Madhur Inani,,3,"Hi, +I have extracted the Tweets related to Oscar 2017. + + - The timeframe is from Feb 27th,2017 to March 2nd,2017. + - The number ofTweets is 29498. + - The whole idea of extraction to know how people reacted in general about Oscars and also after the Best Picture mix up.",308,"[{'ref': 'Twitter- Oscars(2).csv', 'creationDate': '2017-03-17T19:45:00Z', 'datasetRef': 'madhurinani/oscars-2017-tweets', 'description': 'Twitter data with all the other Attributes', 'fileType': '.csv', 'name': 'Twitter- Oscars(2).csv', 'ownerRef': 'madhurinani', 'totalBytes': 3887749, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Twitter Search Rule: #oscars', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'User Details', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': '', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 12, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': '', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': '', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Twitter- Oscars(2).xlsx', 'creationDate': '2017-03-17T19:44:35Z', 'datasetRef': 'madhurinani/oscars-2017-tweets', 'description': 'Excel file of Twitter data with all the other Attributes', 'fileType': '.xlsx', 'name': 'Twitter- Oscars(2).xlsx', 'ownerRef': 'madhurinani', 'totalBytes': 7657233, 'url': 'https://www.kaggle.com/', 'columns': []}]",960,False,False,False,7,2017-03-17T19:50:40.257Z,Other (specified in description),Madhur Inani,madhurinani,madhurinani/oscars-2017-tweets,"29,000+ tweets about the 2017 Academy Awards","[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'film', 'competitionCount': 2, 'datasetCount': 62, 'description': 'Grab a bucket of popcorn and come analyze these movie ratings. The world must know which blockbuster film is the blockbuster film of all time!', 'fullPath': 'culture and arts > performing arts > film', 'isAutomatic': False, 'name': 'film', 'scriptCount': 5, 'totalCount': 69}]",2017 #Oscars Tweets,1,11544960,https://www.kaggle.com/madhurinani/oscars-2017-tweets,0.7647059,"[{'versionNumber': 3, 'creationDate': '2017-03-17T19:50:40.257Z', 'creatorName': 'Madhur Inani', 'creatorRef': 'oscars-2017-tweets', 'versionNotes': 'Twitter data in Excel/CSV', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-03-17T19:47:27.747Z', 'creatorName': 'Madhur Inani', 'creatorRef': 'oscars-2017-tweets', 'versionNotes': 'Twitter data with all the other Attributes', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-03-13T05:45:42.843Z', 'creatorName': 'Madhur Inani', 'creatorRef': 'oscars-2017-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",4479,7 +112,Sohier Dane,,2,"### Context + +This dataset contains all stories and comments from Hacker News from its launch in 2006. Each story contains a story id, the author that made the post, when it was written, and the number of points the story received. Hacker News is a social news website focusing on computer science and entrepreneurship. It is run by Paul Graham's investment fund and startup incubator, Y Combinator. In general, content that can be submitted is defined as ""anything that gratifies one's intellectual curiosity"". + +### Content + +Each story contains a story ID, the author that made the post, when it was written, and the number of points the story received. + +Please note that the text field includes profanity. All texts are the author’s own, do not necessarily reflect the positions of Kaggle or Hacker News, and are presented without endorsement. + +## Querying BigQuery tables + +You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at `bigquery-public-data.hacker_news.[TABLENAME]`. **Fork [this kernel][1] to get started**. + +### Acknowledgements + +This dataset was kindly made publicly available by [Hacker News][2] under [the MIT license][3]. + +### Inspiration + + - Recent studies have found that many forums tend to be dominated by a + very small fraction of users. Is this true of Hacker News? + + - Hacker News has received complaints that the site is biased towards Y + Combinator startups. Do the data support this? + + - Is the amount of coverage by Hacker News predictive of a startup’s + success? + + + [1]: https://www.kaggle.com/mrisdal/mentions-of-kaggle-on-hacker-news + [2]: https://github.com/HackerNews/API + [3]: https://github.com/HackerNews/API/blob/master/LICENSE",0,[],6057,False,False,True,1504,2019-02-12T00:34:51.853Z,CC0: Public Domain,Hacker News,hacker-news,hacker-news/hacker-news,All posts from Y Combinator's social news website from 2006 to late 2017,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'bigquery', 'competitionCount': 0, 'datasetCount': 61, 'description': None, 'fullPath': 'data type > bigquery', 'isAutomatic': False, 'name': 'bigquery', 'scriptCount': 311, 'totalCount': 372}, {'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}, {'ref': 'information technology', 'competitionCount': 0, 'datasetCount': 19, 'description': ""Information technology is the use of computers to store, study, retrieve, transmit and manipulate data. You're using it right now!"", 'fullPath': 'technology and applied sciences > computing > information technology', 'isAutomatic': False, 'name': 'information technology', 'scriptCount': 1, 'totalCount': 20}]",Hacker News,1,15883923392,https://www.kaggle.com/hacker-news/hacker-news,0.7058824,"[{'versionNumber': 2, 'creationDate': '2019-02-12T00:34:51.853Z', 'creatorName': 'Sohier Dane', 'creatorRef': 'hacker-news', 'versionNotes': 'Auto Updated', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-12-04T18:00:36.333Z', 'creatorName': 'Sohier Dane', 'creatorRef': 'hacker-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",54378,246 +113,Rishabh Misra,,2,"# Context +This dataset contains around 200k news headlines from the year 2012 to 2018 obtained from [HuffPost](https://www.huffingtonpost.com/). The model trained on this dataset could be used to identify tags for untracked news articles or to identify the type of language used in different news articles. + +# Content +Each news headline has a corresponding category. Categories and corresponding article counts are as follows: + +* ```POLITICS```: ```32739``` + +* ```WELLNESS```: ```17827``` + +* ```ENTERTAINMENT```: ```16058``` + +* ```TRAVEL```: ```9887``` + +* ```STYLE & BEAUTY```: ```9649``` + +* ```PARENTING```: ```8677``` + +* ```HEALTHY LIVING```: ```6694``` + +* ```QUEER VOICES```: ```6314``` + +* ```FOOD & DRINK```: ```6226``` + +* ```BUSINESS```: ```5937``` + +* ```COMEDY```: ```5175``` + +* ```SPORTS```: ```4884``` + +* ```BLACK VOICES```: ```4528``` + +* ```HOME & LIVING```: ```4195``` + +* ```PARENTS```: ```3955``` + +* ```THE WORLDPOST```: ```3664``` + +* ```WEDDINGS```: ```3651``` + +* ```WOMEN```: ```3490``` + +* ```IMPACT```: ```3459``` + +* ```DIVORCE```: ```3426``` + +* ```CRIME```: ```3405``` + +* ```MEDIA```: ```2815``` + +* ```WEIRD NEWS```: ```2670``` + +* ```GREEN```: ```2622``` + +* ```WORLDPOST```: ```2579``` + +* ```RELIGION```: ```2556``` + +* ```STYLE```: ```2254``` + +* ```SCIENCE```: ```2178``` + +* ```WORLD NEWS```: ```2177``` + +* ```TASTE```: ```2096``` + +* ```TECH```: ```2082``` + +* ```MONEY```: ```1707``` + +* ```ARTS```: ```1509``` + +* ```FIFTY```: ```1401``` + +* ```GOOD NEWS```: ```1398``` + +* ```ARTS & CULTURE```: ```1339``` + +* ```ENVIRONMENT```: ```1323``` + +* ```COLLEGE```: ```1144``` + +* ```LATINO VOICES```: ```1129``` + +* ```CULTURE & ARTS```: ```1030``` + +* ```EDUCATION```: ```1004``` + +# Acknowledgements + +This dataset was collected from [HuffPost](https://www.huffingtonpost.com/). If this is against the TOS, please let me know and I will take it down. + + +# Inspiration + +* Can you categorize news articles based on their headlines and short descriptions? + +* Do news articles from different categories have different writing styles? + +* A classifier trained on this dataset could be used on a free text to identify the type of language being used. + +# Citation + +Please link to ""https://rishabhmisra.github.io/publications/"" in your report if you're using this dataset. + +If you're using this dataset for research purposes, please use the following BibTex for citation: + + +@dataset{dataset, + +author = {Misra, Rishabh}, + +year = {2018}, + +month = {06}, + +pages = {}, + +title = {News Category Dataset}, + +doi = {10.13140/RG.2.2.20331.18729} + +} + + +Thanks! + +### Other datasets +Please also checkout the following datasets collected by me: + +* [News Headlines Dataset For Sarcasm Detection](https://www.kaggle.com/rmisra/news-headlines-dataset-for-sarcasm-detection) + +* [Clothing Fit Dataset for Size Recommendation](https://www.kaggle.com/rmisra/clothing-fit-dataset-for-size-recommendation) + +* [IMDB Spoiler Dataset](https://www.kaggle.com/rmisra/imdb-spoiler-dataset)",5173,"[{'ref': 'News_Category_Dataset_v2.json', 'creationDate': '2018-12-02T04:08:56.792Z', 'datasetRef': 'rmisra/news-category-dataset', 'description': 'The file contains ```202,372``` records. Each json record contains following attributes:\n\n```category```: Category article belongs to\n\n```headline```: Headline of the article\n\n```authors```: Person authored the article\n\n```link```: Link to the post\n\n```short_description```: Short description of the article\n\n```date```: Date the article was published', 'fileType': '.json', 'name': 'News_Category_Dataset_v2.json', 'ownerRef': 'rmisra', 'totalBytes': 83917554, 'url': 'https://www.kaggle.com/', 'columns': []}]",32526,False,False,True,22,2018-12-02T04:09:45.777Z,CC0: Public Domain,Rishabh Misra,rmisra,rmisra/news-category-dataset,Identify the type of news based on headlines and short descriptions,"[{'ref': 'classification', 'competitionCount': 2, 'datasetCount': 257, 'description': None, 'fullPath': 'machine learning > classification', 'isAutomatic': False, 'name': 'classification', 'scriptCount': 3332, 'totalCount': 3591}, {'ref': 'deep learning', 'competitionCount': 0, 'datasetCount': 164, 'description': None, 'fullPath': 'machine learning > deep learning', 'isAutomatic': False, 'name': 'deep learning', 'scriptCount': 3165, 'totalCount': 3329}, {'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}]",News Category Dataset,1,26337702,https://www.kaggle.com/rmisra/news-category-dataset,1.0,"[{'versionNumber': 2, 'creationDate': '2018-12-02T04:09:45.777Z', 'creatorName': 'Rishabh Misra', 'creatorRef': 'news-category-dataset', 'versionNotes': 'Data now contains around 200,000 records.', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-06-21T02:11:28.007Z', 'creatorName': 'Rishabh Misra', 'creatorRef': 'news-category-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",31955,135 +114,Megan Risdal,,1,"The latest hot topic in the news is fake news and many are wondering what data scientists can do to detect it and stymie its viral spread. This dataset is only a first step in understanding and tackling this problem. It contains text and metadata scraped from 244 websites tagged as ""bullshit"" by the [BS Detector][2] Chrome Extension by [Daniel Sieradski][3]. + +**Warning**: I did not modify the list of news sources from the BS Detector so as not to introduce my (useless) layer of bias; I'm not an authority on fake news. There may be sources whose inclusion you disagree with. It's up to you to decide how to work with the data and how you might contribute to ""improving it"". The labels of ""bs"" and ""junksci"", etc. do not constitute capital ""t"" Truth. If there are other sources you would like to include, start a discussion. If there are sources you believe should not be included, start a discussion or write a kernel analyzing the data. Or take the data and do something else productive with it. Kaggle's choice to host this dataset is not meant to express any particular political affiliation or intent. + +## Contents + +The dataset contains text and metadata from 244 websites and represents 12,999 posts in total from the past 30 days. The data was pulled using the [webhose.io][4] API; because it's coming from their crawler, not all websites identified by the BS Detector are present in this dataset. Each website was labeled according to the BS Detector as documented here. Data sources that were missing a label were simply assigned a label of ""bs"". There are (ostensibly) no genuine, reliable, or trustworthy news sources represented in this dataset (so far), so don't trust anything you read. + +## Fake news in the news + +For inspiration, I've included some (presumably non-fake) recent stories covering fake news in the news. This is a sensitive, nuanced topic and if there are other resources you'd like to see included here, please leave a suggestion. From defining fake, biased, and misleading news in the first place to deciding how to take action (a blacklist is not a good answer), there's a lot of information to consider beyond what can be neatly arranged in a CSV file. + +* [How Fake News Spreads (NYT)][6] + +* [We Tracked Down A Fake-News Creator In The Suburbs. Here's What We Learned (NPR)][7] + +* [Does Facebook Generate Over Half of its Revenue from Fake News? (Forbes)][8] + +* [Fake News is Not the Only Problem (Points - Medium)][9] + +* [Washington Post Disgracefully Promotes a McCarthyite Blacklist From a New, Hidden, and Very Shady Group (The Intercept)][10] + +## Improvements + +If you have suggestions for improvements or would like to contribute, please let me know. The most obvious extensions are to include data from ""real"" news sites and to address the bias in the current list. I'd be happy to include any contributions in future versions of the dataset. + +## Acknowledgements + +Thanks to [Anthony][11] for pointing me to [Daniel Sieradski's BS Detector][12]. Thank you to Daniel Nouri for encouraging me to add a disclaimer to the dataset's page. + + + [2]: https://github.com/selfagency/bs-detector + [3]: https://github.com/selfagency + [4]: https://webhose.io/api + [5]: https://github.com/selfagency/bs-detector/blob/master/chrome/data/data.json + [6]: http://www.nytimes.com/2016/11/20/business/media/how-fake-news-spreads.html + [7]: http://www.npr.org/sections/alltechconsidered/2016/11/23/503146770/npr-finds-the-head-of-a-covert-fake-news-operation-in-the-suburbs + [8]: http://www.forbes.com/forbes/welcome/?toURL=http://www.forbes.com/sites/petercohan/2016/11/25/does-facebook-generate-over-half-its-revenue-from-fake-news + [9]: https://points.datasociety.net/fake-news-is-not-the-problem-f00ec8cdfcb#.577yk6s8a + [10]: https://theintercept.com/2016/11/26/washington-post-disgracefully-promotes-a-mccarthyite-blacklist-from-a-new-hidden-and-very-shady-group/ + [11]: https://www.kaggle.com/antgoldbloom + [12]: https://github.com/selfagency/bs-detector",12762,"[{'ref': 'fake.csv', 'creationDate': '2016-11-25T22:05:18Z', 'datasetRef': 'mrisdal/fake-news', 'description': 'Text and metadata from fake news sites', 'fileType': '.csv', 'name': 'fake.csv', 'ownerRef': 'mrisdal', 'totalBytes': 21412001, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'uuid', 'type': 'String', 'originalType': '', 'description': 'Unique identifier'}, {'order': 1, 'name': 'ord_in_thread', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'author', 'type': 'String', 'originalType': '', 'description': 'author of story'}, {'order': 3, 'name': 'published', 'type': 'DateTime', 'originalType': '', 'description': 'date published'}, {'order': 4, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'title of the story'}, {'order': 5, 'name': 'text', 'type': 'String', 'originalType': '', 'description': 'text of story'}, {'order': 6, 'name': 'language', 'type': 'String', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 7, 'name': 'crawled', 'type': 'DateTime', 'originalType': '', 'description': 'date the story was archived'}, {'order': 8, 'name': 'site_url', 'type': 'String', 'originalType': 'String', 'description': 'site URL from [BS detector](https://github.com/bs-detector/bs-detector/blob/dev/ext/data/data.json)'}, {'order': 9, 'name': 'country', 'type': 'String', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 10, 'name': 'domain_rank', 'type': 'Numeric', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 11, 'name': 'thread_title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'spam_score', 'type': 'Numeric', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 13, 'name': 'main_img_url', 'type': 'String', 'originalType': '', 'description': 'image from story'}, {'order': 14, 'name': 'replies_count', 'type': 'Numeric', 'originalType': '', 'description': 'number of replies'}, {'order': 15, 'name': 'participants_count', 'type': 'Numeric', 'originalType': '', 'description': 'number of participants'}, {'order': 16, 'name': 'likes', 'type': 'Numeric', 'originalType': '', 'description': 'number of Facebook likes'}, {'order': 17, 'name': 'comments', 'type': 'Numeric', 'originalType': '', 'description': 'number of Facebook comments'}, {'order': 18, 'name': 'shares', 'type': 'Numeric', 'originalType': '', 'description': 'number of Facebook shares'}, {'order': 19, 'name': 'type', 'type': 'String', 'originalType': '', 'description': 'type of website (label from [BS detector](https://github.com/bs-detector/bs-detector/blob/dev/ext/data/data.json))'}]}]",444,False,False,True,93,2016-11-25T22:29:09.737Z,CC0: Public Domain,Megan Risdal,mrisdal,mrisdal/fake-news,Text & metadata from fake & biased news sources around the web,"[{'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'languages', 'competitionCount': 2, 'datasetCount': 174, 'description': 'Language is a method of communication that consists of using words arranged into meaningful patterns. This is a good place to find natural language processing datasets and kernels to study languages and train your chat bots.', 'fullPath': 'culture and arts > culture and humanities > languages', 'isAutomatic': False, 'name': 'languages', 'scriptCount': 40, 'totalCount': 216}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Getting Real about Fake News,6,21412001,https://www.kaggle.com/mrisdal/fake-news,0.852941155,"[{'versionNumber': 1, 'creationDate': '2016-11-25T22:29:09.737Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'fake-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",140721,337 +115,Andrew Thompson,,4,"NOTE: A larger version of this dataset is now available at [Components][1]. + +### Context + +I wanted to see how articles clustered together if the articles were rendered into document-term matrices---would there be greater affinity among political affiliations, or medium, subject matter, etc. The data was scraped using BeautifulSoup and stored in Sqlite, but I've chopped it up into three separate CSVs here, because the entire Sqlite database came out to about 1.2 gb, beyond Kaggle's max. + +The publications include the New York Times, Breitbart, CNN, Business Insider, the Atlantic, Fox News, Talking Points Memo, Buzzfeed News, National Review, New York Post, the Guardian, NPR, Reuters, Vox, and the Washington Post. Sampling wasn't quite scientific; I chose publications based on my familiarity of the domain and tried to get a range of political alignments, as well as a mix of print and digital publications. By count, the publications break down accordingly: + +The data primarily falls between the years of 2016 and July 2017, although there is a not-insignificant number of articles from 2015, and a possibly insignificant number from before then. + +### Content + +**articles1.csv** - 50,000 news articles (Articles 1-50,000) + +**articles2.csv** - 49,999 news articles (Articles 50,001-100,00) + +**articles3.csv** - Articles 100,001+ + + + +### Acknowledgements + +Thanks mostly go to the maesters of Stack Overflow. + +For each publication, I used archive.org to grab the past year-and-a-half of either home-page headlines or RSS feeds and ran those links through the scraper. That is, the articles are not the product of scraping an entire site, but rather their more prominently placed articles. For example, CNN's articles from 5/6/16 were what appeared on the homepage of CNN.com proper, not everything within the CNN.com domain. Vox's articles from 5/6/16 were everything that appeared in the Vox RSS reader. on 5/6/16, and so on. RSS readers are a breeze to scrape, and so I used them when possible, but not every publication uses them or makes them easy to find. + + +![enter image description here][2] + +It's not entirely even---this was something of a collect-it-all approach, and some sites are more prolific than others, and some have data that maintains integrity after scraping more easily than others. + +### Inspiration + +Sentiment analysis and topic modeling. + + + [1]: https://components.one/datasets/all-the-news-articles-dataset/ + [2]: http://i.imgur.com/QDPtuEv.png",9769,"[{'ref': 'articles1.csv', 'creationDate': '2017-08-20T05:41:17Z', 'datasetRef': 'snapcrack/all-the-news', 'description': 'Articles 1-50,000', 'fileType': '.csv', 'name': 'articles1.csv', 'ownerRef': 'snapcrack', 'totalBytes': 80228982, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': 'Database ID'}, {'order': 2, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'Article title'}, {'order': 3, 'name': 'publication', 'type': 'String', 'originalType': '', 'description': 'Publication name'}, {'order': 4, 'name': 'author', 'type': 'String', 'originalType': '', 'description': 'Author name'}, {'order': 5, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': 'Date of publication'}, {'order': 6, 'name': 'year', 'type': 'Numeric', 'originalType': '', 'description': 'Year of publication'}, {'order': 7, 'name': 'month', 'type': 'Numeric', 'originalType': '', 'description': 'Month of publication'}, {'order': 8, 'name': 'url', 'type': 'String', 'originalType': '', 'description': 'URL for article (not available for all articles)'}, {'order': 9, 'name': 'content', 'type': 'String', 'originalType': '', 'description': 'Article content'}]}, {'ref': 'articles2.csv', 'creationDate': '2017-08-20T05:41:25Z', 'datasetRef': 'snapcrack/all-the-news', 'description': 'Articles 50,001-100,00', 'fileType': '.csv', 'name': 'articles2.csv', 'ownerRef': 'snapcrack', 'totalBytes': 90129813, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': 'Database ID'}, {'order': 2, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'Article title'}, {'order': 3, 'name': 'publication', 'type': 'String', 'originalType': '', 'description': 'Publication name'}, {'order': 4, 'name': 'author', 'type': 'String', 'originalType': '', 'description': 'Author name'}, {'order': 5, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': 'Publication date'}, {'order': 6, 'name': 'year', 'type': 'Numeric', 'originalType': '', 'description': 'Publication year'}, {'order': 7, 'name': 'month', 'type': 'Numeric', 'originalType': '', 'description': 'Publication month'}, {'order': 8, 'name': 'url', 'type': 'String', 'originalType': '', 'description': 'URL of the article (not available for all articles)'}, {'order': 9, 'name': 'content', 'type': 'String', 'originalType': '', 'description': 'Content of article'}]}, {'ref': 'articles3.csv', 'creationDate': '2017-08-20T05:41:29Z', 'datasetRef': 'snapcrack/all-the-news', 'description': 'Articles 100,001+', 'fileType': '.csv', 'name': 'articles3.csv', 'ownerRef': 'snapcrack', 'totalBytes': 94748363, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': 'Database ID for the article'}, {'order': 2, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'Title of article'}, {'order': 3, 'name': 'publication', 'type': 'String', 'originalType': '', 'description': 'Publication name'}, {'order': 4, 'name': 'author', 'type': 'String', 'originalType': '', 'description': 'Author name'}, {'order': 5, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': 'Full date of publication'}, {'order': 6, 'name': 'year', 'type': 'Numeric', 'originalType': '', 'description': 'Year of publication'}, {'order': 7, 'name': 'month', 'type': 'Numeric', 'originalType': '', 'description': 'month of publication'}, {'order': 8, 'name': 'url', 'type': 'String', 'originalType': '', 'description': 'URL for article (not available for all articles)'}, {'order': 9, 'name': 'content', 'type': 'String', 'originalType': '', 'description': 'Full content of the article'}]}]",1974,False,False,True,22,2017-08-20T05:58:47.09Z,Unknown,Andrew Thompson,snapcrack,snapcrack/all-the-news,"143,000 articles from 15 American publications","[{'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}]",All the news,10,265107114,https://www.kaggle.com/snapcrack/all-the-news,0.7352941,"[{'versionNumber': 4, 'creationDate': '2017-08-20T05:58:47.09Z', 'creatorName': 'Andrew Thompson', 'creatorRef': 'all-the-news', 'versionNotes': ""One user complained of a possibly corrupted filepath, which is something I experienced myself in one kernel. I've changed the file name, which may fix any issues with a new filepath."", 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-08-17T16:52:09.97Z', 'creatorName': 'Andrew Thompson', 'creatorRef': 'all-the-news', 'versionNotes': ""The last version of the files seem to have been slightly corrupted in a bad upload and were not able to be opened using pd.read_csv. I'm reuploading to see if this resolves the issue."", 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-08-17T05:34:23.773Z', 'creatorName': 'Andrew Thompson', 'creatorRef': 'all-the-news', 'versionNotes': 'Removed some duplicates and null values that had somehow evaded justice.', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-08-16T04:43:24.107Z', 'creatorName': 'Andrew Thompson', 'creatorRef': 'all-the-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",55400,263 +116,Rohk,,8,"### Context + +This contains data of news headlines published over a period of 15 years. + +Sourced from the reputable Australian news source ABC (Australian Broadcasting Corp.) + +Agency Site: http://www.abc.net.au/ + +### Content + +Format: CSV ; Single File + + 1. **publish_date**: Date of publishing for the article in yyyyMMdd format + 2. **headline_text**: Text of the headline in Ascii , English , lowercase + +Start Date: 2003-02-19 End Date: 2017-12-31 + +Total Records: **1,103,663** + +Citation for usage: + +**Rohit Kulkarni** (2017), A Million News Headlines [CSV Data file], doi:10.7910/DVN/SYBGZL, Retrieved from: [this url] + +### Inspiration + +I look at this news dataset as a summarised historical record of noteworthy events in the globe from early-2003 to end-2017 with a more granular focus on Australia. + +This includes the entire corpus of articles published by the ABC website in the given time range. +With a volume of 200 articles per day and a good focus on international news, we can be fairly certain that every event of significance has been captured here. + +Digging into the keywords, one can see all the important episodes shaping the last decade and how they evolved over time. +Ex: financial crisis, iraq war, multiple US elections, ecological disasters, terrorism, famous people, Australian crimes etc. + +### Similar Work +Your kernals can be reused with minimal changes across all these datasets + + - 3M Clickbait Headlines for 6 years: [Examine the Examiner][1] + - 1.3M Global Headlines from 20K sources over 1 week: [Global News Week][2] + - 2.9M News Headlines from India from 2001-2017: [Headlines of India][3] + - 1.4M News Headlines from Ireland from 1996-2017: [Ireland Historical News][4] + + + [1]: https://www.kaggle.com/therohk/examine-the-examiner + [2]: https://www.kaggle.com/therohk/global-news-week + [3]: https://www.kaggle.com/therohk/india-headlines-news-dataset + [4]: https://www.kaggle.com/therohk/ireland-historical-news",11484,"[{'ref': 'abcnews-date-text.csv', 'creationDate': '2019-06-13T18:14:11.449Z', 'datasetRef': 'therohk/million-headlines', 'description': 'doi:10.7910/DVN/SYBGZL', 'fileType': '.csv', 'name': 'abcnews-date-text.csv', 'ownerRef': 'therohk', 'totalBytes': 55392904, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_date', 'type': 'DateTime', 'originalType': '', 'description': 'date of publishing in yyyyMMdd'}, {'order': 1, 'name': 'headline_text', 'type': 'String', 'originalType': '', 'description': 'headline text ascii english lowercase'}]}]",1692,False,False,True,49,2019-06-13T18:14:28.073Z,CC0: Public Domain,Rohk,therohk,therohk/million-headlines,News headlines published over a period of 15 Years,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}, {'ref': 'sociology', 'competitionCount': 0, 'datasetCount': 34, 'description': 'Sociology is the study of society, including patterns of social relationships, and culture. Why are there so many people in the gym right now? What do young people do with their time? What do people tweet about in the morning?', 'fullPath': 'society and social sciences > social sciences > sociology', 'isAutomatic': False, 'name': 'sociology', 'scriptCount': 6, 'totalCount': 40}, {'ref': 'historiography', 'competitionCount': 0, 'datasetCount': 5, 'description': 'Historiography is the study of the methods of historians in developing history as an academic discipline, and by extension is any body of historical work on a particular subject.', 'fullPath': 'history and events > historiography', 'isAutomatic': False, 'name': 'historiography', 'scriptCount': 1, 'totalCount': 6}]",A Million News Headlines,6,19296580,https://www.kaggle.com/therohk/million-headlines,0.9411765,"[{'versionNumber': 8, 'creationDate': '2019-06-13T18:14:28.073Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'fina modifado', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2019-01-09T10:42:49.207Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'minor encoding fixes - FINAL UPDATE', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2018-01-02T16:20:45.377Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'adding data upto end of 2017', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2017-10-10T20:39:38.353Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'data upto sept 2017 and fixed bad numeric tokens', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2017-08-30T19:34:25.753Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'fixed around 3k records with badly formatted numbers, very long words and other rare patterns', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-08-17T19:26:37.853Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'Fixed around 30k bad headlines caused by encoded characters', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-07-30T14:06:11.547Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'Changes in v2:\n- limiting data upto 201706 to be more complete\n- ~40k missing articles from 2016-201706 added\n- normalized whitespaces\n\n', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-07-23T13:02:57.073Z', 'creatorName': 'Rohk', 'creatorRef': 'million-headlines', 'versionNotes': 'Initial release', 'status': 'Ready'}]",70206,276 +117,Ed King,,1,"This dataset contains headlines, URLs, and categories for 422,937 news stories collected by a web aggregator between March 10th, 2014 and August 10th, 2014. + +News categories included in this dataset include business; science and technology; entertainment; and health. Different news articles that refer to the same news item (e.g., several articles about recently released employment statistics) are also categorized together. + +## Content +The columns included in this dataset are: + +- **ID** : the numeric ID of the article +- **TITLE** : the headline of the article +- **URL** : the URL of the article +- **PUBLISHER** : the publisher of the article +- **CATEGORY** : the category of the news item; one of: +-- *b* : business +-- *t* : science and technology +-- *e* : entertainment +-- *m* : health +- **STORY** : alphanumeric ID of the news story that the article discusses +- **HOSTNAME** : hostname where the article was posted +- **TIMESTAMP** : approximate timestamp of the article's publication, given in Unix time (seconds since midnight on Jan 1, 1970) + +## Acknowledgments +This dataset comes from the [UCI Machine Learning Repository](http://archive.ics.uci.edu/ml). Any publications that use this data should cite the repository as follows: + +Lichman, M. (2013). UCI Machine Learning Repository [http://archive.ics.uci.edu/ml]. Irvine, CA: University of California, School of Information and Computer Science. + +This specific dataset can be found in the UCI ML Repository at [this URL](http://archive.ics.uci.edu/ml/datasets/News+Aggregator) + +## Inspiration +What kinds of questions can we explore using this dataset? Here are a few possibilities: + +- can we predict the category (business, entertainment, etc.) of a news article given only its headline? +- can we predict the specific story that a news article refers to, given only its headline?",6757,"[{'ref': 'uci-news-aggregator.csv', 'creationDate': '2016-10-31T22:20:44Z', 'datasetRef': 'uciml/news-aggregator-dataset', 'description': ""Headlines and categories for 400k news items scraped from the web in 2014. Columns are:\n\n- **ID** : the numeric ID of the article\n- **TITLE** : the headline of the article\n- **URL** : the URL of the article\n- **PUBLISHER** : the publisher of the article\n- **CATEGORY** : the category of the news item; one of:\n-- *b* : business\n-- *t* : science and technology\n-- *e* : entertainment\n-- *m* : health\n- **STORY** : alphanumeric ID of the news story that the article discusses\n- **HOSTNAME** : hostname where the article was posted\n- **TIMESTAMP** : approximate timestamp of the article's publication, given in Unix time (seconds since midnight on Jan 1, 1970)"", 'fileType': '.csv', 'name': 'uci-news-aggregator.csv', 'ownerRef': 'uciml', 'totalBytes': 30370802, 'url': 'https://www.kaggle.com/', 'columns': []}]",294,False,False,True,54,2016-10-31T22:22:55.29Z,CC0: Public Domain,UCI Machine Learning,uciml,uciml/news-aggregator-dataset,Headlines and categories of 400k news stories from 2014,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",News Aggregator Dataset,2,30370802,https://www.kaggle.com/uciml/news-aggregator-dataset,0.875,"[{'versionNumber': 1, 'creationDate': '2016-10-31T22:22:55.29Z', 'creatorName': 'Ed King', 'creatorRef': 'news-aggregator-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",43922,92 +118,Aaron7sun,,1,"Actually, I prepare this dataset for students on my Deep Learning and NLP course. + +But I am also very happy to see kagglers play around with it. + +Have fun! + +**Description:** + +There are two channels of data provided in this dataset: + +1. News data: I crawled historical news headlines from [Reddit WorldNews Channel][1] (/r/worldnews). They are ranked by reddit users' votes, and only the top 25 headlines are considered for a single date. +(Range: 2008-06-08 to 2016-07-01) + +2. Stock data: Dow Jones Industrial Average (DJIA) is used to ""prove the concept"". +(Range: 2008-08-08 to 2016-07-01) + +I provided three data files in *.csv* format: + +1. **RedditNews.csv**: two columns +The first column is the ""date"", and second column is the ""news headlines"". +All news are ranked from top to bottom based on how *hot* they are. +Hence, there are 25 lines for each date. + +2. **DJIA_table.csv**: +Downloaded directly from [Yahoo Finance][2]: check out the web page for more info. + +3. **Combined_News_DJIA.csv**: +To make things easier for my students, I provide this combined dataset with 27 columns. +The first column is ""Date"", the second is ""Label"", and the following ones are news headlines ranging from ""Top1"" to ""Top25"". + +**=========================================** + +*To my students:* + +*I made this a binary classification task. Hence, there are only two labels:* + +*""1"" when DJIA Adj Close value rose or stayed as the same;* + +*""0"" when DJIA Adj Close value decreased.* + +*For task evaluation, please use data from 2008-08-08 to 2014-12-31 as Training Set, and Test Set is then the following two years data (from 2015-01-02 to 2016-07-01). This is roughly a 80%/20% split.* + +*And, of course, use AUC as the evaluation metric.* + +**=========================================** + +**+++++++++++++++++++++++++++++++++++++++++** + +*To all kagglers:* + +*Please upvote this dataset if you like this idea for market prediction.* + +*If you think you coded an amazing trading algorithm,* + +*friendly advice* + +*do play safe with your own money :)* + +**+++++++++++++++++++++++++++++++++++++++++** + +Feel free to contact me if there is any question~ + +And, remember me when you become a millionaire :P + +**Note: If you'd like to cite this dataset in your publications, please use:** + +` +Sun, J. (2016, August). Daily News for Stock Market Prediction, Version 1. Retrieved [Date You Retrieved This Data] from https://www.kaggle.com/aaron7sun/stocknews. +` + + [1]: https://www.reddit.com/r/worldnews?hl + [2]: https://finance.yahoo.com/quote/%5EDJI/history?p=%5EDJI",23371,"[{'ref': 'Combined_News_DJIA.csv', 'creationDate': '2016-08-25T16:51:29Z', 'datasetRef': 'aaron7sun/stocknews', 'description': 'Combined_News_DJIA ', 'fileType': '.csv', 'name': 'Combined_News_DJIA.csv', 'ownerRef': 'aaron7sun', 'totalBytes': 2514147, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'DJIA_table.csv', 'creationDate': '2016-08-25T16:51:20Z', 'datasetRef': 'aaron7sun/stocknews', 'description': 'DJIA_table', 'fileType': '.csv', 'name': 'DJIA_table.csv', 'ownerRef': 'aaron7sun', 'totalBytes': 167083, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': 'In YYYY-MM-DD format'}, {'order': 1, 'name': 'Open', 'type': 'Numeric', 'originalType': '', 'description': 'Opening weighted average stock value in USD'}, {'order': 2, 'name': 'High', 'type': 'Numeric', 'originalType': '', 'description': 'All day high in USD'}, {'order': 3, 'name': 'Low', 'type': 'Numeric', 'originalType': '', 'description': 'All day low in USD'}, {'order': 4, 'name': 'Close', 'type': 'Numeric', 'originalType': '', 'description': 'Closing weighted average stock value in USD'}, {'order': 5, 'name': 'Volume', 'type': 'Numeric', 'originalType': '', 'description': 'Number of trades'}, {'order': 6, 'name': 'Adj Close', 'type': 'Numeric', 'originalType': '', 'description': 'Adjusted closing prices - adjusted for both dividends and splits - in USD'}]}, {'ref': 'RedditNews.csv', 'creationDate': '2016-08-25T16:51:31Z', 'datasetRef': 'aaron7sun/stocknews', 'description': 'Combined_News_DJIA ', 'fileType': '.csv', 'name': 'RedditNews.csv', 'ownerRef': 'aaron7sun', 'totalBytes': 3822469, 'url': 'https://www.kaggle.com/', 'columns': []}]",129,False,False,True,306,2016-08-25T16:56:51.32Z,CC BY-NC-SA 4.0,Aaron7sun,aaron7sun,aaron7sun/stocknews,Using 8 years daily news headlines to predict stock market movement,"[{'ref': 'finance', 'competitionCount': 4, 'datasetCount': 479, 'description': ""The finance tag covers datasets and kernels about money and investing. If you need to test some new cryptocurrency investment strategies or ward off those pesky credit card fraud enthusiasts, then you've come to the right place."", 'fullPath': 'society and social sciences > society > finance', 'isAutomatic': False, 'name': 'finance', 'scriptCount': 354, 'totalCount': 837}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Daily News for Stock Market Prediction,12,6384909,https://www.kaggle.com/aaron7sun/stocknews,0.882352948,"[{'versionNumber': 1, 'creationDate': '2016-08-25T16:56:51.32Z', 'creatorName': 'Aaron7sun', 'creatorRef': 'stocknews', 'versionNotes': 'Initial release', 'status': 'Ready'}]",173931,844 +119,Anthony Goldbloom,,1,"This data set is Hacker News posts from the last 12 months (up to September 26 2016). + +It includes the following columns: + + - title: title of the post (self explanatory) + + - url: the url of the item being linked to + + - num_points: the number of upvotes the post received + + - num_comments: the number of comments the post received + + - author: the name of the account that made the post + + - created_at: the date and time the post was made (the time zone is Eastern Time in the US) + +One fun project suggestion is a model to predict the number of votes a post will attract. + +The scraper is written, so I can keep this up-to-date and add more historical data. I can also scrape the comments. Just make the request in this dataset's forum. + +The is a fork of minimaxir's HN scraper (thanks minimaxir): +[https://github.com/minimaxir/get-all-hacker-news-submissions-comments][1] + + + [1]: https://github.com/minimaxir/get-all-hacker-news-submissions-comments",2016,"[{'ref': 'HN_posts_year_to_Sep_26_2016.csv', 'creationDate': '2016-09-27T03:14:21Z', 'datasetRef': 'hacker-news/hacker-news-posts', 'description': 'Hacker News posts in the year to Sep 26 2016', 'fileType': '.csv', 'name': 'HN_posts_year_to_Sep_26_2016.csv', 'ownerRef': 'hacker-news', 'totalBytes': 20702971, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Hacker News id for the post'}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'Title of the post'}, {'order': 2, 'name': 'url', 'type': 'String', 'originalType': 'String', 'description': 'Url that the post links to'}, {'order': 3, 'name': 'num_points', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Number of upvotes that the post received'}, {'order': 4, 'name': 'num_comments', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Number of comments that the post recieved'}, {'order': 5, 'name': 'author', 'type': 'String', 'originalType': 'String', 'description': 'User who created the post'}, {'order': 6, 'name': 'created_at', 'type': 'DateTime', 'originalType': 'DateTime', 'description': 'Datetime of post creation (D/M/Y H:M)'}]}]",197,False,False,True,39,2016-09-27T03:14:41.153Z,CC0: Public Domain,Hacker News,hacker-news,hacker-news/hacker-news-posts,Hacker News posts from the past 12 months (including # of votes and comments),"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Hacker News Posts,1,20702971,https://www.kaggle.com/hacker-news/hacker-news-posts,0.882352948,"[{'versionNumber': 1, 'creationDate': '2016-09-27T03:14:41.153Z', 'creatorName': 'Anthony Goldbloom', 'creatorRef': 'hacker-news-posts', 'versionNotes': 'Initial release', 'status': 'Ready'}]",13356,63 +120,Rishabh Misra,,2,"#Context + +Past studies in Sarcasm Detection mostly make use of Twitter datasets collected using hashtag based supervision but such datasets are noisy in terms of labels and language. Furthermore, many tweets are replies to other tweets and detecting sarcasm in these requires the availability of contextual tweets. + +To overcome the limitations related to noise in Twitter datasets, this **News Headlines dataset for Sarcasm Detection** is collected from two news website. [*TheOnion*](https://www.theonion.com/) aims at producing sarcastic versions of current events and we collected all the headlines from News in Brief and News in Photos categories (which are sarcastic). We collect real (and non-sarcastic) news headlines from [*HuffPost*](https://www.huffingtonpost.com/). + +This new dataset has following advantages over the existing Twitter datasets: + +* Since news headlines are written by professionals in a formal manner, there are no spelling mistakes and informal usage. This reduces the sparsity and also increases the chance of finding pre-trained embeddings. + +* Furthermore, since the sole purpose of *TheOnion* is to publish sarcastic news, we get high-quality labels with much less noise as compared to Twitter datasets. + +* Unlike tweets which are replies to other tweets, the news headlines we obtained are self-contained. This would help us in teasing apart the real sarcastic elements. + +# Content +Each record consists of three attributes: + +* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0 + +* ```headline```: the headline of the news article + +* ```article_link```: link to the original news article. Useful in collecting supplementary data + +# Further Details +General statistics of data, instructions on how to read the data in python, and basic exploratory analysis could be found at [this GitHub repo](https://github.com/rishabhmisra/News-Headlines-Dataset-For-Sarcasm-Detection). A hybrid NN architecture trained on this dataset can be found at [this GitHub repo](https://github.com/rishabhmisra/Sarcasm-Detection-using-NN). + +# Inspiration + +Can you identify sarcastic sentences? Can you distinguish between fake news and legitimate news? + +# Reading the data +Following code snippet could be used to read the data: + +import json + +def parse_data(file): + + for l in open(file,'r'): + + yield json.loads(l) + + +data = list(parse_data('./Sarcasm_Headlines_Dataset.json')) + +# Citation + +Please link to ""https://rishabhmisra.github.io/publications/"" in your report if you're using this dataset. + +If you're using this dataset for research purposes, please use the following BibTex for citation: + + +@dataset{dataset, + +author = {Misra, Rishabh}, + +year = {2018}, + +month = {06}, + +pages = {}, + +title = {News Headlines Dataset For Sarcasm Detection}, + +doi = {10.13140/RG.2.2.16182.40004} + +} + +Thanks! + +### Other datasets +Please also checkout the following datasets collected by me: + +* [News Category Dataset](https://www.kaggle.com/rmisra/news-category-dataset) + +* [Clothing Fit Dataset for Size Recommendation](https://www.kaggle.com/rmisra/clothing-fit-dataset-for-size-recommendation) + +* [IMDB Spoiler Dataset](https://www.kaggle.com/rmisra/imdb-spoiler-dataset)",5723,"[{'ref': 'Sarcasm_Headlines_Dataset_v2.json', 'creationDate': '2019-07-03T23:52:42.403Z', 'datasetRef': 'rmisra/news-headlines-dataset-for-sarcasm-detection', 'description': 'v2 contains more sarcastic headlines. Each record consists of three attributes:\n\n* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0\n\n* ```headline```: the headline of the news article\n\n* ```article_link```: link to the original news article. Useful for collecting supplementary data', 'fileType': '.json', 'name': 'Sarcasm_Headlines_Dataset_v2.json', 'ownerRef': 'rmisra', 'totalBytes': 6057046, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Sarcasm_Headlines_Dataset.json', 'creationDate': '2019-07-03T23:52:57.5724272Z', 'datasetRef': 'rmisra/news-headlines-dataset-for-sarcasm-detection', 'description': 'Each record consists of three attributes:\n\n* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0\n\n* ```headline```: the headline of the news article\n\n* ```article_link```: link to the original news article. Useful for collecting supplementary data', 'fileType': '.json', 'name': 'Sarcasm_Headlines_Dataset.json', 'ownerRef': 'rmisra', 'totalBytes': 5616830, 'url': 'https://www.kaggle.com/', 'columns': []}]",30764,False,False,True,48,2019-07-03T23:52:57.127Z,CC0: Public Domain,Rishabh Misra,rmisra,rmisra/news-headlines-dataset-for-sarcasm-detection,High quality dataset for the task of Sarcasm Detection,"[{'ref': 'classification', 'competitionCount': 2, 'datasetCount': 257, 'description': None, 'fullPath': 'machine learning > classification', 'isAutomatic': False, 'name': 'classification', 'scriptCount': 3332, 'totalCount': 3591}, {'ref': 'deep learning', 'competitionCount': 0, 'datasetCount': 164, 'description': None, 'fullPath': 'machine learning > deep learning', 'isAutomatic': False, 'name': 'deep learning', 'scriptCount': 3165, 'totalCount': 3329}, {'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}]",News Headlines Dataset For Sarcasm Detection,3,3425749,https://www.kaggle.com/rmisra/news-headlines-dataset-for-sarcasm-detection,1.0,"[{'versionNumber': 2, 'creationDate': '2019-07-03T23:52:57.127Z', 'creatorName': 'Rishabh Misra', 'creatorRef': 'news-headlines-dataset-for-sarcasm-detection', 'versionNotes': 'add more sarcastic headlines', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-06-09T22:14:56.27Z', 'creatorName': 'Rishabh Misra', 'creatorRef': 'news-headlines-dataset-for-sarcasm-detection', 'versionNotes': 'Initial release', 'status': 'Ready'}]",44225,237 +121,Rohk,,5,"### Context + +This News Dataset is a persistent historical archive of noteable events in the Indian subcontinent from start-2001 to end-2018, recorded in real-time by the journalists of India. It contains approximately 2.9 million events published by Times of India. + +A majority of the data is focusing on Indian local news including national, city level and entertainment. + +Agency Website: https://timesofindia.indiatimes.com + +The individual events can be explored in detail via the archives section. + +### Content + +CSV Rows: 2,969,922 + +1. **publish_date**: Date of the article being published online in yyyyMMdd format + +2. **headline_category**: Category of the headline, ascii, dot delimited, lowercase values + +3. **headline_text**: Text of the Headline in English, only ascii characters + +Start Date: 2001-01-01 End Date: 2018-12-31 + +See This Kernal for [Overview of Trends and Categories][1] + +### Inspiration + + + +Times Group as a news agency, reaches out a very wide audience across Asia and drawfs every other agency in the quantity of English Articles published per day. +Due to the heavy daily volume (avg. 650 articles) over multiple years, this data offers a deep insight into Indian society, its priorities, events, issues and talking points and how they have unfolded over time. + +It is possible to chop this dataset into a smaller piece for a more focused analysis, based on one or more facets. + + - Time Range: Records during 2014 election, 2006 Mumbai Bombings + - One or more Categories: like Mumbai, Movie Releases, ICC updates, Magazine, Middle East + - One or more Keywords: like crime or ecology related words; names of political parties, celebrities, corporations. + +### Acknowledgements + +The headlines are extracted from several GB of raw HTML files using Jsoup, Java and Bash. The entire process takes 11 minutes. + +This logic also : chooses the best worded headline for each article (longest one is usually picked) ; clusters about 17k categories to 200 large groups ; removes records where the date is ambiguous (9k cases) ; finally cleans the selected headline via a string 'domestication' function (which I use for any wild text from the internet). + +The final categories are as per the latest sitemap. Around 1.5k rare categories remain and these records (~20k) can be filtered out easily during analysis. The category is unknown for ~200k records. + +Similar news datasets exploring other attributes, countries and topics can be seen on my profile. + +Citation for usage: + +**Rohit Kulkarni** (2017), News Headlines of India 2001-2018 [CSV data file], doi:10.7910/DVN/J7BYRX, Retrieved from: [this url] + + [1]: https://www.kaggle.com/therohk/india-news-publishing-trends-and-cities",2425,"[{'ref': 'india-news-headlines.csv', 'creationDate': '2019-04-12T02:46:00.538Z', 'datasetRef': 'therohk/india-headlines-news-dataset', 'description': '', 'fileType': '.csv', 'name': 'india-news-headlines.csv', 'ownerRef': 'therohk', 'totalBytes': 212936306, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_date', 'type': 'Uuid', 'originalType': '', 'description': 'Date of publishing in yyyyMMdd'}, {'order': 1, 'name': 'headline_category', 'type': 'String', 'originalType': '', 'description': 'Category of headline, dot delimited ascii'}, {'order': 2, 'name': 'headline_text', 'type': 'String', 'originalType': '', 'description': 'Text of Headline in English, only ascii chars'}]}]",5914,False,False,True,10,2019-04-12T02:46:04.197Z,CC0: Public Domain,Rohk,therohk,therohk/india-headlines-news-dataset,18 Years of headlines focusing on India,"[{'ref': 'cities', 'competitionCount': 0, 'datasetCount': 72, 'description': 'In this tag you will find datasets and kernels about various cities around the world.', 'fullPath': 'geography and places > cities', 'isAutomatic': False, 'name': 'cities', 'scriptCount': 26, 'totalCount': 98}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}, {'ref': 'historiography', 'competitionCount': 0, 'datasetCount': 5, 'description': 'Historiography is the study of the methods of historians in developing history as an academic discipline, and by extension is any body of historical work on a particular subject.', 'fullPath': 'history and events > historiography', 'isAutomatic': False, 'name': 'historiography', 'scriptCount': 1, 'totalCount': 6}]",News Headlines Of India,3,71739130,https://www.kaggle.com/therohk/india-headlines-news-dataset,0.7647059,"[{'versionNumber': 5, 'creationDate': '2019-04-12T02:46:04.197Z', 'creatorName': 'Rohk', 'creatorRef': 'india-headlines-news-dataset', 'versionNotes': 'minor corrections', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2019-01-29T16:57:16.233Z', 'creatorName': 'Rohk', 'creatorRef': 'india-headlines-news-dataset', 'versionNotes': '2018 data and heavy cleanup', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-01-10T12:49:20.563Z', 'creatorName': 'Rohk', 'creatorRef': 'india-headlines-news-dataset', 'versionNotes': 'added data for 2017 q4', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-12-23T09:35:36.733Z', 'creatorName': 'Rohk', 'creatorRef': 'india-headlines-news-dataset', 'versionNotes': 'filled in 90 missing days, removed misplaced headlines, some more text cleanup', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-12-03T04:12:57.487Z', 'creatorName': 'Rohk', 'creatorRef': 'india-headlines-news-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",19289,82 +122,Kondalarao Vonteru,,2,"### Context + +I am currently working on summarizing chat context where it helps an agent in understanding previous context quickly. It interests me to apply the deep learning models to existing datasets and how they perform on them. I believe news articles are rich in grammar and vocabulary which allows us to gain greater insights. + + +### Content + +The dataset consists of 4515 examples and contains Author_name, Headlines, Url of Article, Short text, Complete Article. I gathered the summarized news from Inshorts and only scraped the news articles from Hindu, Indian times and Guardian. Time period ranges from febrauary to august 2017. + +### Acknowledgements + +I would like to thank the authors of Inshorts for their amazing work + +### Inspiration + +* Generating short length descriptions(headlines) from text(news articles). +* Summarizing large amount of information which can be represented in compressed space + +###Purpose + +When I was working on the summarization task I didn't find any open source data-sets to work on, I believe there are people just like me who are working on these tasks and I hope it helps them. + +###Contributions + +It will be really helpful if anyone found nice insights from this data and can share their work. Thankyou...!!! + +For those who are interested here is the link for the github code which includes the scripts for scraping. +https://github.com/sunnysai12345/News_Summary",2331,"[{'ref': 'news_summary_more.csv', 'creationDate': '2019-02-11T08:58:05.282Z', 'datasetRef': 'sunnysai12345/news-summary', 'description': '', 'fileType': '.csv', 'name': 'news_summary_more.csv', 'ownerRef': 'sunnysai12345', 'totalBytes': 41399270, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'headlines', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'news_summary.csv', 'creationDate': '2019-02-11T09:03:29.2402231Z', 'datasetRef': 'sunnysai12345/news-summary', 'description': 'The dataset contains headlines, summarized article and the complete article text which can be used for the summarization task.', 'fileType': '.csv', 'name': 'news_summary.csv', 'ownerRef': 'sunnysai12345', 'totalBytes': 4490240, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'headlines', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'read_more', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'ctext', 'type': 'String', 'originalType': '', 'description': None}]}]",1895,False,False,True,3,2019-02-11T09:03:28.783Z,GPL 2,Kondalarao Vonteru,sunnysai12345,sunnysai12345/news-summary,Generating short length descriptions of news articles.,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'india', 'competitionCount': 0, 'datasetCount': 105, 'description': ""This tag will take you to the wonderful land of datasets and kernels related to India. You will find topics that range far and wide. There's education, travel, weather, and crime, too."", 'fullPath': 'geography and places > asia > india', 'isAutomatic': False, 'name': 'india', 'scriptCount': 84, 'totalCount': 189}, {'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}]",NEWS SUMMARY,2,20492757,https://www.kaggle.com/sunnysai12345/news-summary,0.7647059,"[{'versionNumber': 2, 'creationDate': '2019-02-11T09:03:28.783Z', 'creatorName': 'Kondalarao Vonteru', 'creatorRef': 'news-summary', 'versionNotes': 'Updated Dataset for Text Summarization task', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-08-10T04:30:27.71Z', 'creatorName': 'Kondalarao Vonteru', 'creatorRef': 'news-summary', 'versionNotes': 'Initial release', 'status': 'Ready'}]",19998,75 +123,AsadMahmood,,1,"# Content + +This Dataset is scraped from https://www.thenews.com.pk website. It has news articles from 2015 till date related to business and sports. It Contains the Heading of the particular Article, Its content and its date. The content also contains the place from where the statement or Article was published. + +# Importance + +This dataset can be used to detect main patterns between writing pattern of different types of articles. One more thing that can be extracted from it is that we could also detect the main locations from where the different types of articles originate. + +# Improvements + +Some Data Cleaning could still be done specially in the content area of the dataset. One more thing that could be done is that we could extract the locations from the content and make a separated table for it. + + +# Acknowledgements + +I'd like to thanks developer of Selenium Library. That helped a lot in retrieving the data.",1253,"[{'ref': 'Articles.csv', 'creationDate': '2017-04-30T11:02:00Z', 'datasetRef': 'asad1m9a9h6mood/news-articles', 'description': 'Data set contains 4 columns\n\nArticle : Text having the news article and the place where it was published from\nHeading : Text containing the heading of the news article.\nDate : Date when the article was published.\nNewsType : Type of Article i.e business or sports\n', 'fileType': '.csv', 'name': 'Articles.csv', 'ownerRef': 'asad1m9a9h6mood', 'totalBytes': 1916427, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Article', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Heading', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'NewsType', 'type': 'String', 'originalType': '', 'description': None}]}]",1192,False,False,False,7,2017-04-30T11:02:29.487Z,CC0: Public Domain,AsadMahmood,asad1m9a9h6mood,asad1m9a9h6mood/news-articles,This dataset include articles from 2015 till date,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}, {'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}]",News Articles,1,1916427,https://www.kaggle.com/asad1m9a9h6mood/news-articles,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-04-30T11:02:29.487Z', 'creatorName': 'AsadMahmood', 'creatorRef': 'news-articles', 'versionNotes': 'Initial release', 'status': 'Ready'}]",9126,19 +124,Chris Crawford,,1,"### Context + +This dataset is a collection newsgroup documents. The 20 newsgroups collection has become a popular data set for experiments in text applications of machine learning techniques, such as text classification and text clustering. + + +### Content + +There is file (list.csv) that contains a reference to the document_id number and the newsgroup it is associated with. +There are also 20 files that contain all of the documents, one document per newsgroup. + +In this dataset, duplicate messages have been removed and the original messages only contain ""From"" and ""Subject"" headers (18828 messages total). + +Each new message in the bundled file begins with these four headers: + +Newsgroup: alt.newsgroup + +Document_id: xxxxxx + +From: Cat + +Subject: Meow Meow Meow + +The Newsgroup and Document_id can be referenced against list.csv + + +Organization +- Each newsgroup file in the bundle represents a single newsgroup +- Each message in a file is the text of some newsgroup document that was posted to that newsgroup. + +This is a list of the 20 newsgroups: + +- comp.graphics +- comp.os.ms-windows.misc +- comp.sys.ibm.pc.hardware +- comp.sys.mac.hardware +- comp.windows.x rec.autos +- rec.motorcycles +- rec.sport.baseball +- rec.sport.hockey sci.crypt +- sci.electronics +- sci.med +- sci.space +- misc.forsale talk.politics.misc +- talk.politics.guns +- talk.politics.mideast talk.religion.misc +- alt.atheism +- soc.religion.christian + + +### Acknowledgements + +Ken Lang is credited by the source for collecting this data. The source of the data files is here: +http://qwone.com/~jason/20Newsgroups/ + +### Inspiration + +- This dataset text can be used to classify text documents",2280,"[{'ref': 'alt.atheism.txt', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '799 messgaes', 'fileType': '.txt', 'name': 'alt.atheism.txt', 'ownerRef': 'crawford', 'totalBytes': 1947054, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'comp.graphics.txt', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '973 messages\n', 'fileType': '.txt', 'name': 'comp.graphics.txt', 'ownerRef': 'crawford', 'totalBytes': 1665992, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'comp.os.ms-windows.misc.txt', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '985 messages', 'fileType': '.txt', 'name': 'comp.os.ms-windows.misc.txt', 'ownerRef': 'crawford', 'totalBytes': 2012443, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'comp.sys.ibm.pc.hardware.txt', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '982 messages', 'fileType': '.txt', 'name': 'comp.sys.ibm.pc.hardware.txt', 'ownerRef': 'crawford', 'totalBytes': 964613, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'comp.sys.mac.hardware.txt', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '961 messages', 'fileType': '.txt', 'name': 'comp.sys.mac.hardware.txt', 'ownerRef': 'crawford', 'totalBytes': 859248, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'comp.windows.x.txt', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '980 messages', 'fileType': '.txt', 'name': 'comp.windows.x.txt', 'ownerRef': 'crawford', 'totalBytes': 1503215, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'list.csv', 'creationDate': '2017-07-26T21:02:02Z', 'datasetRef': 'crawford/20-newsgroups', 'description': 'Reference for message and document_id', 'fileType': '.csv', 'name': 'list.csv', 'ownerRef': 'crawford', 'totalBytes': 15722, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'newsgroup', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'document_id', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'misc.forsale.txt', 'creationDate': '2017-07-26T21:02:04Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '972 messages', 'fileType': '.txt', 'name': 'misc.forsale.txt', 'ownerRef': 'crawford', 'totalBytes': 764916, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'rec.autos.txt', 'creationDate': '2017-07-26T21:02:03Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '990 messages', 'fileType': '.txt', 'name': 'rec.autos.txt', 'ownerRef': 'crawford', 'totalBytes': 1081039, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'rec.motorcycles.txt', 'creationDate': '2017-07-26T21:02:04Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '994 messages', 'fileType': '.txt', 'name': 'rec.motorcycles.txt', 'ownerRef': 'crawford', 'totalBytes': 994075, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'rec.sport.baseball.txt', 'creationDate': '2017-07-26T21:02:04Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '994 messages', 'fileType': '.txt', 'name': 'rec.sport.baseball.txt', 'ownerRef': 'crawford', 'totalBytes': 1121955, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'rec.sport.hockey.txt', 'creationDate': '2017-07-26T21:02:04Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '999 messages', 'fileType': '.txt', 'name': 'rec.sport.hockey.txt', 'ownerRef': 'crawford', 'totalBytes': 1388474, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'sci.crypt.txt', 'creationDate': '2017-07-26T21:02:05Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '991 messages', 'fileType': '.txt', 'name': 'sci.crypt.txt', 'ownerRef': 'crawford', 'totalBytes': 1602512, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'sci.electronics.txt', 'creationDate': '2017-07-26T21:02:05Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '981 messages', 'fileType': '.txt', 'name': 'sci.electronics.txt', 'ownerRef': 'crawford', 'totalBytes': 986093, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'sci.med.txt', 'creationDate': '2017-07-26T21:02:04Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '981 messages', 'fileType': '.txt', 'name': 'sci.med.txt', 'ownerRef': 'crawford', 'totalBytes': 1483800, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'sci.space.txt', 'creationDate': '2017-07-26T21:02:05Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '987 messages', 'fileType': '.txt', 'name': 'sci.space.txt', 'ownerRef': 'crawford', 'totalBytes': 1443054, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'soc.religion.christian.txt', 'creationDate': '2017-07-26T21:02:06Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '997 messages', 'fileType': '.txt', 'name': 'soc.religion.christian.txt', 'ownerRef': 'crawford', 'totalBytes': 1880867, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'talk.politics.guns.txt', 'creationDate': '2017-07-26T21:02:05Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '910 messages', 'fileType': '.txt', 'name': 'talk.politics.guns.txt', 'ownerRef': 'crawford', 'totalBytes': 1550401, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'talk.politics.mideast.txt', 'creationDate': '2017-07-26T21:02:06Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '940 messages', 'fileType': '.txt', 'name': 'talk.politics.mideast.txt', 'ownerRef': 'crawford', 'totalBytes': 2260660, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'talk.politics.misc.txt', 'creationDate': '2017-07-26T21:02:06Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '775 messages', 'fileType': '.txt', 'name': 'talk.politics.misc.txt', 'ownerRef': 'crawford', 'totalBytes': 1629765, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'talk.religion.misc.txt', 'creationDate': '2017-07-26T21:02:05Z', 'datasetRef': 'crawford/20-newsgroups', 'description': '628 messages', 'fileType': '.txt', 'name': 'talk.religion.misc.txt', 'ownerRef': 'crawford', 'totalBytes': 1107175, 'url': 'https://www.kaggle.com/', 'columns': []}]",1740,False,False,True,9,2017-07-26T21:05:38.987Z,Other (specified in description),Chris Crawford,crawford,crawford/20-newsgroups,"A collection of ~18,000 newsgroup documents from 20 different newsgroups","[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}]",20 Newsgroups,1,28248814,https://www.kaggle.com/crawford/20-newsgroups,0.8235294,"[{'versionNumber': 1, 'creationDate': '2017-07-26T21:05:38.987Z', 'creatorName': 'Chris Crawford', 'creatorRef': '20-newsgroups', 'versionNotes': 'Initial release', 'status': 'Ready'}]",20813,50 +125,Rohk,,4,"# Context + +This dataset is a snapshot of most of the new news content published online over one week. It covers the 7 Day-period of August 24 through August 30 for the years 2017 and 2018. + +Year 2017: 1,398,431 ; Year 2018: 1,912,873 + +Prepared by **Rohit Kulkarni** + +It includes approximately **3.3 million** articles, with **20,000 news sources** and **20+ languages**. + +This dataset has just four fields (as per the [column metadata](https://www.kaggle.com/therohk/global-news-week/data)): + + - **publish_time** - earliest known time of the url appearing online in yyyyMMddHHmm format, IST timezone + + - **feed_code** - unique identifier for the publisher or domain + + - **source_url** - url of the article + + - **headline_text** - Headline of the article (UTF8, 20+ possible languages) + +See the [""Basic Feed Exploration""](https://www.kaggle.com/therohk/basic-feed-code-exploration) notebook for a quick look at the dataset contents. + +# Inspiration + +The sources include news feeds, news websites, government agencies, tech journals, company websites, blogs and wikipedia updates. The data has been collected by polling RSS feeds and by crawling other large news aggregators. + +As of 2017, this 7 day slice was selected as there wasn't any downtime or outage during the interval. New news content is produced at this rate by publishers everyday, throughout the year. + +# Acknowledgements + +This dataset is free to use with the following citation: + +Rohit Kulkarni (2018), One Week of Global Feeds [News CSV Dataset], doi:10.7910/DVN/ILAT5B, Retrieved from: [this url] + +Remodelling from raw IJS news feed: http://newsfeed.ijs.si/ + +Original paper by M Trampus, B Novak: Internals of An Aggregated Web News Feed + +Hosted By: Josef Stefan Institute, Slovenia : http://ailab.ijs.si/people/ + +Lieve News: http://eventregistry.org/",1047,"[{'ref': 'news-week-17aug24.csv', 'creationDate': '2019-04-10T15:05:18.7708652Z', 'datasetRef': 'therohk/global-news-week', 'description': 'doi:10.7910/DVN/ILAT5B', 'fileType': '.csv', 'name': 'news-week-17aug24.csv', 'ownerRef': 'therohk', 'totalBytes': 294039203, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_time', 'type': 'DateTime', 'originalType': '', 'description': 'publish timestamp in yyyyMMddHHmm format, IST timezone'}, {'order': 1, 'name': 'feed_code', 'type': 'Uuid', 'originalType': '', 'description': 'unique feed identifier'}, {'order': 2, 'name': 'source_url', 'type': None, 'originalType': '', 'description': 'url of the article'}, {'order': 3, 'name': 'headline_text', 'type': 'String', 'originalType': '', 'description': 'headline contents in UTF8'}]}, {'ref': 'news-week-18aug24.csv', 'creationDate': '2019-04-10T15:05:19.0583051Z', 'datasetRef': 'therohk/global-news-week', 'description': 'doi:10.7910/DVN/ILAT5B', 'fileType': '.csv', 'name': 'news-week-18aug24.csv', 'ownerRef': 'therohk', 'totalBytes': 418137459, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_time', 'type': 'DateTime', 'originalType': '', 'description': 'publish timestamp in yyyyMMddHHmm format, IST timezone'}, {'order': 1, 'name': 'feed_code', 'type': 'Uuid', 'originalType': '', 'description': 'unique feed identifier'}, {'order': 2, 'name': 'source_url', 'type': None, 'originalType': '', 'description': 'url of the article'}, {'order': 3, 'name': 'headline_text', 'type': 'String', 'originalType': '', 'description': 'headline content in UTF8'}]}]",2670,False,False,True,8,2019-04-10T15:05:18.423Z,CC0: Public Domain,Rohk,therohk,therohk/global-news-week,7 days of tracking 20k news feeds worldwide,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}, {'ref': 'historiography', 'competitionCount': 0, 'datasetCount': 5, 'description': 'Historiography is the study of the methods of historians in developing history as an academic discipline, and by extension is any body of historical work on a particular subject.', 'fullPath': 'history and events > historiography', 'isAutomatic': False, 'name': 'historiography', 'scriptCount': 1, 'totalCount': 6}]",One Week of Global News Feeds,2,282624224,https://www.kaggle.com/therohk/global-news-week,0.882352948,"[{'versionNumber': 4, 'creationDate': '2019-04-10T15:05:18.423Z', 'creatorName': 'Rohk', 'creatorRef': 'global-news-week', 'versionNotes': 'final update null changes', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-10-06T08:58:51.787Z', 'creatorName': 'Rohk', 'creatorRef': 'global-news-week', 'versionNotes': 'same interval update 2018 and renamed files', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-09-29T20:34:06.473Z', 'creatorName': 'Rohk', 'creatorRef': 'global-news-week', 'versionNotes': 'filled missing time gaps (180k records) and removed most comment articles', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-09-25T06:29:06.88Z', 'creatorName': 'Rohk', 'creatorRef': 'global-news-week', 'versionNotes': 'Initial release', 'status': 'Ready'}]",13218,44 +126,Sohier Dane,,2,"### Context + +This dataset contains a randomized sample of roughly one quarter of all stories and comments from Hacker News from its launch in 2006. Hacker News is a social news website focusing on computer science and entrepreneurship. It is run by Paul Graham's investment fund and startup incubator, Y Combinator. In general, content that can be submitted is defined as ""anything that gratifies one's intellectual curiosity"". + +### Content + +Each story contains a story ID, the author that made the post, when it was written, and the number of points the story received. + +Please note that the text field includes profanity. All texts are the author’s own, do not necessarily reflect the positions of Kaggle or Hacker News, and are presented without endorsement. + +### Acknowledgements + +This dataset was kindly made publicly available by [Hacker News][1] under [the MIT license][2]. + +### Inspiration + + - Recent studies have found that many forums tend to be dominated by a + very small fraction of users. Is this true of Hacker News? + + - Hacker News has received complaints that the site is biased towards Y + Combinator startups. Do the data support this? + + - Is the amount of coverage by Hacker News predictive of a startup’s + success? + +### Use this dataset with BigQuery + +You can use Kernels to analyze, share, and discuss this data on Kaggle, but if you’re looking for real-time updates and bigger data, check out the data in BigQuery, too: https://cloud.google.com/bigquery/public-data/hacker-news + +The BigQuery version of this dataset has roughly four times as many articles. + + + + [1]: https://github.com/HackerNews/API + [2]: https://github.com/HackerNews/API/blob/master/LICENSE",676,"[{'ref': 'hacker_news_sample.csv', 'creationDate': '2017-06-29T19:53:22Z', 'datasetRef': 'hacker-news/hacker-news-corpus', 'description': '25% of the full hacker news corpus.', 'fileType': '.csv', 'name': 'hacker_news_sample.csv', 'ownerRef': 'hacker-news', 'totalBytes': 667291612, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'dead', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'by', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'score', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'time', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'parent', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'descendants', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'ranking', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'deleted', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}]}]",1494,False,False,True,4,2017-06-29T20:16:20.2Z,Other (specified in description),Hacker News,hacker-news,hacker-news/hacker-news-corpus,A subset of all Hacker News articles,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Hacker News Corpus,1,667291612,https://www.kaggle.com/hacker-news/hacker-news-corpus,0.8235294,"[{'versionNumber': 2, 'creationDate': '2017-06-29T20:16:20.2Z', 'creatorName': 'Sohier Dane', 'creatorRef': 'hacker-news-corpus', 'versionNotes': 'Resolved issue with duplicated headers; resampled.', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-06-28T23:05:02.213Z', 'creatorName': 'Sohier Dane', 'creatorRef': 'hacker-news-corpus', 'versionNotes': 'Initial release', 'status': 'Ready'}]",14972,32 +127,Marlesson,,2,"### Content + +The dataset consists of 167.053 examples and contains Headlines, Url of Article, Complete Article and Category. I gathered the summarized news from Inshorts and only scraped the news articles from Folha de São Paulo - http://www.folha.uol.com.br/ (Brazilian Newspaper). Time period ranges is between January 2015 and September 2017.",947,"[{'ref': 'articles.csv', 'creationDate': '2019-06-05T03:30:17.358Z', 'datasetRef': 'marlesson/news-of-the-site-folhauol', 'description': '', 'fileType': '.csv', 'name': 'articles.csv', 'ownerRef': 'marlesson', 'totalBytes': 503611422, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 3, 'name': 'category', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'subcategory', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'link', 'type': None, 'originalType': '', 'description': None}]}]",3660,False,False,True,7,2019-06-05T03:33:51.58Z,CC0: Public Domain,Marlesson,marlesson,marlesson/news-of-the-site-folhauol,167.053 news of the site Folha de São Paulo (Brazilian Newspaper),"[{'ref': 'languages', 'competitionCount': 2, 'datasetCount': 174, 'description': 'Language is a method of communication that consists of using words arranged into meaningful patterns. This is a good place to find natural language processing datasets and kernels to study languages and train your chat bots.', 'fullPath': 'culture and arts > culture and humanities > languages', 'isAutomatic': False, 'name': 'languages', 'scriptCount': 40, 'totalCount': 216}, {'ref': 'brazil', 'competitionCount': 0, 'datasetCount': 80, 'description': ""You don't have to visit Brazil to learn about their politics, soccer, and brush with Zika. This tag covers all the things you might be interested in about Brazil."", 'fullPath': 'geography and places > south america > brazil', 'isAutomatic': False, 'name': 'brazil', 'scriptCount': 23, 'totalCount': 103}, {'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}]",News of the Brazilian Newspaper,0,193086895,https://www.kaggle.com/marlesson/news-of-the-site-folhauol,0.7058824,"[{'versionNumber': 2, 'creationDate': '2019-06-05T03:33:51.58Z', 'creatorName': 'Marlesson', 'creatorRef': 'news-of-the-site-folhauol', 'versionNotes': 'v2', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-10-30T09:09:53.38Z', 'creatorName': 'Marlesson', 'creatorRef': 'news-of-the-site-folhauol', 'versionNotes': 'Initial release', 'status': 'Ready'}]",3921,27 +128,Rohk,,6,"### Context + +Presenting a compendium of crowdsourced journalism from the psuedo-news site **The Examiner**. + +This dataset contains the headlines of **3.09 million articles** written by **~21000 authors** over **6 years**. + +While The Examiner was never praised for its quality, it consistently churned out 1000s of articles per day over several years. + +At their height in 2011, The Examiner was ranked highly in google search and had enormous shares on social media. +At one point it was the 10th largest site on mobile and was attracting 20 million unique visitors a month. + +As a platform driven towards advert revenue, most of their content was rushed, unsourced and factually sparse. +It still manages to paint a colourful picture about the trending topics over a long period of time. + +Prepared by Rohit Kulkarni + +### Content + +Format: CSV Rows: 3,089,781 + + - **publish_date**: Date when the article was published on the site in yyyyMMdd format + - **headline_text**: Text of the headline in English in Ascii + +Start Date: 2010-01-01 End Date: 2015-21-31 + +Another copy of the file with headlines tokenised to lowercase ascii only is included. Note that both files were derived using alternate methodologies and might not be in sync. + +Similar news datasets exploring other attributes, countries and topics can be accessed via my profile. + +### Inspiration + +The Examiner had emerged as an early winner in the digital content landscape of the 2000's using catchy headlines. + +It changed many roles over the years, from leftist citizen news to a multiuser blogging platform to a content farm. + +With falling views its operations were absorbed by AXS in 2014 and the website was finally shut down in June 2016. + +The original portal and content no longer exists: http://www.examiner.com + +This is potentially, the last surviving record of its existence.",823,"[{'ref': 'examiner-date-text.csv', 'creationDate': '2019-06-22T12:03:22.301688Z', 'datasetRef': 'therohk/examine-the-examiner', 'description': '', 'fileType': '.csv', 'name': 'examiner-date-text.csv', 'ownerRef': 'therohk', 'totalBytes': 202676620, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_date', 'type': 'Uuid', 'originalType': '', 'description': 'Date of publishing of article yyyyMMdd'}, {'order': 1, 'name': 'headline_text', 'type': 'String', 'originalType': '', 'description': 'Headline text'}]}, {'ref': 'examiner-date-tokens.csv', 'creationDate': '2019-06-22T12:02:05.497Z', 'datasetRef': 'therohk/examine-the-examiner', 'description': 'hisc:10.7910/DVN/I4HKOO', 'fileType': '.csv', 'name': 'examiner-date-tokens.csv', 'ownerRef': 'therohk', 'totalBytes': 191045900, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_date', 'type': 'Uuid', 'originalType': '', 'description': 'Date of publishing of article yyyyMMdd'}, {'order': 1, 'name': 'headline_tokens', 'type': 'String', 'originalType': '', 'description': 'Headline Text in lowercase tokenized ascii form'}]}]",1819,False,False,True,4,2019-06-22T12:03:21.843Z,CC0: Public Domain,Rohk,therohk,therohk/examine-the-examiner,SiX Years of Crowd Sourced Journalism,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'sociology', 'competitionCount': 0, 'datasetCount': 34, 'description': 'Sociology is the study of society, including patterns of social relationships, and culture. Why are there so many people in the gym right now? What do young people do with their time? What do people tweet about in the morning?', 'fullPath': 'society and social sciences > social sciences > sociology', 'isAutomatic': False, 'name': 'sociology', 'scriptCount': 6, 'totalCount': 40}, {'ref': 'historiography', 'competitionCount': 0, 'datasetCount': 5, 'description': 'Historiography is the study of the methods of historians in developing history as an academic discipline, and by extension is any body of historical work on a particular subject.', 'fullPath': 'history and events > historiography', 'isAutomatic': False, 'name': 'historiography', 'scriptCount': 1, 'totalCount': 6}]",The Examiner - SpamClickBait News Dataset,0,148217226,https://www.kaggle.com/therohk/examine-the-examiner,0.8235294,"[{'versionNumber': 6, 'creationDate': '2019-06-22T12:03:21.843Z', 'creatorName': 'Rohk', 'creatorRef': 'examine-the-examiner', 'versionNotes': 'tokens finale', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2019-05-06T18:16:21.923Z', 'creatorName': 'Rohk', 'creatorRef': 'examine-the-examiner', 'versionNotes': 'vector updates', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2018-10-24T17:09:08.957Z', 'creatorName': 'Rohk', 'creatorRef': 'examine-the-examiner', 'versionNotes': 'moonshine data fixes', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-11-19T21:01:41.287Z', 'creatorName': 'Rohk', 'creatorRef': 'examine-the-examiner', 'versionNotes': 'unicode cleanup of text file ~170k rows', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-08-05T11:58:27.517Z', 'creatorName': 'Rohk', 'creatorRef': 'examine-the-examiner', 'versionNotes': 'copy of file with tokenised headlines added', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-08-03T19:14:19.367Z', 'creatorName': 'Rohk', 'creatorRef': 'examine-the-examiner', 'versionNotes': 'Initial release', 'status': 'Ready'}]",11330,34 +129,Pariza Sharif ,,2,"### Context + +Text summarization is a way to condense the large amount of information into a concise form by the process of selection of important information and discarding unimportant and redundant information. With the amount of textual information present in the world wide web the area of text summarization is becoming very important. The extractive summarization is the one where the exact sentences present in the document are used as summaries. The extractive summarization is simpler and is the general practice among the automatic text summarization researchers at the present time. Extractive summarization process involves giving scores to sentences using some method and then using the sentences that achieve highest scores as summaries. As the exact sentence present in the document is used the semantic factor can be ignored which results in generation of less calculation intensive summarization procedure. This kind of summary is generally completely unsupervised and language independent too. Although this kind of summary does its job in conveying the essential information it may not be necessarily smooth or fluent. Sometimes there can be almost no connection between adjacent sentences in the summary resulting in the text lacking in readability. + + +### Content + +This dataset for extractive text summarization has four hundred and seventeen political news articles of BBC from 2004 to 2005 in the News Articles folder. For each articles, five summaries are provided in the Summaries folder. The first clause of the text of articles is the respective title. + + +### Acknowledgements + +This dataset was created using a dataset used for data categorization that onsists of 2225 documents from the BBC news website corresponding to stories in five topical areas from 2004-2005 used in the paper of D. Greene and P. Cunningham. ""Practical Solutions to the Problem of Diagonal Dominance in Kernel Document Clustering"", Proc. ICML 2006; whose all rights, including copyright, in the content of the original articles are owned by the BBC. More at http://mlg.ucd.ie/datasets/bbc.html +",1481,"[{'ref': 'BBC News Summary.rar', 'creationDate': '2018-05-06T11:07:03.502Z', 'datasetRef': 'pariza/bbc-news-summary', 'description': '', 'fileType': '.rar', 'name': 'BBC News Summary.rar', 'ownerRef': 'pariza', 'totalBytes': 4207017, 'url': 'https://www.kaggle.com/', 'columns': []}]",24984,False,False,False,2,2018-05-06T11:08:19.42Z,CC0: Public Domain,Pariza Sharif ,pariza,pariza/bbc-news-summary,Extractive Summarization of BBC News Articles ,"[{'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}, {'ref': 'text data', 'competitionCount': 25, 'datasetCount': 212, 'description': None, 'fullPath': 'data type > text data', 'isAutomatic': False, 'name': 'text data', 'scriptCount': 334, 'totalCount': 571}]",BBC News Summary,2,3928416,https://www.kaggle.com/pariza/bbc-news-summary,0.75,"[{'versionNumber': 2, 'creationDate': '2018-05-06T11:08:19.42Z', 'creatorName': 'Pariza Sharif ', 'creatorRef': 'bbc-news-summary', 'versionNotes': 'This dataset for extractive text summarization has news articles of BBC from 2004 to 2005 in the News Articles folder. For each articles, a summary is provided in the Summaries folder. The first clause of the text of articles is the respective title. News articles and summaries are of five categories.', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-05-04T02:19:38.607Z', 'creatorName': 'Pariza Sharif ', 'creatorRef': 'bbc-news-summary', 'versionNotes': 'Initial release', 'status': 'Ready'}]",7948,22 +130,Ceshine Lee,,7,"A collections of news articles in Traditional and Simplified Chinese. It includes some Internet news outlets that are NOT Chinese state media (they deserve a separate dataset). + +Complete coverage is not guaranteed. Therefore this dataset is not suitable for analyzing event coverage. It is meant for using as a corpus for NLP algorithms. + +## Data Collection Process + +1. The links to the news articles were collected from the RSS feeds or the Twitter accounts of the news outlets. +2. Download and parse the web pages. Then the meta tags were used to extract the title, description/summary, and cover image of each article. (These are the stuffs that are used in the Twitter and Facebook summary cards.) + +Note: Only minimal text cleaning has been performed on the meta tags. + +### Data Fields + +1. title: Article title from `og:title` or `twitter:title` meta tag. +2. desc: Article summary from `twitter:description` or `og:description` meta tag. +3. image: URL to the cover image from `twitter:image` or `og:image` meta tag. +4. url: URL of the article. +5. source: The code of the news outlet. +6. date: The publish date of the article on Twitter or in RSS feeds. Format: YYYYMMDD + +This dataset does not provide full texts of the article. You'll need to scrape it yourself using the links provided. +",137,"[{'ref': 'news_collection.csv', 'creationDate': '2019-07-11T16:59:31.924Z', 'datasetRef': 'ceshine/yet-another-chinese-news-dataset', 'description': 'A collection of news articles.', 'fileType': '.csv', 'name': 'news_collection.csv', 'ownerRef': 'ceshine', 'totalBytes': 56757087, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'Article title from og:title or twitter:title meta tag.'}, {'order': 1, 'name': 'desc', 'type': 'String', 'originalType': '', 'description': 'Article summary from twitter:description or og:description meta tag.'}, {'order': 2, 'name': 'image', 'type': 'String', 'originalType': '', 'description': 'URL to the cover image from twitter:image or og:image meta tag.'}, {'order': 3, 'name': 'url', 'type': None, 'originalType': '', 'description': 'URL of the article.'}, {'order': 4, 'name': 'source', 'type': 'String', 'originalType': '', 'description': 'The code of the news outlets.'}, {'order': 5, 'name': 'date', 'type': 'Uuid', 'originalType': '', 'description': 'The publish date of the article on Twitter or in RSS feeds. Format: YYYYMMDD'}]}]",124897,False,False,True,4,2019-07-11T17:01:17.377Z,CC BY-SA 4.0,Ceshine Lee,ceshine,ceshine/yet-another-chinese-news-dataset,"With Article Titles, Descriptions, Cover Images, and Links.","[{'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}, {'ref': 'image data', 'competitionCount': 63, 'datasetCount': 534, 'description': None, 'fullPath': 'data type > image data', 'isAutomatic': False, 'name': 'image data', 'scriptCount': 317, 'totalCount': 914}, {'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}]",Yet Another Chinese News Dataset,0,24983959,https://www.kaggle.com/ceshine/yet-another-chinese-news-dataset,1.0,"[{'versionNumber': 7, 'creationDate': '2019-07-11T17:01:17.377Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': '2019 May and June', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2019-05-31T05:04:08.737Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': 'April 2019', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2019-04-08T11:05:34.303Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': 'March 2019', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2019-03-10T13:40:38.7Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': '20190303-20190310', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2019-03-03T06:09:09.07Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': 'update to 2019-03-02', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2019-02-25T04:47:19.093Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': '20190222 - 20190224', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2019-02-22T04:50:07.513Z', 'creatorName': 'Ceshine Lee', 'creatorRef': 'yet-another-chinese-news-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1974,15 +131,Liling Tan,,6,"### Context + +The [HC Corpora](https://web.archive.org/web/20161021044006/http://corpora.heliohost.org/) was a great resource that contains natural language text from various newspapers, social media posts and blog pages in multiple languages. This is a cleaned version of the raw data from newspaper subset of the HC corpus. + +Originally, this subset was created for a [language identification task for similar languages](http://corporavm.uni-koeln.de/vardial/sharedtask.html) + +### Content + +The columns of each row in the `.tsv` file are: + + - **Langauge**: Language of the text. + - **Source**: Newspaper from which the text is from. + - **Date**: Date of the article that contains the text. + - **Text**: Sentence/paragraph from the newspaper + +The corpus contains 16,806,041 sentences/paragraphs in 67 languages: + + - Afrikaans + - Albanian + - Amharic + - Arabic + - Armenian + - Azerbaijan + - Bengali + - Bosnian + - Catalan + - Chinese (Simplified) + - Chinese (Traditional) + - Croatian + - Welsh + - Czech + - German + - Danish + - Danish + - English + - Spanish + - Spanish (South America) + - Finnish + - French + - Georgian + - Galician + - Greek + - Hebrew + - Hindi + - Hungarian + - Icelandic + - Indonesian + - Italian + - Japanese + - Khmer + - Kannada + - Korean + - Kazakh + - Lithuanian + - Latvian + - Macedonian + - Malayalam + - Mongolian + - Malay + - Nepali + - Dutch + - Norwegian (Bokmal) + - Punjabi + - Farsi + - Polish + - Portuguese (Brazil) + - Portuguese (EU) + - Romanian + - Russian + - Serbian + - Sinhalese + - Slovak + - Slovenian + - Swahili + - Swedish + - Tamil + - Telugu + - Tagalog + - Thai + - Turkish + - Ukranian + - Urdu + - Uzbek + - Vietnamese + +Languages in HC Corpora but not in this (yet): + + - Estonian + - Greenlandic + - Gujarati + +### Acknowledge + +All credits goes to Hans Christensen, the creator of HC Corpora. + +Dataset image is from [Philip Strong](https://unsplash.com/search/photos/newspaper?photo=gZaj16Ztu2Y). + + +### Inspire + +Use this dataset to: + + - create a language identifier / detector + - exploratory corpus linguistics (It’s one capstone project from [Coursera’s data science specialization](https://www.coursera.org/learn/data-science-project) )",847,"[{'ref': 'old-newspaper.tsv', 'creationDate': '2017-11-16T04:37:08.064Z', 'datasetRef': 'alvations/old-newspapers', 'description': '', 'fileType': '.tsv', 'name': 'old-newspaper.tsv', 'ownerRef': 'alvations', 'totalBytes': 6024697599, 'url': 'https://www.kaggle.com/', 'columns': []}]",2007,False,False,True,3,2017-11-16T04:53:55.98Z,CC0: Public Domain,Liling Tan,alvations,alvations/old-newspapers,A cleaned subset of HC Corpora newspapers,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'history', 'competitionCount': 1, 'datasetCount': 70, 'description': ""History is generally the study of past events that have shaped the world. Here on Kaggle, you'll find historical records and analyses on topics like Bitcoin data, UFO sightings, and sports tournaments."", 'fullPath': 'philosophy and thinking > philosophy > history', 'isAutomatic': False, 'name': 'history', 'scriptCount': 68, 'totalCount': 139}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Old Newspapers,0,2196786581,https://www.kaggle.com/alvations/old-newspapers,0.75,"[{'versionNumber': 6, 'creationDate': '2017-11-16T04:53:55.98Z', 'creatorName': 'Liling Tan', 'creatorRef': 'old-newspapers', 'versionNotes': 'Single file clean version', 'status': 'Ready'}, {'versionNumber': 5, 'creationDate': '2017-08-22T08:19:12.957Z', 'creatorName': 'Liling Tan', 'creatorRef': 'old-newspapers', 'versionNotes': 'All of it!!', 'status': 'Ready'}, {'versionNumber': 4, 'creationDate': '2017-08-22T07:36:27.773Z', 'creatorName': 'Liling Tan', 'creatorRef': 'old-newspapers', 'versionNotes': '1 to 15 ', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2017-08-22T06:39:43.447Z', 'creatorName': 'Liling Tan', 'creatorRef': 'old-newspapers', 'versionNotes': 'Added more parts', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-08-22T05:47:11.61Z', 'creatorName': 'Liling Tan', 'creatorRef': 'old-newspapers', 'versionNotes': 'Added Part 2', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-08-22T05:40:44.103Z', 'creatorName': 'Liling Tan', 'creatorRef': 'old-newspapers', 'versionNotes': 'Try part01', 'status': 'Ready'}]",8191,20 +132,Megan Risdal,,1,"The latest hot topic in the news is fake news and many are wondering what data scientists can do to detect it and stymie its viral spread. This dataset is only a first step in understanding and tackling this problem. It contains text and metadata scraped from 244 websites tagged as ""bullshit"" by the [BS Detector][2] Chrome Extension by [Daniel Sieradski][3]. + +**Warning**: I did not modify the list of news sources from the BS Detector so as not to introduce my (useless) layer of bias; I'm not an authority on fake news. There may be sources whose inclusion you disagree with. It's up to you to decide how to work with the data and how you might contribute to ""improving it"". The labels of ""bs"" and ""junksci"", etc. do not constitute capital ""t"" Truth. If there are other sources you would like to include, start a discussion. If there are sources you believe should not be included, start a discussion or write a kernel analyzing the data. Or take the data and do something else productive with it. Kaggle's choice to host this dataset is not meant to express any particular political affiliation or intent. + +## Contents + +The dataset contains text and metadata from 244 websites and represents 12,999 posts in total from the past 30 days. The data was pulled using the [webhose.io][4] API; because it's coming from their crawler, not all websites identified by the BS Detector are present in this dataset. Each website was labeled according to the BS Detector as documented here. Data sources that were missing a label were simply assigned a label of ""bs"". There are (ostensibly) no genuine, reliable, or trustworthy news sources represented in this dataset (so far), so don't trust anything you read. + +## Fake news in the news + +For inspiration, I've included some (presumably non-fake) recent stories covering fake news in the news. This is a sensitive, nuanced topic and if there are other resources you'd like to see included here, please leave a suggestion. From defining fake, biased, and misleading news in the first place to deciding how to take action (a blacklist is not a good answer), there's a lot of information to consider beyond what can be neatly arranged in a CSV file. + +* [How Fake News Spreads (NYT)][6] + +* [We Tracked Down A Fake-News Creator In The Suburbs. Here's What We Learned (NPR)][7] + +* [Does Facebook Generate Over Half of its Revenue from Fake News? (Forbes)][8] + +* [Fake News is Not the Only Problem (Points - Medium)][9] + +* [Washington Post Disgracefully Promotes a McCarthyite Blacklist From a New, Hidden, and Very Shady Group (The Intercept)][10] + +## Improvements + +If you have suggestions for improvements or would like to contribute, please let me know. The most obvious extensions are to include data from ""real"" news sites and to address the bias in the current list. I'd be happy to include any contributions in future versions of the dataset. + +## Acknowledgements + +Thanks to [Anthony][11] for pointing me to [Daniel Sieradski's BS Detector][12]. Thank you to Daniel Nouri for encouraging me to add a disclaimer to the dataset's page. + + + [2]: https://github.com/selfagency/bs-detector + [3]: https://github.com/selfagency + [4]: https://webhose.io/api + [5]: https://github.com/selfagency/bs-detector/blob/master/chrome/data/data.json + [6]: http://www.nytimes.com/2016/11/20/business/media/how-fake-news-spreads.html + [7]: http://www.npr.org/sections/alltechconsidered/2016/11/23/503146770/npr-finds-the-head-of-a-covert-fake-news-operation-in-the-suburbs + [8]: http://www.forbes.com/forbes/welcome/?toURL=http://www.forbes.com/sites/petercohan/2016/11/25/does-facebook-generate-over-half-its-revenue-from-fake-news + [9]: https://points.datasociety.net/fake-news-is-not-the-problem-f00ec8cdfcb#.577yk6s8a + [10]: https://theintercept.com/2016/11/26/washington-post-disgracefully-promotes-a-mccarthyite-blacklist-from-a-new-hidden-and-very-shady-group/ + [11]: https://www.kaggle.com/antgoldbloom + [12]: https://github.com/selfagency/bs-detector",12762,"[{'ref': 'fake.csv', 'creationDate': '2016-11-25T22:05:18Z', 'datasetRef': 'mrisdal/fake-news', 'description': 'Text and metadata from fake news sites', 'fileType': '.csv', 'name': 'fake.csv', 'ownerRef': 'mrisdal', 'totalBytes': 21412001, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'uuid', 'type': 'String', 'originalType': '', 'description': 'Unique identifier'}, {'order': 1, 'name': 'ord_in_thread', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'author', 'type': 'String', 'originalType': '', 'description': 'author of story'}, {'order': 3, 'name': 'published', 'type': 'DateTime', 'originalType': '', 'description': 'date published'}, {'order': 4, 'name': 'title', 'type': 'String', 'originalType': '', 'description': 'title of the story'}, {'order': 5, 'name': 'text', 'type': 'String', 'originalType': '', 'description': 'text of story'}, {'order': 6, 'name': 'language', 'type': 'String', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 7, 'name': 'crawled', 'type': 'DateTime', 'originalType': '', 'description': 'date the story was archived'}, {'order': 8, 'name': 'site_url', 'type': 'String', 'originalType': 'String', 'description': 'site URL from [BS detector](https://github.com/bs-detector/bs-detector/blob/dev/ext/data/data.json)'}, {'order': 9, 'name': 'country', 'type': 'String', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 10, 'name': 'domain_rank', 'type': 'Numeric', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 11, 'name': 'thread_title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'spam_score', 'type': 'Numeric', 'originalType': '', 'description': 'data from webhose.io'}, {'order': 13, 'name': 'main_img_url', 'type': 'String', 'originalType': '', 'description': 'image from story'}, {'order': 14, 'name': 'replies_count', 'type': 'Numeric', 'originalType': '', 'description': 'number of replies'}, {'order': 15, 'name': 'participants_count', 'type': 'Numeric', 'originalType': '', 'description': 'number of participants'}, {'order': 16, 'name': 'likes', 'type': 'Numeric', 'originalType': '', 'description': 'number of Facebook likes'}, {'order': 17, 'name': 'comments', 'type': 'Numeric', 'originalType': '', 'description': 'number of Facebook comments'}, {'order': 18, 'name': 'shares', 'type': 'Numeric', 'originalType': '', 'description': 'number of Facebook shares'}, {'order': 19, 'name': 'type', 'type': 'String', 'originalType': '', 'description': 'type of website (label from [BS detector](https://github.com/bs-detector/bs-detector/blob/dev/ext/data/data.json))'}]}]",444,False,False,True,93,2016-11-25T22:29:09.737Z,CC0: Public Domain,Megan Risdal,mrisdal,mrisdal/fake-news,Text & metadata from fake & biased news sources around the web,"[{'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'languages', 'competitionCount': 2, 'datasetCount': 174, 'description': 'Language is a method of communication that consists of using words arranged into meaningful patterns. This is a good place to find natural language processing datasets and kernels to study languages and train your chat bots.', 'fullPath': 'culture and arts > culture and humanities > languages', 'isAutomatic': False, 'name': 'languages', 'scriptCount': 40, 'totalCount': 216}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}]",Getting Real about Fake News,6,21412001,https://www.kaggle.com/mrisdal/fake-news,0.852941155,"[{'versionNumber': 1, 'creationDate': '2016-11-25T22:29:09.737Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'fake-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",140721,337 +133,jruvika,,1,,1460,"[{'ref': 'data.csv', 'creationDate': '2017-12-07T20:39:37.634Z', 'datasetRef': 'jruvika/fake-news-detection', 'description': '', 'fileType': '.csv', 'name': 'data.csv', 'ownerRef': 'jruvika', 'totalBytes': 12571451, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'URLs', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Headline', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Body', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Label', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'data.h5', 'creationDate': '2017-12-07T20:39:46.681Z', 'datasetRef': 'jruvika/fake-news-detection', 'description': '', 'fileType': '.h5', 'name': 'data.h5', 'ownerRef': 'jruvika', 'totalBytes': 143604096, 'url': 'https://www.kaggle.com/', 'columns': []}]",6410,False,False,False,6,2017-12-07T20:39:58Z,"Database: Open Database, Contents: © Original Authors",jruvika,jruvika,jruvika/fake-news-detection,,[],Fake News detection,2,5123582,https://www.kaggle.com/jruvika/fake-news-detection,0.294117659,"[{'versionNumber': 1, 'creationDate': '2017-12-07T20:39:58Z', 'creatorName': 'jruvika', 'creatorRef': 'fake-news-detection', 'versionNotes': 'Initial release', 'status': 'Ready'}]",11614,24 +134,Deepak Mahudeswaran,,1,"##FakeNewsNet +This is a repository for an ongoing data collection project for fake news research at ASU. We describe and compare FakeNewsNet with other existing datasets in [Fake News Detection on Social Media: A Data Mining Perspective][1]. We also perform a detail analysis of FakeNewsNet dataset, and build a fake news detection model on this dataset in [Exploiting Tri-Relationship for Fake News Detection][2] + +JSON version of this dataset is available in github [here][3]. +The new version of this dataset described in [FakeNewNet][4] will be published soon or you can email authors for more info. + +## News Content +It includes all the fake news articles, with the news content attributes as follows: + +1. _source_: It indicates the author or publisher of the news article +2. _headline_: It refers to the short text that aims to catch the attention of readers and relates well to the major of the news topic. +3. _body_text_: It elaborates the details of news story. Usually there is a major claim which shaped the angle of the publisher and is specifically highlighted and elaborated upon. +4. _image_video_: It is an important part of body content of news article, which provides visual cues to frame the story. + +## Social Context +It includes the social engagements of fake news articles from Twitter. We extract profiles, posts and social network information for all relevant users. + +1. _user_profile_: It includes a set of profile fields that describe the users' basic information +2. _user_content_: It collects the users' recent posts on Twitter +3. _user_followers_: It includes the follower list of the relevant users +4. _user_followees_: It includes list of users that are followed by relevant users + + +###References +If you use this dataset, please cite the following papers: + +`@article{shu2017fake, + title={Fake News Detection on Social Media: A Data Mining Perspective}, + author={Shu, Kai and Sliva, Amy and Wang, Suhang and Tang, Jiliang and Liu, Huan}, + journal={ACM SIGKDD Explorations Newsletter}, + volume={19}, + number={1}, + pages={22--36}, + year={2017}, + publisher={ACM} +}` + +`@article{shu2017exploiting, + title={Exploiting Tri-Relationship for Fake News Detection}, + author={Shu, Kai and Wang, Suhang and Liu, Huan}, + journal={arXiv preprint arXiv:1712.07709}, + year={2017} +}` + +`@article{shu2018fakenewsnet, + title={FakeNewsNet: A Data Repository with News Content, Social Context and Dynamic Information for Studying Fake News on Social Media}, + author={Shu, Kai and Mahudeswaran, Deepak and Wang, Suhang and Lee, Dongwon and Liu, Huan}, + journal={arXiv preprint arXiv:1809.01286}, + year={2018} +}` + + + [1]: https://arxiv.org/abs/1708.01967 + [2]: http://arxiv.org/abs/1712.07709 + [3]: https://github.com/KaiDMML/FakeNewsNet + [4]: https://arxiv.org/abs/1809.01286",553,"[{'ref': 'BuzzFeed_fake_news_content.csv', 'creationDate': '2018-11-02T19:08:47.227Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': 'BuzzFeed Fake news content meta data including news source, headline, image, body_text, publish_data, etc', 'fileType': '.csv', 'name': 'BuzzFeed_fake_news_content.csv', 'ownerRef': 'mdepak', 'totalBytes': 651326, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'url', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'top_img', 'type': None, 'originalType': '', 'description': None}, {'order': 5, 'name': 'authors', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'source', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'publish_date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'movies', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'images', 'type': None, 'originalType': '', 'description': None}, {'order': 10, 'name': 'canonical_link', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'meta_data', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'BuzzFeed_real_news_content.csv', 'creationDate': '2018-11-02T19:08:46.951Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': 'BuzzFeed Real news content meta data including news source, headline, image, body_text, publish_data, etc\n\n', 'fileType': '.csv', 'name': 'BuzzFeed_real_news_content.csv', 'ownerRef': 'mdepak', 'totalBytes': 607199, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'url', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'top_img', 'type': None, 'originalType': '', 'description': None}, {'order': 5, 'name': 'authors', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'source', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'publish_date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'movies', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'images', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'canonical_link', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'meta_data', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'BuzzFeedNews.txt', 'creationDate': '2018-11-02T19:08:46.933Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""news_id list, index by the row num. For example, 'PolitiFact_Real_1' is in the 1st row, so it's corresponding to index 1."", 'fileType': '.txt', 'name': 'BuzzFeedNews.txt', 'ownerRef': 'mdepak', 'totalBytes': 3076, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'BuzzFeedNewsUser.txt', 'creationDate': '2018-11-02T19:08:46.88Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""News-User relationship in BuzzFeed. For example, '240 1 1' means news 240 is posted/spreaded by user 1 for 1 time.\n\n"", 'fileType': '.txt', 'name': 'BuzzFeedNewsUser.txt', 'ownerRef': 'mdepak', 'totalBytes': 243225, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'BuzzFeedUser.txt', 'creationDate': '2018-11-02T19:08:46.87Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""user_name list : index by the row num. For example, 'f4b46be21c2f553811cc8a73c4f0ff05' is in the 1st row, so so it's corresponding to index 1."", 'fileType': '.txt', 'name': 'BuzzFeedUser.txt', 'ownerRef': 'mdepak', 'totalBytes': 503481, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'BuzzFeedUserFeature.mat', 'creationDate': '2018-11-02T19:08:48.188Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': 'Latent represenation of user features from BuzzFeed dataset as MATLAB file ', 'fileType': '.mat', 'name': 'BuzzFeedUserFeature.mat', 'ownerRef': 'mdepak', 'totalBytes': 24220376, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'BuzzFeedUserUser.txt', 'creationDate': '2018-11-02T19:08:47.345Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""User-User relationship. For example, '1589\t1' means user 1589 is following user 1;\n"", 'fileType': '.txt', 'name': 'BuzzFeedUserUser.txt', 'ownerRef': 'mdepak', 'totalBytes': 6697619, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PolitiFact_fake_news_content.csv', 'creationDate': '2018-11-02T19:08:34.829Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': 'PolitiFact Fake news content metadata including news source, headline, image, body_text, publish_data, etc', 'fileType': '.csv', 'name': 'PolitiFact_fake_news_content.csv', 'ownerRef': 'mdepak', 'totalBytes': 845227, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'url', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'top_img', 'type': None, 'originalType': '', 'description': None}, {'order': 5, 'name': 'authors', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'source', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'publish_date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'movies', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'images', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'canonical_link', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'meta_data', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'PolitiFact_real_news_content.csv', 'creationDate': '2018-11-02T19:08:34.737Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': 'PolitiFact Real news content metadata including news source, headline, image, body_text, publish_data, etc', 'fileType': '.csv', 'name': 'PolitiFact_real_news_content.csv', 'ownerRef': 'mdepak', 'totalBytes': 845227, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'url', 'type': None, 'originalType': '', 'description': None}, {'order': 4, 'name': 'top_img', 'type': None, 'originalType': '', 'description': None}, {'order': 5, 'name': 'authors', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'source', 'type': None, 'originalType': '', 'description': None}, {'order': 7, 'name': 'publish_date', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'movies', 'type': None, 'originalType': '', 'description': None}, {'order': 9, 'name': 'images', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'canonical_link', 'type': None, 'originalType': '', 'description': None}, {'order': 11, 'name': 'meta_data', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'PolitiFactNews.txt', 'creationDate': '2018-11-02T19:08:34.084Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""news_id list, index by the row num. For example, 'PolitiFact_Real_1' is in the 1st row, so it's corresponding to index 1."", 'fileType': '.txt', 'name': 'PolitiFactNews.txt', 'ownerRef': 'mdepak', 'totalBytes': 4584, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PolitiFactNewsUser.txt', 'creationDate': '2018-11-02T19:08:34.401Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""News-User relationship in PolitiFact. For example, '240\t1\t1' means news 240 is posted/spreaded by user 1 for 1 time."", 'fileType': '.txt', 'name': 'PolitiFactNewsUser.txt', 'ownerRef': 'mdepak', 'totalBytes': 370518, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PolitiFactUser.txt', 'creationDate': '2018-11-02T19:08:34.808Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""user_name list : index by the row num. For example, 'f4b46be21c2f553811cc8a73c4f0ff05' is in the 1st row, so so it's corresponding to index 1."", 'fileType': '.txt', 'name': 'PolitiFactUser.txt', 'ownerRef': 'mdepak', 'totalBytes': 787545, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PolitiFactUserFeature.mat', 'creationDate': '2018-11-02T19:08:37.503Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': 'Latent represenation of user features from PolitiFact dataset as MATLAB file ', 'fileType': '.mat', 'name': 'PolitiFactUserFeature.mat', 'ownerRef': 'mdepak', 'totalBytes': 33983952, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PolitiFactUserUser.txt', 'creationDate': '2018-11-02T19:08:35.869Z', 'datasetRef': 'mdepak/fakenewsnet', 'description': ""User-User relationship. For example, '1589 1' means user 1589 is following user 1"", 'fileType': '.txt', 'name': 'PolitiFactUserUser.txt', 'ownerRef': 'mdepak', 'totalBytes': 6371999, 'url': 'https://www.kaggle.com/', 'columns': []}]",72366,False,False,False,4,2018-11-02T19:08:58.527Z,CC BY-NC-SA 4.0,Deepak Mahudeswaran,mdepak,mdepak/fakenewsnet,"Fake News, MisInformation, Data Mining","[{'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}, {'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'social sciences', 'competitionCount': 0, 'datasetCount': 25, 'description': 'Social science is the collection of disciplines studying how humans interact with each other.', 'fullPath': 'society and social sciences > social sciences', 'isAutomatic': False, 'name': 'social sciences', 'scriptCount': 14, 'totalCount': 39}]",FakeNewsNet,2,17009927,https://www.kaggle.com/mdepak/fakenewsnet,0.7647059,"[{'versionNumber': 1, 'creationDate': '2018-11-02T19:08:58.527Z', 'creatorName': 'Deepak Mahudeswaran', 'creatorRef': 'fakenewsnet', 'versionNotes': 'Initial release', 'status': 'Ready'}]",3020,15 +135,sumanthvrao,,3,"## Introduction +This describes two fake news datasets covering seven different news domains. One of the datasets is collected by combining manual and crowdsourced annotation approaches (FakeNewsAMT), while the second is collected directly from the web (Celebrity). + +## Data collection +The FakeNewsDatabase dataset contains news in six different domains: technology, education, business, sports, politics, and entertainment. The legitimate news included in the dataset were collected from a variety of mainstream news websites predominantly in the US such as the ABCNews, CNN, USAToday, NewYorkTimes, FoxNews, Bloomberg, and CNET among others. The fake news included in this dataset consist of fake versions of the legitimate news in the dataset, written using Mechanical Turk. More details on the data collection are provided in section 3 of the paper. + +The Celebrity dataset contain news about celebrities (actors, singers, socialites, and politicians). The legitimate news in the dataset were obtained from entertainment, fashion and style news sections in mainstream news websites and from entertainment magazines websites. The fake news were obtained from gossip websites such as Entertainment Weekly, People Magazine, RadarOnline, and other tabloid and entertainment-oriented publications. The news articles were collected in pairs, with one article being legitimate and the other fake (rumors and false reports). The articles were manually verified using gossip-checking sites such as ""GossipCop.com"", and also cross-referenced with information from other entertainment news sources on the web. + +The data directory contains two fake news datasets: + +- Celebrity +The fake and legitimate news are provided in two separate folders. The fake and legitimate labels are also provided as part of the filename. + +- FakeNewsAMT +The fake and legitimate news are provided in two separate folders. Each folder contains 40 news from six different domains: technology, education, business, sports, politics, and entertainment. The file names indicate the news domain: business (biz), education (edu), entertainment (entmt), politics (polit), sports (sports) and technology (tech). The fake and legitimate labels are also provided as part of the filename. + +## Dataset citation : +@article{Perez-Rosas18Automatic, +author = {Ver\’{o}nica P\'{e}rez-Rosas, Bennett Kleinberg, Alexandra Lefevre, Rada Mihalcea}, +title = {Automatic Detection of Fake News}, +journal = {International Conference on Computational Linguistics (COLING)}, +year = {2018} +}",165,"[{'ref': 'overall.zip', 'creationDate': '2019-04-19T08:39:00.431Z', 'datasetRef': 'sumanthvrao/fakenewsdataset', 'description': '', 'fileType': '.zip', 'name': 'overall.zip', 'ownerRef': 'sumanthvrao', 'totalBytes': 1154259, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Testing_dataset.zip', 'creationDate': '2019-04-19T08:39:13.2222666Z', 'datasetRef': 'sumanthvrao/fakenewsdataset', 'description': '', 'fileType': '.zip', 'name': 'Testing_dataset.zip', 'ownerRef': 'sumanthvrao', 'totalBytes': 268237, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'training.zip', 'creationDate': '2019-04-19T08:39:13.4396226Z', 'datasetRef': 'sumanthvrao/fakenewsdataset', 'description': '', 'fileType': '.zip', 'name': 'training.zip', 'ownerRef': 'sumanthvrao', 'totalBytes': 1024743, 'url': 'https://www.kaggle.com/', 'columns': []}]",169457,False,False,False,2,2019-04-19T08:39:12.863Z,Unknown,sumanthvrao,sumanthvrao,sumanthvrao/fakenewsdataset,Two fake news datasets covering seven different news domains. ,"[{'ref': 'lstm', 'competitionCount': 0, 'datasetCount': 9, 'description': None, 'fullPath': 'algorithms > lstm', 'isAutomatic': False, 'name': 'lstm', 'scriptCount': 201, 'totalCount': 210}]",Fake-News-Dataset,0,2084538,https://www.kaggle.com/sumanthvrao/fakenewsdataset,0.5625,"[{'versionNumber': 3, 'creationDate': '2019-04-19T08:39:12.863Z', 'creatorName': 'sumanthvrao', 'creatorRef': 'fakenewsdataset', 'versionNotes': 'overall-pooled', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2019-04-19T08:23:12.907Z', 'creatorName': 'sumanthvrao', 'creatorRef': 'fakenewsdataset', 'versionNotes': 'v2.0 - testing dataset', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2019-04-19T08:06:08.717Z', 'creatorName': 'sumanthvrao', 'creatorRef': 'fakenewsdataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",940,4 +136,Rishabh Misra,,2,"#Context + +Past studies in Sarcasm Detection mostly make use of Twitter datasets collected using hashtag based supervision but such datasets are noisy in terms of labels and language. Furthermore, many tweets are replies to other tweets and detecting sarcasm in these requires the availability of contextual tweets. + +To overcome the limitations related to noise in Twitter datasets, this **News Headlines dataset for Sarcasm Detection** is collected from two news website. [*TheOnion*](https://www.theonion.com/) aims at producing sarcastic versions of current events and we collected all the headlines from News in Brief and News in Photos categories (which are sarcastic). We collect real (and non-sarcastic) news headlines from [*HuffPost*](https://www.huffingtonpost.com/). + +This new dataset has following advantages over the existing Twitter datasets: + +* Since news headlines are written by professionals in a formal manner, there are no spelling mistakes and informal usage. This reduces the sparsity and also increases the chance of finding pre-trained embeddings. + +* Furthermore, since the sole purpose of *TheOnion* is to publish sarcastic news, we get high-quality labels with much less noise as compared to Twitter datasets. + +* Unlike tweets which are replies to other tweets, the news headlines we obtained are self-contained. This would help us in teasing apart the real sarcastic elements. + +# Content +Each record consists of three attributes: + +* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0 + +* ```headline```: the headline of the news article + +* ```article_link```: link to the original news article. Useful in collecting supplementary data + +# Further Details +General statistics of data, instructions on how to read the data in python, and basic exploratory analysis could be found at [this GitHub repo](https://github.com/rishabhmisra/News-Headlines-Dataset-For-Sarcasm-Detection). A hybrid NN architecture trained on this dataset can be found at [this GitHub repo](https://github.com/rishabhmisra/Sarcasm-Detection-using-NN). + +# Inspiration + +Can you identify sarcastic sentences? Can you distinguish between fake news and legitimate news? + +# Reading the data +Following code snippet could be used to read the data: + +import json + +def parse_data(file): + + for l in open(file,'r'): + + yield json.loads(l) + + +data = list(parse_data('./Sarcasm_Headlines_Dataset.json')) + +# Citation + +Please link to ""https://rishabhmisra.github.io/publications/"" in your report if you're using this dataset. + +If you're using this dataset for research purposes, please use the following BibTex for citation: + + +@dataset{dataset, + +author = {Misra, Rishabh}, + +year = {2018}, + +month = {06}, + +pages = {}, + +title = {News Headlines Dataset For Sarcasm Detection}, + +doi = {10.13140/RG.2.2.16182.40004} + +} + +Thanks! + +### Other datasets +Please also checkout the following datasets collected by me: + +* [News Category Dataset](https://www.kaggle.com/rmisra/news-category-dataset) + +* [Clothing Fit Dataset for Size Recommendation](https://www.kaggle.com/rmisra/clothing-fit-dataset-for-size-recommendation) + +* [IMDB Spoiler Dataset](https://www.kaggle.com/rmisra/imdb-spoiler-dataset)",5723,"[{'ref': 'Sarcasm_Headlines_Dataset_v2.json', 'creationDate': '2019-07-03T23:52:42.403Z', 'datasetRef': 'rmisra/news-headlines-dataset-for-sarcasm-detection', 'description': 'v2 contains more sarcastic headlines. Each record consists of three attributes:\n\n* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0\n\n* ```headline```: the headline of the news article\n\n* ```article_link```: link to the original news article. Useful for collecting supplementary data', 'fileType': '.json', 'name': 'Sarcasm_Headlines_Dataset_v2.json', 'ownerRef': 'rmisra', 'totalBytes': 6057046, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Sarcasm_Headlines_Dataset.json', 'creationDate': '2019-07-03T23:52:57.5724272Z', 'datasetRef': 'rmisra/news-headlines-dataset-for-sarcasm-detection', 'description': 'Each record consists of three attributes:\n\n* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0\n\n* ```headline```: the headline of the news article\n\n* ```article_link```: link to the original news article. Useful for collecting supplementary data', 'fileType': '.json', 'name': 'Sarcasm_Headlines_Dataset.json', 'ownerRef': 'rmisra', 'totalBytes': 5616830, 'url': 'https://www.kaggle.com/', 'columns': []}]",30764,False,False,True,48,2019-07-03T23:52:57.127Z,CC0: Public Domain,Rishabh Misra,rmisra,rmisra/news-headlines-dataset-for-sarcasm-detection,High quality dataset for the task of Sarcasm Detection,"[{'ref': 'classification', 'competitionCount': 2, 'datasetCount': 257, 'description': None, 'fullPath': 'machine learning > classification', 'isAutomatic': False, 'name': 'classification', 'scriptCount': 3332, 'totalCount': 3591}, {'ref': 'deep learning', 'competitionCount': 0, 'datasetCount': 164, 'description': None, 'fullPath': 'machine learning > deep learning', 'isAutomatic': False, 'name': 'deep learning', 'scriptCount': 3165, 'totalCount': 3329}, {'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}, {'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}]",News Headlines Dataset For Sarcasm Detection,3,3425749,https://www.kaggle.com/rmisra/news-headlines-dataset-for-sarcasm-detection,1.0,"[{'versionNumber': 2, 'creationDate': '2019-07-03T23:52:57.127Z', 'creatorName': 'Rishabh Misra', 'creatorRef': 'news-headlines-dataset-for-sarcasm-detection', 'versionNotes': 'add more sarcastic headlines', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-06-09T22:14:56.27Z', 'creatorName': 'Rishabh Misra', 'creatorRef': 'news-headlines-dataset-for-sarcasm-detection', 'versionNotes': 'Initial release', 'status': 'Ready'}]",44225,237 +137,Guilherme Pontes,,1,,231,"[{'ref': 'resized_v2.csv', 'creationDate': '2018-09-24T20:10:41.183Z', 'datasetRef': 'pontes/fake-news-sample', 'description': '', 'fileType': '.csv', 'name': 'resized_v2.csv', 'ownerRef': 'pontes', 'totalBytes': 1479009622, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 2, 'name': 'domain', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'type', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'url', 'type': None, 'originalType': '', 'description': None}, {'order': 5, 'name': 'content', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'scraped_at', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 7, 'name': 'inserted_at', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 8, 'name': 'updated_at', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 9, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'authors', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'keywords', 'type': None, 'originalType': '', 'description': None}, {'order': 12, 'name': 'meta_keywords', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'meta_description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'tags', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'summary', 'type': None, 'originalType': '', 'description': None}, {'order': 16, 'name': 'source', 'type': None, 'originalType': '', 'description': None}]}]",56022,False,False,False,1,2018-09-24T20:12:03.817Z,Unknown,Guilherme Pontes,pontes,pontes/fake-news-sample,,[],Fake News Sample,1,519121643,https://www.kaggle.com/pontes/fake-news-sample,0.117647059,"[{'versionNumber': 1, 'creationDate': '2018-09-24T20:12:03.817Z', 'creatorName': 'Guilherme Pontes', 'creatorRef': 'fake-news-sample', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1506,8 +138,Bytedance WSDM Cup 2019,,1,"# Background + +WSDM (pronounced ""wisdom"") is one of the premier conferences on web-inspired research involving search and data mining. [The 12th ACM International WSDM Conference][1] will take place in Melbourne, Australia during Feb. 11-15, 2019. + +This task is organized by ByteDance, the Platinum Level Sponsor of the conference. ByteDance is a global Internet technology company started from China. Our goal is to build a global content platform that enable people to enjoy various content in various forms. We inform, entertain, and inspire people across language, culture and geography. + +One of the challenges which we are facing is to combat different types of fake news. Fake news here refers to all forms of false, inaccurate or misleading information, which now poses a big threat to human civilization. + +At Bytedance, we have created a large-scale database to store existing fake news articles. Any new article must go through a test on the truthfulness of content before being published. We conduct matching between the new article and the articles in the database. Articles identified as containing fake news will be withdrawn after human verification. The accuracy and efficiency of the process, therefore, becomes crucial for us to make the platform safe, reliable, and healthy. + +# About This Dataset + +This dataset is released as the competition dataset of [Task: Fake News Classification][1] with the following task: + +Given the title of a fake news article A and the title of a coming news article B, participants are asked to classify B into one of the three categories. + +- agreed: B talks about the same fake news as A +- disagreed: B refutes the fake news in A +- unrelated: B is unrelated to A + +## File +- **train.csv** - training data contains 320,767 news pairs in both Chinese and English. This file provides the only data you can use to finish the task. Using external data is not allowed. +- **test.csv** - testing data contains 80,126 news pairs in both Chinese and English. The approximately 25% of the testing data is set to be public and is used to calculate your accuracy shown on the leading board. The remaining 75% private data is used to calculate your final result of the competition. +- **sample_submission.csv** - sample answer to the testing data. + + +## Data fields +- **id** - the id of each news pair. +- **tid1** - the id of fake news title 1. +- **tid2** - the id of news title 2. +- **title1_zh** - the fake news title 1 in Chinese. +- **title2_zh** - the news title 2 in Chinese. +- **title1_en** - the fake news title 1 in English. +- **title2_en** - the news title 2 in English. +- **label** - indicates the relation between the news pair: agreed/disagreed/unrelated. + +The English titles are machine translated from the related Chinese titles. This may help participants from all background to get better understanding of the datasets. Participants are highly recommended to use the Chinese version titles to finish the task. + +# Evaluation Metrics + +We use **Weighted Categorization Accuracy** to evaluate your performance. Weighted categorization accuracy can be generally defined as: + +$$ WeightedAccuracy(y, \hat{y}, \omega) = \frac{1}{n} \displaystyle{\sum_{i=1}^{n}} \frac{\omega_i(y_i=\hat{y}_i)}{\sum \omega_i} $$ + +where \\(y\\) are ground truths, \\(\hat{y}\\) are the predicted results, and \\(\omega_i\\) is the weight associated with the \\(i\\)th item in the dataset. + +In our test set, we assign each testing item a weight according to its category. The weights of the three categories, agreed, disagreed and unrelated are \\(\frac{1}{15}\\), \\(\frac{1}{5}\\), \\(\frac{1}{16}\\), respectively. We set the weights in consideration of the imbalance of the data distribution to minimize the bias to your performance caused by the majority class (unrelated pairs accounts for approximately 70% of the dataset). + + [1]: https://www.kaggle.com/c/fake-news-pair-classification-challenge",63,"[{'ref': 'solution.csv', 'creationDate': '2019-04-02T06:12:14.664Z', 'datasetRef': 'wsdmcup/wsdm-fake-news-classification', 'description': 'The solution for testing samples, aligned by id.', 'fileType': '.csv', 'name': 'solution.csv', 'ownerRef': 'wsdmcup', 'totalBytes': 2889921, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Id', 'type': 'Uuid', 'originalType': '', 'description': 'the id of each news pair'}, {'order': 1, 'name': 'Expected', 'type': 'String', 'originalType': '', 'description': 'the expected answer: agreed/disagreed/unrelated'}, {'order': 2, 'name': 'Weight', 'type': 'Uuid', 'originalType': '', 'description': 'the weight of each news pair'}, {'order': 3, 'name': 'Usage', 'type': 'String', 'originalType': '', 'description': 'used in private or public leaderboard'}]}, {'ref': 'test.csv', 'creationDate': '2019-04-02T06:12:44.337Z', 'datasetRef': 'wsdmcup/wsdm-fake-news-classification', 'description': 'testing data contains 80,126 news pairs in both Chinese and English.', 'fileType': '.csv', 'name': 'test.csv', 'ownerRef': 'wsdmcup', 'totalBytes': 28878951, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': 'the id of each news pair'}, {'order': 1, 'name': 'tid1', 'type': 'Uuid', 'originalType': '', 'description': 'the id of fake news title 1'}, {'order': 2, 'name': 'tid2', 'type': 'Uuid', 'originalType': '', 'description': 'the id of news title 2'}, {'order': 3, 'name': 'title1_zh', 'type': 'String', 'originalType': '', 'description': 'the fake news title 1 in Chinese'}, {'order': 4, 'name': 'title2_zh', 'type': 'String', 'originalType': '', 'description': 'the news title 2 in Chinese'}, {'order': 5, 'name': 'title1_en', 'type': 'String', 'originalType': '', 'description': 'the fake news title 1 in English'}, {'order': 6, 'name': 'title2_en', 'type': 'String', 'originalType': '', 'description': 'the news title 2 in English'}]}, {'ref': 'train.csv', 'creationDate': '2019-04-02T06:13:12.13Z', 'datasetRef': 'wsdmcup/wsdm-fake-news-classification', 'description': 'training data contains 320,767 news pairs in both Chinese and English.', 'fileType': '.csv', 'name': 'train.csv', 'ownerRef': 'wsdmcup', 'totalBytes': 118093831, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': 'the id of each news pair'}, {'order': 1, 'name': 'tid1', 'type': 'Uuid', 'originalType': '', 'description': 'the id of fake news title 1'}, {'order': 2, 'name': 'tid2', 'type': 'Uuid', 'originalType': '', 'description': 'the id of news title 2'}, {'order': 3, 'name': 'title1_zh', 'type': 'String', 'originalType': '', 'description': 'the fake news title 1 in Chinese'}, {'order': 4, 'name': 'title2_zh', 'type': 'String', 'originalType': '', 'description': 'the news title 2 in Chinese'}, {'order': 5, 'name': 'title1_en', 'type': 'String', 'originalType': '', 'description': 'the fake news title 1 in English'}, {'order': 6, 'name': 'title2_en', 'type': 'String', 'originalType': '', 'description': 'the news title 2 in English'}, {'order': 7, 'name': 'label', 'type': 'String', 'originalType': '', 'description': 'indicates the relation between the news pair: agreed/disagreed/unrelated'}]}]",154756,False,False,False,1,2019-04-02T06:13:39.013Z,Unknown,Bytedance WSDM Cup 2019,wsdmcup,wsdmcup/wsdm-fake-news-classification,Identify the fake news.,"[{'ref': 'nlp', 'competitionCount': 3, 'datasetCount': 261, 'description': None, 'fullPath': 'analysis > nlp', 'isAutomatic': False, 'name': 'nlp', 'scriptCount': 716, 'totalCount': 980}]",WSDM - Fake News Classification,0,36152251,https://www.kaggle.com/wsdmcup/wsdm-fake-news-classification,0.7058824,"[{'versionNumber': 1, 'creationDate': '2019-04-02T06:13:39.013Z', 'creatorName': 'Bytedance WSDM Cup 2019', 'creatorRef': 'wsdm-fake-news-classification', 'versionNotes': 'Initial release', 'status': 'Ready'}]",584,2 +139,Antonis Maronikolakis,,4,"## Datasets + +Data stored in this dataset comes from the following sources: + +* [Fake News Net](https://github.com/KaiDMML/FakeNewsNet): A dataset containing fake and real news headlines (alongside urls from which the article content can be found). The two files stored here are `fnn_politics_fake` and `fnn_politices_real`. [1], [2], [3]. + +* [Fake News Dataset](http://web.eecs.umich.edu/~mihalcea/downloads.html#FakeNews): A dataset containing fake and real article headlines and blurbs across multiple domains (like business and education). The data is stored in `fnd_news_fake` and `fnd_news_real`. [4] + +* [A Million Headlines](https://www.kaggle.com/therohk/million-headlines): A Kaggle dataset of a million headlines, as scraped from ABC News (Australian). [5] + +* [All the News](https://www.kaggle.com/snapcrack/all-the-news): A Kaggle dataset containing news articles (with headlines) as scraped from 15 American news organizations. [6] + +* [Reuters 2017](https://dataverse.harvard.edu/file.xhtml?persistentId=doi:10.7910/DVN/XDB74W/CVLKJH&version=2.0): A dataset containing articles from Reuters. [7] + +[1] Kai Shu, Suhang Wang, and Huan Liu. ""Exploiting Tri-Relationship for +Fake News Detection"". In: arXiv preprint arXiv:1712.07709 (2017). + +[2] Kai Shu et al. ""Fake News Detection on Social Media: A Data Mining +Perspective"". In: ACM SIGKDD Explorations Newsletter 19.1 (2017), +pp. 22-36. + +[3] Kai Shu et al. ""FakeNewsNet: A Data Repository with News Content, +Social Context and Dynamic Information for Studying Fake News on +Social Media"". In: arXiv preprint arXiv:1809.01286 (2018). + +[4] Veronica Perez-Rosas et al. ""Automatic Detection of Fake News"". In: +CoRR abs/1708.07104 (2017). arXiv: 1708.07104. url: http://arxiv.org/abs/1708.07104. + +[5] Rohit Kulkarni (2017), A Million News Headlines, doi:10.7910/DVN/SYBGZL + +[6] Andrew Thompson, ""All the News - Components"", https://components.one/datasets/all-the-news-articles-dataset/ + +[7] Rohit Kulkarni. The Historical Reuters News-Wire. Version DRAFT VERSION. 2018. doi: 10.7910/DVN/XDB74W. url: https://doi.org/10.7910/DVN/XDB74W.",33,"[{'ref': 'fnd_news_fake.7z', 'creationDate': '2019-07-16T22:34:50.6135947Z', 'datasetRef': 'antmarakis/fake-news-data', 'description': 'Fake News Dataset: Fake news across multiple topics (headlines + content)', 'fileType': '.7z', 'name': 'fnd_news_fake.7z', 'ownerRef': 'antmarakis', 'totalBytes': 64037, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'fnd_news_real.7z', 'creationDate': '2019-07-16T22:34:50.9858685Z', 'datasetRef': 'antmarakis/fake-news-data', 'description': 'Fake News Dataset: Real news across multiple topics (headlines + content)', 'fileType': '.7z', 'name': 'fnd_news_real.7z', 'ownerRef': 'antmarakis', 'totalBytes': 68199, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'fnn_politics_fake.csv', 'creationDate': '2019-07-16T22:34:50.084649Z', 'datasetRef': 'antmarakis/fake-news-data', 'description': 'Fake News Net: Fake politics articles', 'fileType': '.csv', 'name': 'fnn_politics_fake.csv', 'ownerRef': 'antmarakis', 'totalBytes': 3286850, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'news_url', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'tweet_ids', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'fnn_politics_real.csv', 'creationDate': '2019-07-16T22:34:50.3849445Z', 'datasetRef': 'antmarakis/fake-news-data', 'description': 'Fake News Net: Real politics articles', 'fileType': '.csv', 'name': 'fnn_politics_real.csv', 'ownerRef': 'antmarakis', 'totalBytes': 8279283, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'news_url', 'type': None, 'originalType': '', 'description': None}, {'order': 2, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'tweet_ids', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'reuters-newswire-2017.v5.csv', 'creationDate': '2019-07-16T22:34:45.151Z', 'datasetRef': 'antmarakis/fake-news-data', 'description': '', 'fileType': '.csv', 'name': 'reuters-newswire-2017.v5.csv', 'ownerRef': 'antmarakis', 'totalBytes': 100463981, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'publish_time', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'headline_text', 'type': 'String', 'originalType': '', 'description': None}]}]",204563,False,False,False,6,2019-07-16T22:34:49.547Z,Unknown,Antonis Maronikolakis,antmarakis,antmarakis/fake-news-data,A collection of fake news (headlines) datasets,"[{'ref': 'text data', 'competitionCount': 25, 'datasetCount': 212, 'description': None, 'fullPath': 'data type > text data', 'isAutomatic': False, 'name': 'text data', 'scriptCount': 334, 'totalCount': 571}, {'ref': 'journalism', 'competitionCount': 0, 'datasetCount': 52, 'description': 'The journalism tag contains datasets and analyses pertaining to various news agencies and reporters.', 'fullPath': 'general reference > research tools and topics > news agencies > journalism', 'isAutomatic': False, 'name': 'journalism', 'scriptCount': 10, 'totalCount': 62}]",Fake News Data,0,38477999,https://www.kaggle.com/antmarakis/fake-news-data,0.7647059,"[{'versionNumber': 4, 'creationDate': '2019-07-16T22:34:49.547Z', 'creatorName': 'Antonis Maronikolakis', 'creatorRef': 'fake-news-data', 'versionNotes': 'reuters upload', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2019-05-26T12:42:43.54Z', 'creatorName': 'Antonis Maronikolakis', 'creatorRef': 'fake-news-data', 'versionNotes': 'Fake News Dataset - Clean', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2019-05-26T12:40:08.363Z', 'creatorName': 'Antonis Maronikolakis', 'creatorRef': 'fake-news-data', 'versionNotes': 'Fake News Dataset', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2019-05-25T15:26:17.96Z', 'creatorName': 'Antonis Maronikolakis', 'creatorRef': 'fake-news-data', 'versionNotes': 'Initial release', 'status': 'Ready'}]",378,0 +140,Saivenket Patro,,1,,178,"[{'ref': 'train.csv', 'creationDate': '2019-01-21T09:45:55.335Z', 'datasetRef': 'ksaivenketpatro/fake-news-detection-dataset', 'description': '', 'fileType': '.csv', 'name': 'train.csv', 'ownerRef': 'ksaivenketpatro', 'totalBytes': 1170063, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Statement', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Label', 'type': 'Boolean', 'originalType': '', 'description': None}]}]",108217,False,False,False,1,2019-01-21T09:47:48.09Z,Unknown,Saivenket Patro,ksaivenketpatro,ksaivenketpatro/fake-news-detection-dataset,Detection of Fake News,[],Fake News Detection Dataset,0,435844,https://www.kaggle.com/ksaivenketpatro/fake-news-detection-dataset,0.1764706,"[{'versionNumber': 1, 'creationDate': '2019-01-21T09:47:48.09Z', 'creatorName': 'Saivenket Patro', 'creatorRef': 'fake-news-detection-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1173,6 +141,Mohit,,1,,27,"[{'ref': 'test.csv', 'creationDate': '2019-05-20T05:01:37.601Z', 'datasetRef': 'mohit28rawat/fake-news', 'description': '', 'fileType': '.csv', 'name': 'test.csv', 'ownerRef': 'mohit28rawat', 'totalBytes': 25144581, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'train.csv', 'creationDate': '2019-05-20T05:02:03.537Z', 'datasetRef': 'mohit28rawat/fake-news', 'description': '', 'fileType': '.csv', 'name': 'train.csv', 'ownerRef': 'mohit28rawat', 'totalBytes': 98628550, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'author', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'label', 'type': 'Uuid', 'originalType': '', 'description': None}]}]",198533,False,False,False,2,2019-05-20T05:02:15.39Z,Unknown,Mohit,mohit28rawat,mohit28rawat/fake-news,For Fake news detection using Machine Learning,[],Fake news,0,48165856,https://www.kaggle.com/mohit28rawat/fake-news,0.235294119,"[{'versionNumber': 1, 'creationDate': '2019-05-20T05:02:15.39Z', 'creatorName': 'Mohit', 'creatorRef': 'fake-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",109,1 +142,vikas,,2,"### Context + +As part of the House Intelligence Committee investigation into how Russia may have influenced the 2016 US Election, Twitter released the screen names of almost 3000 Twitter accounts believed to be connected to Russia’s Internet Research Agency, a company known for operating social media troll accounts. Twitter immediately suspended these accounts, deleting their data from Twitter.com and the Twitter API. A team at NBC News including Ben Popken and EJ Fox was able to reconstruct a dataset consisting of a subset of the deleted data for their investigation and were able to show how these troll accounts went on attack during key election moments. This dataset is the body of this open-sourced reconstruction. + +For more background, read the NBC news article publicizing the release: [""Twitter deleted 200,000 Russian troll tweets. Read them here.""](https://www.nbcnews.com/tech/social-media/now-available-more-200-000-deleted-russian-troll-tweets-n844731) + +### Content + +This dataset contains two CSV files. `tweets.csv` includes details on individual tweets, while `users.csv` includes details on individual accounts. + +To recreate a link to an individual tweet found in the dataset, replace `user_key` in `https://twitter.com/user_key/status/tweet_id` with the screen-name from the `user_key` field and `tweet_id` with the number in the `tweet_id` field. + +Following the links will lead to a suspended page on Twitter. But some copies of the tweets as they originally appeared, including images, can be found by entering the links on web caches like `archive.org` and `archive.is`. + +### Acknowledgements + +If you publish using the data, please credit NBC News and include a link to this page. Send questions to `ben.popken@nbcuni.com`. + +### Inspiration + +What are the characteristics of the fake tweets? Are they distinguishable from real ones? ",2291,"[{'ref': 'tweets.csv', 'creationDate': '2018-02-15T00:49:05.3967358Z', 'datasetRef': 'vikasg/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'tweets.csv', 'ownerRef': 'vikasg', 'totalBytes': 59075614, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'user_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'user_key', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'created_at', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'created_str', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 4, 'name': 'retweet_count', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'retweeted', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'favorite_count', 'type': 'String', 'originalType': '', 'description': None}, {'order': 7, 'name': 'text', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'tweet_id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'source', 'type': 'String', 'originalType': '', 'description': 'Utility used to post the Tweet, as an HTML-formatted string. Tweets from the Twitter website have a source value of web.'}, {'order': 10, 'name': 'hashtags', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'expanded_urls', 'type': 'String', 'originalType': '', 'description': None}, {'order': 12, 'name': 'posted', 'type': 'String', 'originalType': '', 'description': None}, {'order': 13, 'name': 'mentions', 'type': 'String', 'originalType': '', 'description': None}, {'order': 14, 'name': 'retweeted_status_id', 'type': 'String', 'originalType': '', 'description': None}, {'order': 15, 'name': 'in_reply_to_status_id', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'users.csv', 'creationDate': '2018-02-15T00:48:10.767Z', 'datasetRef': 'vikasg/russian-troll-tweets', 'description': '', 'fileType': '.csv', 'name': 'users.csv', 'ownerRef': 'vikasg', 'totalBytes': 94780, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'id', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'location', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'followers_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 4, 'name': 'statuses_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'time_zone', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'verified', 'type': 'Boolean', 'originalType': '', 'description': None}, {'order': 7, 'name': 'lang', 'type': 'String', 'originalType': '', 'description': None}, {'order': 8, 'name': 'screen_name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'description', 'type': 'String', 'originalType': '', 'description': None}, {'order': 10, 'name': 'created_at', 'type': 'String', 'originalType': '', 'description': None}, {'order': 11, 'name': 'favourites_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 12, 'name': 'friends_count', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 13, 'name': 'listed_count', 'type': 'Numeric', 'originalType': '', 'description': 'The number of public lists that this user is a member of. \n\n'}]}]",13184,False,False,True,8,2018-02-15T00:49:04.63Z,CC0: Public Domain,vikas,vikasg,vikasg/russian-troll-tweets,"200,000 malicious-account tweets captured by NBC","[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}, {'ref': 'international relations', 'competitionCount': 0, 'datasetCount': 40, 'description': ""You'll find a variety of datasets and kernels in this tag concerning multiple nations and their demographics, economics, and trade."", 'fullPath': 'society and social sciences > social sciences > international relations', 'isAutomatic': False, 'name': 'international relations', 'scriptCount': 3, 'totalCount': 43}, {'ref': 'russia', 'competitionCount': 0, 'datasetCount': 22, 'description': ""At 17,125,200 square kilometres, Russia is the largest country in the world by area, covering more than one-eighth of the Earth's inhabited land area, and the ninth most populous."", 'fullPath': 'geography and places > asia > russia', 'isAutomatic': False, 'name': 'russia', 'scriptCount': 3, 'totalCount': 25}]",Russian Troll Tweets,4,21993810,https://www.kaggle.com/vikasg/russian-troll-tweets,0.7352941,"[{'versionNumber': 2, 'creationDate': '2018-02-15T00:49:04.63Z', 'creatorName': 'vikas', 'creatorRef': 'russian-troll-tweets', 'versionNotes': 'Initial Upload', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-02-15T00:37:33.747Z', 'creatorName': 'vikas', 'creatorRef': 'russian-troll-tweets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",23049,114 +143,Matteo_Mazzola,,1,"### Context + +I did this in order to share the project i'm working on. + + +### Content + +The dataset are created in 2 parts: 1 fold of articles of fake news and 1 fold of articles of legit news; each one was scraped from Snopes. + + +### Acknowledgements + +BeautifulSoup <3 + +### Inspiration + +How can i clean the data, especially the one from the fake news collection?",135,"[{'ref': 'dataset.rar', 'creationDate': '2017-10-24T13:38:41Z', 'datasetRef': 'ciotolaaaa/snopes-fake-legit-news', 'description': '', 'fileType': '.rar', 'name': 'dataset.rar', 'ownerRef': 'ciotolaaaa', 'totalBytes': 2065057, 'url': 'https://www.kaggle.com/', 'columns': []}]",3391,False,False,False,0,2017-10-24T13:38:46.13Z,CC0: Public Domain,Matteo_Mazzola,ciotolaaaa,ciotolaaaa/snopes-fake-legit-news,Articles taken by Snopes.com,[],Snopes_fake_legit_news,0,2065057,https://www.kaggle.com/ciotolaaaa/snopes-fake-legit-news,0.5,"[{'versionNumber': 1, 'creationDate': '2017-10-24T13:38:46.13Z', 'creatorName': 'Matteo_Mazzola', 'creatorRef': 'snopes-fake-legit-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",941,2 +144,Megan Risdal,,1,,58,"[{'ref': 'weekly-kernels.csv', 'creationDate': '2017-09-05T20:29:58Z', 'datasetRef': 'mrisdal/not-fake-news', 'description': '', 'fileType': '.csv', 'name': 'weekly-kernels.csv', 'ownerRef': 'mrisdal', 'totalBytes': 4322, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'KernelWeek', 'type': 'DateTime', 'originalType': '', 'description': None}, {'order': 1, 'name': 'TotalUpvotedKernels', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 2, 'name': 'UniqueKernelAuthors', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 3, 'name': 'UniqueKernelUpvoters', 'type': 'Numeric', 'originalType': '', 'description': None}]}]",2344,False,False,False,0,2017-09-05T20:31:14.877Z,CC0: Public Domain,Megan Risdal,mrisdal,mrisdal/not-fake-news,,[],Not Fake News,0,1236,https://www.kaggle.com/mrisdal/not-fake-news,0.235294119,"[{'versionNumber': 1, 'creationDate': '2017-09-05T20:31:14.877Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'not-fake-news', 'versionNotes': 'Initial release', 'status': 'Ready'}]",1119,1 +145,Armineh Nourbakhsh,,3,"# Context + +[Emergent.info](http://www.emergent.info/) was a major rumor tracker, created by veteran journalist [Craig Silverman](https://twitter.com/CraigSilverman). It has been defunct for a while, but its well-structured format and well-documented content provides an opportunity for analyzing rumors on the web. + +[Snopes.com](http://www.snopes.com/) is one of the oldest rumors trackers on the web. Originally launched by Barbara and David Mikkelson, it is now run by a team of editors who investigate urban legends, myths, viral rumors and fake news. The investigators try to provide a detailed explanation for why they have chosen to confirm or debunk a rumor, often citing several web pages and other external sources. + +[Politifact.com](http://www.politifact.com/) is a fact-checker that is focused on statements made by politicians and claims circulated by political campaigns, blogs and similar websites. Politifact's labels range from ""true,"" to ""pants on fire!"" + +--- + +# Content + +This dataset consists of three files. One file is a collection of all webpages cited in Emergent.info, and the second is a collection of webpages cited in Snopes.com, and the third is a similar collection from Politifact.com. The webpages were often cited because they had started a rumor, shared a rumor, or debunked a rumor. + +###Emergent.info +Emergent.info often provides a clean timeline of the rumor's propagation on the web, and identifies which page was for the rumor, which page was against it, and which page was simply observing it. Please refer to the image below to learn more about the fields in this dataset. + +![The image displays a sample post from Emergent.info and highlights the corresponding fields in emergent.csv.][1] + +###Snopes.com +The structure of posts on **Snopes.com** is not as well-defined. Please refer to the image below to learn more about the fields in the Snopes dataset. + +![This image displays a sample post from Snopes.com and highlights the corresponding fields in snopes.csv.][2] + +###Politifact.com +Similar to Emergent.info, Politifact.com follows a well-structured format in reporting and documenting rumors. There is a sidebar on the right side of each page that lists all of the sources cited within the page. The top link is the likeliest to be the original source of the rumor. For this link, page_is_first_citation is set to true. + +![This image displays a sample post from Politifact.com and highlights the corresponding fields in politifact.csv.][3] + +--- + +# Inspiration + +I created this dataset in order to study domains that frequently start, propagate, or debunk rumors. By studying these domains and people who follow them, I hope to gain some insight into the dynamics of rumor propagation on the web, as well as social media. + +--- + +# Notes/Disclaimer + +When using the Snopes dataset, please keep the following in mind: + +* In addition to debunking rumors, Snopes.com occasionally reports news and other types of content. This collection only includes data from ""[Fact Check](http://www.snopes.com/category/facts)"" posts on Snopes. + +* Snopes.com was launched years ago. Some of the older posts on the website do not follow the current format of the site, therefore some of the fields might be missing. + +* Snopes.com used to use a service named ""[DoNotLink.com](https://twitter.com/donotlink?lang=en)"" for citation purposes. That service is no longer active and as a result some of the links are missing from older posts on Snopes. + +* In addition, some of the shortened links would time-out prior to resolution, in which case they would not be added to the dataset. + +* Occasionally, a website that has been cited has not maliciously started a rumor. For instance, Andy Borowitz is a humorist who writes for *The New Yorker*. His satirical column is sometimes mistaken for real news; as a result, *The New Yorker* may be cited as a source of fake news on [Snopes.com](http://www.snopes.com/trump-blasts-media-for-reporting-things-he-says/). This does not mean that *The New Yorker* is a fake news website. + +When using the Politifact dataset, please keep the following in mind: + +* The data included in this dataset are collected from the ""[truth-o-meter](http://www.politifact.com/punditfact/statements/)"" page of Politifact.com. + +* Politifact often fact-checks statements made by politicians. Since this dataset is focused on websites, I have ignored all the posts in which the rumor was attributed to a person, a political party, a campaign, or an organization. Instead, I have only included rumors attributed explicitly to websites or blogs. + +--- + +# Useful Tips for Using the Snopes collection + +As opposed to the Emergent collection where each page is flagged with whether it was for or against a rumor, no such information is available for the Snopes dataset. To avoid manually labeling the data, you may use the following heuristics to identify which page started a rumor: + +* Webpages that are cited in the ""Examples"" section of a post are often ""observing"" the rumor, i.e. they have not started it, but they are repeating it. In the snopes.csv file, these webpages have been flagged as ""page_is_example."" + +* Webpages that are cited in the ""Featured Image"" section of a post are often not related to the rumor. The editors on Snopes have simply extracted an image from those pages to embed in their posts. In the snopes.csv file, these webpages have been flagged as ""page_is_image_credit."" + +* Webpages that are cited through a secondary service (such as [archive.is](http://archive.is/)) are likelier to be rumor-propagators. Editors do not link to them directly so that a record of their page is available, even if it is later deleted. + +* If neither of these hints help, very often (but not always) the first link cited on the page (for which ""page_is_example"" and ""page_is_image_credit"" are false) is the link to a page that started the rumor. This link is identified by the ""page_is_first_citation"" field. Pages for which both ""page_is_first_citation"" and ""page_is_archived"" are true are very likely to be rumor propagators. + +* To identify satirical websites that are mistaken for real news, it's useful to inspect the way they are cited on Snopes. To demonstrate that a website contains satire or humor, Snopes writers often cite the ""about us"" page of the site. Therefore it's useful to see which domains often contain a URI to their ""about"" page (e.g. ""http://politicops.com/about-us/""). + + [1]: http://imgur.com/JZPExar.png + [2]: http://i.imgur.com/jFT6Vdb.png + [3]: http://i.imgur.com/Z83JP7c.png",858,"[{'ref': 'emergent.csv', 'creationDate': '2017-03-27T15:00:58Z', 'datasetRef': 'arminehn/rumor-citation', 'description': 'Webpages cited in Emergent.info posts.\n\n* **emergent_page**: Link to the corresponding post on [Emergent.info](http://www.emergent.info/).\n* **claim**: The rumor disclosed in the post. This is the same as the title of the post.\n* **claim_description**: Sub-headline of the post.\n* **claim_label**: A label assigned by Emergent.info editors, identifying whether the rumor was *true*, *false*, or *unverified*.\n* **tags**: Tags added to the post.\n* **claim_source_domain**: Domain of the page that started the rumor, according to Emergent.info.\n* **claim_source_url**: Full url of the page that started the rumor, according to Emergent.info.\n* **date**: Publication date of the post on Emergent.info.\n* **body**: Body of the post.\n* **page_domain**: Domain of the webpage cited in the post.\n* **page_url**: Full url of the webpage cited in the post.\n* **page_headline**: Headline of the webpage cited in the post.\n* **page_position**: Position of the webpage with regards to the rumor (*for*, *against*, *observing*).\n* **page_shares**: Number of times the page was shared.\n* **page_order**: Order of the page in the propagation history of the rumor (see dataset description for more information).', 'fileType': '.csv', 'name': 'emergent.csv', 'ownerRef': 'arminehn', 'totalBytes': 227955, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'emergent_page', 'type': 'String', 'originalType': '', 'description': 'Link to the corresponding post on Emergent.info.'}, {'order': 1, 'name': 'claim', 'type': 'String', 'originalType': '', 'description': 'The rumor disclosed in the post. This is the same as the title of the post.'}, {'order': 2, 'name': 'claim_description', 'type': 'String', 'originalType': '', 'description': 'Sub-headline of the post.'}, {'order': 3, 'name': 'claim_label', 'type': 'String', 'originalType': '', 'description': 'A label assigned by Emergent.info editors, identifying whether the rumor was true, false, or unverified.'}, {'order': 4, 'name': 'tags', 'type': 'String', 'originalType': '', 'description': 'Tags added to the post (separated by commas).'}, {'order': 5, 'name': 'claim_source_domain', 'type': 'String', 'originalType': '', 'description': 'Domain of the page that started the rumor, according to Emergent.info.'}, {'order': 6, 'name': 'claim_course_url', 'type': 'String', 'originalType': '', 'description': 'Full url of the page that started the rumor, according to Emergent.info.'}, {'order': 7, 'name': 'date', 'type': 'DateTime', 'originalType': '', 'description': 'Publication date of the post on Emergent.info.'}, {'order': 8, 'name': 'body', 'type': 'String', 'originalType': '', 'description': 'Body of the post.'}, {'order': 9, 'name': 'page_domain', 'type': 'String', 'originalType': '', 'description': 'Domain of the webpage cited in the post.'}, {'order': 10, 'name': 'page_url', 'type': 'String', 'originalType': '', 'description': 'Full url of the webpage cited in the post.'}, {'order': 11, 'name': 'page_headline', 'type': 'String', 'originalType': '', 'description': 'Headline of the webpage cited in the post.'}, {'order': 12, 'name': 'page_position', 'type': 'String', 'originalType': '', 'description': 'Position of the webpage with regards to the rumor (for, against, observing).'}, {'order': 13, 'name': 'page_shares', 'type': 'Numeric', 'originalType': '', 'description': 'Number of times the page was shared.'}, {'order': 14, 'name': 'page_order', 'type': 'Numeric', 'originalType': '', 'description': 'Order of the page in the propagation history of the rumor (see dataset description for more information).'}]}, {'ref': 'politifact.csv', 'creationDate': '2017-03-27T14:35:44Z', 'datasetRef': 'arminehn/rumor-citation', 'description': 'Webpages cited in Politifact.com posts:\n\n* **politifact_page**: Link to the corresponding post on [Politifact.com](http://www.politifact.com/).\n* **claim**: The rumor disclosed in the post.\n* **claim_source**: The source to which the rumor is attributed (e.g. ""Bloggers,"" ""AmericanNews.com,"" ""Facebook posts,"" etc.).\n* **claim_citation**: The byline under the claim (see dataset description for more information).\n* **claim_label**: A label assigned by Politifact.com editors, identifying whether the rumor was *true*, *mostly-true*, *half-true*, *barely_true*, *mostly-false*, *false*, or *pants-fire* (""[pants on fire](http://www.politifact.com/personalities/blog-posting/statements/byruling/pants-fire/)"").\n* **date_published**: Publication date of the post on Politifact.com.\n* **researched_by**: The person(s) credited on the Politifact post (comma-separated).\n* **edited_by**: The person(s) credited on the Politifact post (comma-separated).\n* **tags**: The subject(s) assigned on the Politifact post (comma-separated).\n* **page_citation**: Includes the headline and description of the webpage cited on the Politifac post.\n* **page_url**: Full url of the webpage cited in the post.\n* **page_is_first_citation**: Indicates whether the page was the first one cited on the Politifact post. The first citation is likely to be the source of the rumor.', 'fileType': '.csv', 'name': 'politifact.csv', 'ownerRef': 'arminehn', 'totalBytes': 258347, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'politifact_page', 'type': 'String', 'originalType': 'String', 'description': 'Link to the corresponding post on Politifact.com.'}, {'order': 1, 'name': 'claim', 'type': 'String', 'originalType': 'String', 'description': 'The rumor disclosed in the post.'}, {'order': 2, 'name': 'claim_source', 'type': 'String', 'originalType': 'String', 'description': 'The source to which the rumor is attributed (e.g. ""Bloggers,"" ""AmericanNews.com,"" ""Facebook posts,"" etc.).'}, {'order': 3, 'name': 'claim_citation', 'type': 'String', 'originalType': 'String', 'description': 'The byline under the claim (see dataset description for more information).'}, {'order': 4, 'name': 'claim_label', 'type': 'String', 'originalType': 'String', 'description': 'A label assigned by Politifact.com editors, identifying whether the rumor was true, mostly-true, half-true, barely_true, mostly-false, false, or pants-fire (""pants on fire"").'}, {'order': 5, 'name': 'date_published', 'type': 'String', 'originalType': 'String', 'description': 'Publication date of the post on Politifact.com.'}, {'order': 6, 'name': 'researched_by', 'type': 'String', 'originalType': 'String', 'description': 'The person(s) credited on the Politifact post (comma-separated).'}, {'order': 7, 'name': 'edited_by', 'type': 'String', 'originalType': 'String', 'description': 'The person(s) credited on the Politifact post (comma-separated).'}, {'order': 8, 'name': 'tags', 'type': 'String', 'originalType': 'String', 'description': 'The subject(s) assigned on the Politifact post (comma-separated).'}, {'order': 9, 'name': 'page_citation', 'type': 'String', 'originalType': 'String', 'description': 'Includes the headline and description of the webpage cited on the Politifac post.'}, {'order': 10, 'name': 'page_url', 'type': 'String', 'originalType': 'String', 'description': 'Full url of the webpage cited in the post.'}, {'order': 11, 'name': 'page_is_first_citation', 'type': 'Boolean', 'originalType': 'Boolean', 'description': 'Indicates whether the page was the first one cited on the Politifact post. The first citation is likely to be the source of the rumor.'}]}, {'ref': 'snopes.csv', 'creationDate': '2017-03-27T15:00:50Z', 'datasetRef': 'arminehn/rumor-citation', 'description': 'Webpages cited in Snopes.com posts.\n\n* **snopes_page**: Link to the corresponding post on [Snopes.com](http://www.snopes.com/).\n* **topic**: The topic label of the page. Snopes has a set of common topics such as ""Fake News,"" ""Business,"" ""Fauxtography,"" etc.\n* **claim**: The rumor disclosed in the post.\n* **claim_label**: A label assigned by Snopes.com editors, identifying whether the rumor was *true*, *false*, *mfalse* (mostly false), *mtrue* (mostly true), *mixture*, or *unverified*.\n* **investigator**: The person credited on the Snopes post.\n* **date_published**: Publication date of the post on Snopes.com.\n* **date_updated**: Latest update date of the post on Snopes.com.\n* **page_url**: Full url of the webpage cited in the post.\n* **page_is_example**: Indicates wether the cited page was posted in the ""Examples"" section of the post.\n* **page_is_image_credit**: Indicates whether the cited page was posted in the ""Image Credit"" section of the post.\n* **page_is_archived**: Indicates whether the page was cited using an archiving service such as [archive.is](http://archive.is/).\n* **page_is_first_citation**: Indicates whether the page was the first one cited on the Snopes post. The first citation (if it\'s not from the examples section) is likely to be the source of the rumor. \n* **tags**: Tags added to the post. They are comma-separated.', 'fileType': '.csv', 'name': 'snopes.csv', 'ownerRef': 'arminehn', 'totalBytes': 968759, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'snopes_page', 'type': 'String', 'originalType': '', 'description': 'Link to the corresponding post on Snopes.com'}, {'order': 1, 'name': 'topic', 'type': 'String', 'originalType': '', 'description': 'The topic label of the page. Snopes has a set of common topics such as ""Fake News,"" ""Business,"" ""Fauxtography,"" etc.'}, {'order': 2, 'name': 'claim', 'type': 'String', 'originalType': '', 'description': 'The rumor disclosed in the post. '}, {'order': 3, 'name': 'claim_label', 'type': 'Boolean', 'originalType': '', 'description': 'A label assigned by Snopes.com editors, identifying whether the rumor was true, false, mfalse (mostly false), mtrue (mostly true), mixture, or unverified.'}, {'order': 4, 'name': 'date_published', 'type': 'String', 'originalType': 'String', 'description': 'Publication date of the post on Snopes.com.'}, {'order': 5, 'name': 'date_updated', 'type': 'String', 'originalType': 'String', 'description': 'Latest update date of the post on Snopes.com.'}, {'order': 6, 'name': 'page_url', 'type': 'String', 'originalType': 'String', 'description': 'Full url of the webpage cited in the post.'}, {'order': 7, 'name': 'page_is_example', 'type': 'Boolean', 'originalType': 'Boolean', 'description': 'Indicates wether the cited page was posted in the ""Examples"" section of the post.'}, {'order': 8, 'name': 'page_is_image_credit', 'type': 'Boolean', 'originalType': 'Boolean', 'description': 'Indicates whether the cited page was posted in the ""Image Credit"" section of the post.'}, {'order': 9, 'name': 'page_is_archived', 'type': 'Boolean', 'originalType': 'Boolean', 'description': 'Indicates whether the page was cited using an archiving service such as archive.is.'}, {'order': 10, 'name': 'page_is_first_citation', 'type': 'Boolean', 'originalType': 'Boolean', 'description': ""Indicates whether the page was the first one cited on the Snopes post. The first citation (if it's not from the examples section) is likely to be the source of the rumor. ""}, {'order': 11, 'name': 'tags', 'type': 'String', 'originalType': 'String', 'description': 'Tags added to the post. They are comma-separated.'}]}]",1015,False,False,True,10,2017-03-27T15:02:32.653Z,CC0: Public Domain,Armineh Nourbakhsh,arminehn,arminehn/rumor-citation,Webpages cited by rumor trackers,"[{'ref': 'linguistics', 'competitionCount': 6, 'datasetCount': 409, 'description': 'The linguistics tag contains datasets and kernels that you can use for text analytics, sentiment analyses, and making clever jokes like this: Let me tell you a little about myself. It\'s a reflexive pronoun that means ""me.""', 'fullPath': 'society and social sciences > social sciences > linguistics', 'isAutomatic': False, 'name': 'linguistics', 'scriptCount': 107, 'totalCount': 522}, {'ref': 'sociology', 'competitionCount': 0, 'datasetCount': 34, 'description': 'Sociology is the study of society, including patterns of social relationships, and culture. Why are there so many people in the gym right now? What do young people do with their time? What do people tweet about in the morning?', 'fullPath': 'society and social sciences > social sciences > sociology', 'isAutomatic': False, 'name': 'sociology', 'scriptCount': 6, 'totalCount': 40}]",Who starts and who debunks rumors,1,1455017,https://www.kaggle.com/arminehn/rumor-citation,0.882352948,"[{'versionNumber': 3, 'creationDate': '2017-03-27T15:02:32.653Z', 'creatorName': 'Armineh Nourbakhsh', 'creatorRef': 'rumor-citation', 'versionNotes': 'Added Politifact dataset.', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2017-03-21T18:26:14.127Z', 'creatorName': 'Armineh Nourbakhsh', 'creatorRef': 'rumor-citation', 'versionNotes': 'Added Snopes.com dataset.', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2017-03-20T20:55:59.783Z', 'creatorName': 'Armineh Nourbakhsh', 'creatorRef': 'rumor-citation', 'versionNotes': 'Initial release', 'status': 'Ready'}]",8590,26 +146,xuyinjie,,1,,66,"[{'ref': 'all.zip', 'creationDate': '2018-11-24T02:31:29.029Z', 'datasetRef': 'xuyinjie/wsdm-fake-news-classification', 'description': '', 'fileType': '.zip', 'name': 'all.zip', 'ownerRef': 'xuyinjie', 'totalBytes': 36090816, 'url': 'https://www.kaggle.com/', 'columns': []}]",81764,False,False,False,1,2018-11-24T02:31:59.66Z,Unknown,xuyinjie,xuyinjie,xuyinjie/wsdm-fake-news-classification,,[],WSDM - Fake News Classification,0,36090816,https://www.kaggle.com/xuyinjie/wsdm-fake-news-classification,0.125,"[{'versionNumber': 1, 'creationDate': '2018-11-24T02:31:59.66Z', 'creatorName': 'xuyinjie', 'creatorRef': 'wsdm-fake-news-classification', 'versionNotes': 'Initial release', 'status': 'Ready'}]",501,1 +147,Muna,,1,,23,"[{'ref': 'Dataset.json', 'creationDate': '2019-03-23T19:24:39.7Z', 'datasetRef': 'munagazzai/fake-news-detection-dataset', 'description': '\n527 tweets labeled as real or fake. 354 are real news and 173 are fake. ', 'fileType': '.json', 'name': 'Dataset.json', 'ownerRef': 'munagazzai', 'totalBytes': 112517, 'url': 'https://www.kaggle.com/', 'columns': []}]",146549,False,False,False,1,2019-03-23T19:27:27.28Z,Unknown,Muna,munagazzai,munagazzai/fake-news-detection-dataset,,"[{'ref': 'twitter', 'competitionCount': 0, 'datasetCount': 93, 'description': ""If you don't have a Twitter account, this is a great way to get your Twitter fix. These datasets are mostly collections of Tweets from companies and famous people and are great for NLP problems."", 'fullPath': 'technology and applied sciences > computing > internet > twitter', 'isAutomatic': False, 'name': 'twitter', 'scriptCount': 51, 'totalCount': 144}]",Fake News Detection Dataset,0,40272,https://www.kaggle.com/munagazzai/fake-news-detection-dataset,0.375,"[{'versionNumber': 1, 'creationDate': '2019-03-23T19:27:27.28Z', 'creatorName': 'Muna', 'creatorRef': 'fake-news-detection-dataset', 'versionNotes': 'Initial release', 'status': 'Ready'}]",187,0 +148,Megan Risdal,,1,"### Context + +During the 2016 US presidential election, the phrase “fake news” found its way to the forefront in news articles, tweets, and fiery online debates the world over after misleading and untrue stories proliferated rapidly. [BuzzFeed News][1] analyzed over 1,000 stories from hyperpartisan political Facebook pages selected from the right, left, and mainstream media to determine the nature and popularity of false or misleading information they shared. + +### Content + +This dataset supports the original story [“Hyperpartisan Facebook Pages Are Publishing False And Misleading Information At An Alarming Rate”][2] published October 20th, 2016. Here are more details on the methodology used for collecting and labeling the dataset (reproduced from the story): + +**More on Our Methodology and Data Limitations** + +“Each of our raters was given a rotating selection of pages from each category on different days. In some cases, we found that pages would repost the same link or video within 24 hours, which caused Facebook to assign it the same URL. When this occurred, we did not log or rate the repeat post and instead kept the original date and rating. Each rater was given the same guide for how to review posts: + +* “*Mostly True*: The post and any related link or image are based on factual information and portray it accurately. This lets them interpret the event/info in their own way, so long as they do not misrepresent events, numbers, quotes, reactions, etc., or make information up. This rating does not allow for unsupported speculation or claims. + +* “*Mixture of True and False*: Some elements of the information are factually accurate, but some elements or claims are not. This rating should be used when speculation or unfounded claims are mixed with real events, numbers, quotes, etc., or when the headline of the link being shared makes a false claim but the text of the story is largely accurate. It should also only be used when the unsupported or false information is roughly equal to the accurate information in the post or link. Finally, use this rating for news articles that are based on unconfirmed information. + +* “*Mostly False*: Most or all of the information in the post or in the link being shared is inaccurate. This should also be used when the central claim being made is false. + +* “*No Factual Content*: This rating is used for posts that are pure opinion, comics, satire, or any other posts that do not make a factual claim. This is also the category to use for posts that are of the “Like this if you think...” variety. + +“In gathering the Facebook engagement data, the API did not return results for some posts. It did not return reaction count data for two posts, and two posts also did not return comment count data. There were 70 posts for which the API did not return share count data. We also used CrowdTangle's API to check that we had entered all posts from all nine pages on the assigned days. In some cases, the API returned URLs that were no longer active. We were unable to rate these posts and are unsure if they were subsequently removed by the pages or if the URLs were returned in error.” + +### Acknowledgements + +This dataset was originally published on GitHub by BuzzFeed News here: https://github.com/BuzzFeedNews/2016-10-facebook-fact-check + +### Inspiration + +Here are some ideas for exploring the hyperpartisan echo chambers on Facebook: + +* How do left, mainstream, and right categories of Facebook pages differ in the stories they share? + +* Which types of stories receive the most engagement from their Facebook followers? Are videos or links more effective for engagement? + +* Can you replicate BuzzFeed’s findings that “the least accurate pages generated some of the highest numbers of shares, reactions, and comments on Facebook”? + + +#[Start a new kernel][3] + + + [1]: https://www.kaggle.com/buzzfeed + [2]: https://www.buzzfeed.com/craigsilverman/partisan-fb-pages-analysis?utm_term=.kq9kqJDZ2#.ia1QB2KJl. + [3]: https://www.kaggle.com/buzzfeed/fact-checking-facebook-politics-pages/kernels?modal=true",633,"[{'ref': 'facebook-fact-check.csv', 'creationDate': '2017-06-05T19:05:30Z', 'datasetRef': 'mrisdal/fact-checking-facebook-politics-pages', 'description': 'Hyperpartisan Facebook pages and characteristics', 'fileType': '.csv', 'name': 'facebook-fact-check.csv', 'ownerRef': 'mrisdal', 'totalBytes': 364786, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'account_id', 'type': 'Numeric', 'originalType': 'String', 'description': 'Facebook page account ID'}, {'order': 1, 'name': 'post_id', 'type': 'Numeric', 'originalType': 'String', 'description': 'Post ID'}, {'order': 2, 'name': 'Category', 'type': 'String', 'originalType': 'String', 'description': 'Type of source (left, right, mainstream)'}, {'order': 3, 'name': 'Page', 'type': 'String', 'originalType': 'String', 'description': 'Page name'}, {'order': 4, 'name': 'Post URL', 'type': 'String', 'originalType': 'String', 'description': 'URL where the post was found'}, {'order': 5, 'name': 'Date Published', 'type': 'DateTime', 'originalType': 'DateTime', 'description': 'Date the post was published'}, {'order': 6, 'name': 'Post Type', 'type': 'String', 'originalType': 'String', 'description': 'Type of post shared (video or link)'}, {'order': 7, 'name': 'Rating', 'type': 'String', 'originalType': 'String', 'description': '""Truth"" rating made by BuzzFeed'}, {'order': 8, 'name': 'Debate', 'type': 'String', 'originalType': '', 'description': None}, {'order': 9, 'name': 'share_count', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Number of shares'}, {'order': 10, 'name': 'reaction_count', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Number of reactions (likes, etc.)'}, {'order': 11, 'name': 'comment_count', 'type': 'Numeric', 'originalType': 'Numeric', 'description': 'Number of comments'}]}]",1357,False,False,True,10,2017-06-05T19:09:40.407Z,Unknown,Megan Risdal,mrisdal,mrisdal/fact-checking-facebook-politics-pages,Hyperpartisan Facebook pages and misleading information during the 2016 election,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}, {'ref': 'politics', 'competitionCount': 0, 'datasetCount': 278, 'description': 'Politics datasets and kernels cover topics you can use to explore the decision making that goes into the governance of groups of people all around the world.', 'fullPath': 'society and social sciences > society > politics', 'isAutomatic': False, 'name': 'politics', 'scriptCount': 131, 'totalCount': 409}, {'ref': 'news agencies', 'competitionCount': 1, 'datasetCount': 48, 'description': 'News agencies are responsible for clickbait and sometimes reporting news accidentally. Ten things you need to know about news agencies: Click here.', 'fullPath': 'general reference > research tools and topics > news agencies', 'isAutomatic': False, 'name': 'news agencies', 'scriptCount': 16, 'totalCount': 65}, {'ref': 'political science', 'competitionCount': 0, 'datasetCount': 13, 'description': 'Political science is a social science which deals with systems of governance, and the analysis of political activities, political thoughts and political behaviour. It deals extensively with the theory and practice of politics which is commonly thought of as determining the distribution of power and resources.', 'fullPath': 'society and social sciences > social sciences > political science', 'isAutomatic': False, 'name': 'political science', 'scriptCount': 1, 'totalCount': 14}]",Fact-Checking Facebook Politics Pages,1,46870,https://www.kaggle.com/mrisdal/fact-checking-facebook-politics-pages,0.7352941,"[{'versionNumber': 1, 'creationDate': '2017-06-05T19:09:40.407Z', 'creatorName': 'Megan Risdal', 'creatorRef': 'fact-checking-facebook-politics-pages', 'versionNotes': 'Initial release', 'status': 'Ready'}]",5936,22 +149,AD6398,,1,,6,"[{'ref': 'glove.6B.100d.txt', 'creationDate': '2019-06-21T12:51:07.306Z', 'datasetRef': 'ad6398/aossie-fake-news-detection-datasets', 'description': '', 'fileType': '.txt', 'name': 'glove.6B.100d.txt', 'ownerRef': 'ad6398', 'totalBytes': 347116733, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'glove.6B.50d.txt', 'creationDate': '2019-06-21T12:54:17.3157851Z', 'datasetRef': 'ad6398/aossie-fake-news-detection-datasets', 'description': '', 'fileType': '.txt', 'name': 'glove.6B.50d.txt', 'ownerRef': 'ad6398', 'totalBytes': 171350079, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'test_merged.csv', 'creationDate': '2019-06-21T12:54:16.7017539Z', 'datasetRef': 'ad6398/aossie-fake-news-detection-datasets', 'description': '', 'fileType': '.csv', 'name': 'test_merged.csv', 'ownerRef': 'ad6398', 'totalBytes': 56011064, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Body ID', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'articleBody', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Headline', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Stance', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'train_merged.csv', 'creationDate': '2019-06-21T12:54:17.0659716Z', 'datasetRef': 'ad6398/aossie-fake-news-detection-datasets', 'description': '', 'fileType': '.csv', 'name': 'train_merged.csv', 'ownerRef': 'ad6398', 'totalBytes': 116827154, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Body ID', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'articleBody', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Headline', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Stance', 'type': 'String', 'originalType': '', 'description': None}]}]",238871,False,False,False,2,2019-06-21T12:54:16.217Z,Unknown,AD6398,ad6398,ad6398/aossie-fake-news-detection-datasets,,[],AOSSIE: Fake News Detection datasets,0,210153734,https://www.kaggle.com/ad6398/aossie-fake-news-detection-datasets,0.1764706,"[{'versionNumber': 1, 'creationDate': '2019-06-21T12:54:16.217Z', 'creatorName': 'AD6398', 'creatorRef': 'aossie-fake-news-detection-datasets', 'versionNotes': 'added glove 100d', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2019-06-20T12:15:50.76Z', 'creatorName': 'AD6398', 'creatorRef': 'aossie-fake-news-detection-datasets', 'versionNotes': 'Initial release', 'status': 'Ready'}]",69,0 +150,RogérioChaves,,4,"### Contexto + +Boatos são compartilhados em milhares de grupos todos os dias no WhatsApp, enganando muitos brasileiros. Para tentar combater esses boatos, eu imaginei que possa ter algum padrão nesses textos, para tentar identificá-los automaticamente e combater esse problema usando Machine Learning. + +Para isso, eu precisava de datos, então criei esse dataset fazendo scrapping de todos os boatos falsos dos sites [boatos.org](http://www.boatos.org/) e [hablillas.org](http://hablillas.org/), que estão nesses CSVs para que você possa explorar à vontade. + +Se quiser saber mais sobre o que fiz com esses dados, dê uma olhada no projeto [Fake News Detector](https://fakenewsdetector.org/). + +### Conteúdo + +O dataset contém o texto do boato em si, o link desmentindo o boato e a data que ele foi dementido pelo boatos.org, ou pelo hablillas.org para os rumores em espanhol. + +O código usado para fazer scrapping desses dados está no [repositório do github](https://github.com/fake-news-detector/scrappers). + +### Ideias para explorar + +- Existe algum padrão de escrita nos boatos? +- Boatos costumam ter mais emojis que conversas comuns? +- Quem são as pessoas que mais aparecem nos boatos? Dilma? Temer? Pabllo Vittar? +- Olhando as datas, estão surgindo boatos cada vez mais rápido? +- Podemos identificar e bloquear um boato no whatsapp antes que ele se espalhe? + +### Agradecimentos + +Muito obrigado à equipe do boatos.org que me permitiu publicar este dataset para experimentos fututos",66,"[{'ref': 'boatos.csv', 'creationDate': '2018-10-24T22:31:14.67Z', 'datasetRef': 'rogeriochaves/boatos-de-whatsapp-boatosorg', 'description': '', 'fileType': '.csv', 'name': 'boatos.csv', 'ownerRef': 'rogeriochaves', 'totalBytes': 1084805, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hoax', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'link', 'type': None, 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}]}, {'ref': 'hablillas.csv', 'creationDate': '2018-10-24T22:31:24.1969954Z', 'datasetRef': 'rogeriochaves/boatos-de-whatsapp-boatosorg', 'description': '', 'fileType': '.csv', 'name': 'hablillas.csv', 'ownerRef': 'rogeriochaves', 'totalBytes': 44666, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'hoax', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'link', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'timestamp', 'type': 'DateTime', 'originalType': '', 'description': None}]}]",30346,False,False,True,1,2018-10-24T22:31:23.51Z,CC0: Public Domain,RogérioChaves,rogeriochaves,rogeriochaves/boatos-de-whatsapp-boatosorg,1900 boatos (pt) + 130 rumores (es) desmentidos por boatos.org,"[{'ref': 'internet', 'competitionCount': 15, 'datasetCount': 535, 'description': 'An interconnected network of tubes that connects the entire world together. This tag covers a broad range of tags; anything from cryptocurrency to website analytics.', 'fullPath': 'technology and applied sciences > computing > internet', 'isAutomatic': False, 'name': 'internet', 'scriptCount': 178, 'totalCount': 728}]",Boatos de WhatsApp e outros do BoatosOrg (pt + es),0,444433,https://www.kaggle.com/rogeriochaves/boatos-de-whatsapp-boatosorg,0.647058845,"[{'versionNumber': 4, 'creationDate': '2018-10-24T22:31:23.51Z', 'creatorName': 'RogérioChaves', 'creatorRef': 'boatos-de-whatsapp-boatosorg', 'versionNotes': 'updated 25/10', 'status': 'Ready'}, {'versionNumber': 3, 'creationDate': '2018-10-24T22:30:37.87Z', 'creatorName': 'RogérioChaves', 'creatorRef': 'boatos-de-whatsapp-boatosorg', 'versionNotes': 'updated 25/10', 'status': 'Ready'}, {'versionNumber': 2, 'creationDate': '2018-06-12T19:11:21.617Z', 'creatorName': 'RogérioChaves', 'creatorRef': 'boatos-de-whatsapp-boatosorg', 'versionNotes': 'Agrega rumores en español', 'status': 'Ready'}, {'versionNumber': 1, 'creationDate': '2018-06-06T13:17:51.463Z', 'creatorName': 'RogérioChaves', 'creatorRef': 'boatos-de-whatsapp-boatosorg', 'versionNotes': 'Initial release', 'status': 'Ready'}]",4280,8 +151,Zeeshan-ul-hassan Usmani,,15,"### Context + +Here comes the July 25th 2018 and Pakistan will see the 13th election (1954, 1962, 1970, 1977, 1985, 1988, 1990, 1993, 1997, 2002, 2008 and 2013) since independence. It’s middle of the week (Wednesday) with an expected temperature of 27-33 degree Celsius with almost no chances of rain anywhere in the country. + +We predict the historic voters’ turn out in this election of 57-61%. Historically the average turn out is 45% since 1977 (lowest 35% in 1997, highest 55% in 1977 and 53% in last elections). Pakistan ranked 164th out of 169 nations in voters’ turn out; Australia being the first with 94.5% turn out. + +Voters’ participation in the country is very diverse, historically Musakhel and Kohlu yield less than 25% whereas Layyah and Khanewal yield more than 60% and everything else is in between. Punjab has the highest and Balochistan has the lowest voters’ turnout. + +The contest will bring 3,675 candidates for 272 national assembly seats, that is 13 candidates on average per seat. PTI has unleashed 244 candidates ([highest in number][1] by any political party). Islamabad will see [76 candidates][2] just for 3 seats fighting to rule the capital that guarantees the psychological edge. + +There a quite few interesting facts about these elections, for example we will see the highest number of Lotas (candidates who often change their party affiliation) ever. PTI believes to win the election no matter what may come while the survey pundits predicts the PML(N) [lead of at least 13%][3] over PTI. + +The history of elections and the charges of corruption, voters’ fraud, ghost votes, interferences by deep state or violence go hand by hand. There is (almost) no country in the world without the fear or accusations of such incidents in their elections. +We are releasing the complete National Assembly Elections’ Results dataset for 2002, 2008 and 2013 elections in CSV files for public and calling all data scientists, international observers and journalists out there to help us achieve our inspirations. + +### Content + +Three CSV files for complete election results for the national assembly of Pakistan for 2002, 2008 and 2013. +The file contains Seat, Constituency, Candidates Name, Party Affiliation, Votes, TotalValidVotes, TotalRejectedVotes, TotalVotes, TotalRegisteredVoters and Turnout variables for each seat. + + +### Acknowledgements + +The dataset should be referenced as “Zeeshan-ul-hassan Usmani, Sana Rasheed, Muhammad Usman, Muhammad Ilyas and Qazi Humayun, Pakistan Elections Complete Dataset (2002, 2008, 2013), Kaggle, July 7, 2018.” + +### Inspiration +Here is the list of ideas we are working on and like you to help with. Please post your kernels and analysis + +1. Map each NA constituency to a District. Get the list of Districts in Pakistan. So we will know how many constituencies we have in each district and which ones? Please update the dataset version on this page. + +2. Find and Convert the current 2018 candidates list to Excel sheet and upload here + +3. Find out total no of candidates in 2018 elections, from each party, from each province, total no of parties and Avg. no of candidates per seat + +4. Calculate the voter’s turn out in each NA. Highest, lowest etc. Make a historical timeframe so we would know how many people voted in each NA in 2002, 2008 and 2013 + +5. Do analysis on invalid votes in each NA in all elections. Do we see any patterns here? + +6. Can we predict the effect of rain on voter’s turn out in a given constituency? + +7. Find out how many NEW candidates we have this time who have never contested any elections before? How many in each party? + +8. Can we make District Profiles with good visuals and heat-maps of which party would be leading in which district? + +9. Can we color the map of Pakistan (as we do in the US with Red and Blue) for each district? We can have a color or PML(N), PTI, PPP and MMA (only four major parties to start with) + +10. Can we find out Swing Districts and the Confirmed Districts for major parties? + +11. Are there any external datasets that we can join with this dataset to do some analysis? Please post the links or update the datasets here + +12. Make the Candidates’ profile so we know his party position in each election and whether he lost or won the last election(s). You can whatever values and information as you like + +13. Get the ***“Lota”*** Score for each candidate. So anyone with more than 2 would be a ***“Certified Lota”.*** These candidates are the ones who have changed their parties by x no of times, from independent to PPP, from PTI to PML etc. + +14. Get the “Confirmed Constituencies” where historically we have only one sided results. For example, PPP would always win from NA-XYZ or Zardari have never lost an election doesn’t matter where he ran from. Which party would definitely win which seats? + +15. Get the list of “Swing Constituencies” which historically are as random as anybody’s guess. For example, NA-XYZ voted for PTI in 2002, then went to PPP in 2008, then to PMLN in 2013 and so on. Once we have this list we can go further down and talk in detail the margins of win/loss in previous elections, who are the candidates (their profiles, district profiles, voter turnout etc.) and even results of bi-elections. But it is very important to get this list in first place. This is where can apply some models to do predict which way it will sway + +16. Make the “Party Potential” list. For Example, PML(N) with all its candidates, profiles etc. has the potential to win 86 seats, PTI 65, PPP 43 etc. Here we can predict which party would form the government in which province? + +17. Find out how many people voted so far in Pakistan in last 3 elections. Max, Min, Avg. Per Seat, Per Province? Can we hypothesize that that avg. no of voters in Punjab per seat (who go out and vote) is double than the avg. no of voters in KPK? Or voter turnout in Bunner is less than 25% while in Chakwal It is more than 65%? + +18. Popular Vote winner. Even if PML(N) lose, can we say that it will fetch max no of votes from the country by vote count only? Or is it true for PPP or PTI? + +19. Find “Fake Candidates” the people who are running but have no chance to win. Like no past elections or political history. These are the one who will withdraw 24 hours before the elections + +20. Find the “Independents” who will go to the highest bidder after winning + +21. Find anything interesting you can on candidates. Like is it true if candidates’ name start from M or A, he has twice the chances of winning than the candidates whose names start with other letters? + +22. Surprise Me! + + + [1]: https://gulfnews.com/news/asia/pakistan/pti-fields-highest-number-of-candidates-for-2018-elections-1.2244562 + [2]: https://www.geo.tv/latest/201359-general-election-76-candidates-to-contest-for-three-na-seats-in-islamabad + [3]: https://en.wikipedia.org/wiki/Pakistani_general_election,_2018",1201,"[{'ref': '2013-2018 Seat Changes in NA.csv', 'creationDate': '2018-07-30T07:32:43.4220774Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'Seat Changes between 2013-2018 Elections', 'fileType': '.csv', 'name': '2013-2018 Seat Changes in NA.csv', 'ownerRef': 'zusmani', 'totalBytes': 9850, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '2018 Seat Number', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Seat Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': '2013 Seat Number', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Gallup2013.xlsx', 'creationDate': '2018-07-30T07:32:42.4689892Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.xlsx', 'name': 'Gallup2013.xlsx', 'ownerRef': 'zusmani', 'totalBytes': 55347, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'JI_2013_English.pdf', 'creationDate': '2018-07-30T07:32:44.1564641Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.pdf', 'name': 'JI_2013_English.pdf', 'ownerRef': 'zusmani', 'totalBytes': 5992010, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'NA-Results2018 Ver 2.csv', 'creationDate': '2018-07-30T07:32:34.428Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'NA-Results2018 Ver 2.csv', 'ownerRef': 'zusmani', 'totalBytes': 310051, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 1, 'name': 'district', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Constituency_Title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Candidate_Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Part', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Votes', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Total_Valid_Votes', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Total_Rejected_Votes', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Total_Votes', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Total_Registered_Voters', 'type': 'Uuid', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Turnout', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'NA-Results2018.csv', 'creationDate': '2018-07-30T07:32:42.2041483Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'NA 2018 Complete Dataset', 'fileType': '.csv', 'name': 'NA-Results2018.csv', 'ownerRef': 'zusmani', 'totalBytes': 334831, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'district', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Constituency_Title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Candidate_Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Part', 'type': 'String', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Total_Valid_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Total_Rejected_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Total_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Total_Registered_Voters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 11, 'name': 'Turnout', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly 2002 - Updated.csv', 'creationDate': '2018-07-30T07:32:46.9237463Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'National Assembly Results 2002 - Updated File with missing Entries Fixed', 'fileType': '.csv', 'name': 'National Assembly 2002 - Updated.csv', 'ownerRef': 'zusmani', 'totalBytes': 198502, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'District', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Constituency_title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Candidate_Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Total_Valid_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Total_Rejected_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Total_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Total_Registered_Voters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Turnout', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly 2002.csv', 'creationDate': '2018-07-30T07:32:47.1893414Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'Pakistan NA Results 2002', 'fileType': '.csv', 'name': 'National Assembly 2002.csv', 'ownerRef': 'zusmani', 'totalBytes': 197208, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'District', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Constituency_title', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Candidate_Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'Total_Valid_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'Total_Rejected_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'Total_Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Total_Registered_Voters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Turnout', 'type': 'Numeric', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly 2008.csv', 'creationDate': '2018-07-30T07:32:47.4393461Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'Pakistan NA Results 2008', 'fileType': '.csv', 'name': 'National Assembly 2008.csv', 'ownerRef': 'zusmani', 'totalBytes': 247715, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ConstituencyTitle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'CandidateName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'TotalValidVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'TotalRejectedVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'TotalVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'TotalRegisteredVoters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Turnout', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly 2013 - Updated.csv', 'creationDate': '2018-07-30T07:32:46.3908858Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'National Assembly 2013 - Updated', 'fileType': '.csv', 'name': 'National Assembly 2013 - Updated.csv', 'ownerRef': 'zusmani', 'totalBytes': 482556, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ConstituencyTitle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'CandidateName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'TotalValidVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'TotalRejectedVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'TotalVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'TotalRegisteredVoters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Turnout', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly 2013 - Updated(v11).csv', 'creationDate': '2018-07-30T07:32:42.8284083Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'National Assembly 2013 - Updated(v11).csv', 'ownerRef': 'zusmani', 'totalBytes': 455162, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'ConstituencyTitle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'CandidateName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 5, 'name': 'TotalValidVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'TotalRejectedVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'TotalVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'TotalRegisteredVoters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'Turnout', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly 2013.csv', 'creationDate': '2018-07-30T07:32:47.7049704Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'Pakistan NA Results 2013', 'fileType': '.csv', 'name': 'National Assembly 2013.csv', 'ownerRef': 'zusmani', 'totalBytes': 479516, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': '', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Seat', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'ConstituencyTitle', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'CandidateName', 'type': 'String', 'originalType': '', 'description': None}, {'order': 4, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 5, 'name': 'Votes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 6, 'name': 'TotalValidVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 7, 'name': 'TotalRejectedVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 8, 'name': 'TotalVotes', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 9, 'name': 'TotalRegisteredVoters', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 10, 'name': 'Turnout', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly Candidates List - 2018 (v11).csv', 'creationDate': '2018-07-30T07:32:43.1721146Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'National Assembly Candidates List - 2018 (v11).csv', 'ownerRef': 'zusmani', 'totalBytes': 134565, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'NA#', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Province', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly Candidates List - 2018 Updated.csv', 'creationDate': '2018-07-30T07:32:43.6877297Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'National Assembly Candidates List - 2018 Updated.csv', 'ownerRef': 'zusmani', 'totalBytes': 134595, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'NA#', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Province', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'National Assembly Candidates List - 2018.csv', 'creationDate': '2018-07-30T07:32:46.0314411Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': 'Complete Candidates List - 2018', 'fileType': '.csv', 'name': 'National Assembly Candidates List - 2018.csv', 'ownerRef': 'zusmani', 'totalBytes': 134563, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'NA#', 'type': 'Numeric', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Name', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 3, 'name': 'Province', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'PML-N-Manifesto-Booklet-min.pdf', 'creationDate': '2018-07-30T07:32:44.6426484Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.pdf', 'name': 'PML-N-Manifesto-Booklet-min.pdf', 'ownerRef': 'zusmani', 'totalBytes': 14759039, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'Political Parties in 2018 Elections - Updated.csv', 'creationDate': '2018-07-30T07:32:43.9220855Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'Political Parties in 2018 Elections - Updated.csv', 'ownerRef': 'zusmani', 'totalBytes': 4681, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Name of Political Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Acronym', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Political Parties in 2018 Elections-updated.csv', 'creationDate': '2018-07-30T07:32:45.815715Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'Political Parties in 2018 Elections-updated.csv', 'ownerRef': 'zusmani', 'totalBytes': 4681, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Name of Political Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Acronym', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'Political Parties in 2018 Elections.csv', 'creationDate': '2018-07-30T07:32:46.6564402Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.csv', 'name': 'Political Parties in 2018 Elections.csv', 'ownerRef': 'zusmani', 'totalBytes': 4668, 'url': 'https://www.kaggle.com/', 'columns': [{'order': 0, 'name': 'Name of Political Party', 'type': 'String', 'originalType': '', 'description': None}, {'order': 1, 'name': 'Symbol', 'type': 'String', 'originalType': '', 'description': None}, {'order': 2, 'name': 'Acronym', 'type': 'String', 'originalType': '', 'description': None}]}, {'ref': 'PPP-MANIFESTO-2018-ENGLISH.pdf', 'creationDate': '2018-07-30T07:32:44.9223322Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.pdf', 'name': 'PPP-MANIFESTO-2018-ENGLISH.pdf', 'ownerRef': 'zusmani', 'totalBytes': 34773020, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PSP_Manifesto_English_2017.pdf', 'creationDate': '2018-07-30T07:32:45.2658423Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.pdf', 'name': 'PSP_Manifesto_English_2017.pdf', 'ownerRef': 'zusmani', 'totalBytes': 1666557, 'url': 'https://www.kaggle.com/', 'columns': []}, {'ref': 'PTI-Manifesto-Final-2018.pdf', 'creationDate': '2018-07-30T07:32:45.4845929Z', 'datasetRef': 'zusmani/predict-pakistan-elections-2018', 'description': '', 'fileType': '.pdf', 'name': 'PTI-Manifesto-Final-2018.pdf', 'ownerRef': 'zusmani', 'totalBytes': 2781670, 'url': 'https://www.kaggle.com/', 'columns': []}]",35552,False,False,True,17,2018-07-30T07:32:41.157Z,Data files © Original Authors,Zeeshan-ul-hassan Usmani,zusmani,zusmani/predict-pakistan-elections-2018,Help Us Predict the Next Winner,"[{'ref': 'data visualization', 'competitionCount': 0, 'datasetCount': 157, 'description': None, 'fullPath': 'analysis > data visualization', 'isAutomatic': False, 'name': 'data visualization', 'scriptCount': 6804, 'totalCount': 6961}, {'ref': 'feature engineering', 'competitionCount': 0, 'datasetCount': 46, 'description': None, 'fullPath': 'machine learning > feature engineering', 'isAutomatic': False, 'name': 'feature engineering', 'scriptCount': 2090, 'totalCount': 2136}, {'ref': 'text data', 'competitionCount': 25, 'datasetCount': 212, 'description': None, 'fullPath': 'data type > text data', 'isAutomatic': False, 'name': 'text data', 'scriptCount': 334, 'totalCount': 571}, {'ref': 'regression analysis', 'competitionCount': 0, 'datasetCount': 71, 'description': None, 'fullPath': 'machine learning > regression analysis', 'isAutomatic': False, 'name': 'regression analysis', 'scriptCount': 375, 'totalCount': 446}, {'ref': 'future prediction', 'competitionCount': 12, 'datasetCount': 54, 'description': None, 'fullPath': 'problem type > future prediction', 'isAutomatic': False, 'name': 'future prediction', 'scriptCount': 80, 'totalCount': 146}]",Predict Pakistan Elections 2018,24,48731676,https://www.kaggle.com/zusmani/predict-pakistan-elections-2018,0.7647059,"[{'versionNumber': 15, 'creationDate': '2018-07-30T07:32:41.157Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'NA 2018 Ver 2', 'status': 'Ready'}, {'versionNumber': 14, 'creationDate': '2018-07-30T07:26:27.757Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'NA 2018 Results Ver 2 Added', 'status': 'Ready'}, {'versionNumber': 13, 'creationDate': '2018-07-29T19:39:57.457Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'NA-2018-Complete-Dataset', 'status': 'Ready'}, {'versionNumber': 12, 'creationDate': '2018-07-23T04:58:37.38Z', 'creatorName': 'muhammadusman', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'Added Gallop2013', 'status': 'Ready'}, {'versionNumber': 11, 'creationDate': '2018-07-14T08:30:03.033Z', 'creatorName': 'Muhammad Ilyas', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'version 11', 'status': 'Ready'}, {'versionNumber': 10, 'creationDate': '2018-07-13T11:33:01.033Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': '2013-2018 Seat Changes', 'status': 'Ready'}, {'versionNumber': 9, 'creationDate': '2018-07-11T08:29:42.36Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'National Assembly Candidates List - 2018 Updated', 'status': 'Ready'}, {'versionNumber': 8, 'creationDate': '2018-07-11T08:25:30.317Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'Political Parties Names 2018 - Updated', 'status': 'Ready'}, {'versionNumber': 7, 'creationDate': '2018-07-11T07:30:09.467Z', 'creatorName': 'Zeeshan-ul-hassan Usmani', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'Party Manifetos Added for Text Analytics', 'status': 'Ready'}, {'versionNumber': 6, 'creationDate': '2018-07-10T18:48:36.213Z', 'creatorName': 'Muhammad Ilyas', 'creatorRef': 'predict-pakistan-elections-2018', 'versionNotes': 'Version 6', 'status': 'Ready'}]",29124,83 diff --git a/your-code/dataset_api_clean.csv b/your-code/dataset_api_clean.csv new file mode 100644 index 0000000..57144ec --- /dev/null +++ b/your-code/dataset_api_clean.csv @@ -0,0 +1,4251 @@ +,title,subtitle,description,lastUpdated,ref,totalGigaBytes,url,numberOfTags,downloadCount,licenseName,kernelCount,lastVersion,usabilityRating,category +0,Every Cryptocurrency Daily Market Price,"Daily crypto markets open, close, low, high data for every token ever","# Cryptocurrency Market Data +## Historical Cryptocurrency Prices For ALL Tokens! + +### **Summary** + > Observations: 758,534 + > Variables: 13 + > Crypto Tokens: 1,584 + > Start Date: 28/04/2017 + > End Date: 21/05/2018 + +### **Description** + All historic open, high, low, close, trading volume and market cap info for all cryptocurrencies. + + I've had to go over the code with a fine tooth comb to get it compatible with CRAN so there have been significant enhancements to how some of the field conversions have been undertaken and the data being cleaned. This should eliminate a few issues around number formatting or unexpected handling of scientific notations. + +### **Data Structure** + Observations: 649,051 + Variables: 13 + $ slug ",2018-12-01T13:56:58.277Z,jessevent/all-crypto-currencies,23.636187,https://www.kaggle.com/jessevent/all-crypto-currencies,3,9042,Other (specified in description),63,"Ready version: 17, 2018-12-01T13:56:58.277Z",0.852941155,currencies +1,Crypto Currencies,Cryptocurrency Market Capitalizations,"«Datasets per la comparació de moviments i patrons entre els principals índexs borsatils espanyols i les crypto-monedes» + +### Context + +En aquest cas el context és detectar o preveure els diferents moviments que es produeixen per una serie factors, tant de moviment interns (compra-venda), com externs (moviments polítics, econòmics, etc...), en els principals índexs borsatils espanyols i de les crypto-monedes. + +Hem seleccionat diferents fonts de dades per generar fitxers «csv», guardar diferents valors en el mateix període de temps. És important destacar que ens interessa més les tendències alcistes o baixes, que podem calcular o recuperar en aquests períodes de temps. + +### Content + +En aquest cas el contingut està format per diferents csv, especialment tenim els fitxers de moviments de cryptomoneda, els quals s’ha generat un fitxer per dia del període de temps estudiat. + +Pel que fa als moviments del principals índexs borsatils s’ha generat una carpeta per dia del període, en cada directori un fitxer amb cadascun del noms dels índexs. Degut això s’han comprimit aquests últims abans de publicar-los en el directori de «open data» kaggle.com. + +Pel que fa als camps, ens interessà detectar els moviments alcistes i baixistes, o almenys aquelles que tenen un patró similar en les cryptomonedes i els índexs. Els camps especialment destacats són: + + • Nom: Nom empresa o cryptomoneda; + • Preu: Valor en euros d’una acció o una cryptomoneda; + • Volum: En euros/volum 24 hores,acumulat de les transaccions diàries en milions d’euros + • Simbol: Símbol o acrònim de la moneda + • Cap de mercat: Valor total de totes les monedes en el moment actual + • Oferta circulant: Valor en oportunitat de negoci + • % 1h, % 2h i %7d, tant per cent del valor la moneda en 1h, 2h o 7d sobre la resta de cyprtomonedes. + +### Acknowledgements + +En aquest cas les fonts de dades que s’han utilitzat per a la realització dels datasets corresponent a: + + - http://www.eleconomista.es + - https://coinmarketcap.com + +Per aquest fet, les dades de borsa i crypto-moneda estan en última instància sota llicència de les webs respectivament. +Pel que fa a la terminologia financera podem veure vocabulari en renta4banco. +[https://www.r4.com/que-necesitas/formacion/diccionario] + +### Inspiration + +Hi ha un estudi anterior on poder tenir primícies de com han enfocat els algoritmes: + + - https://arxiv.org/pdf/1410.1231v1.pdf + +En aquest cas el «trading» en cryptomoneda és relativament nou, força popular per la seva formulació com a mitja digital d’intercanvi, utilitzant un protocol que garanteix la seguretat, integritat i equilibri del seu estat de compte per mitjà d’un entramat d’agents. + +La comunitat podrà respondre, entre altres preguntes, a: + + - Està afectant o hi ha patrons comuns en les cotitzacions de cryptomonedes i el mercat de valors principals del país d'Espanya? + - Els efectes o agents externs afecten per igual a les accions o cryptomonedes? + - Hi ha relacions cause efecte entre les acciones i cryptomonedes? + +### Project repository +https://github.com/acostasg/scraping + +### Datasets +Els fitxers csv generats que componen el dataset s’han publicat en el repositori kaggle.com: + +* https://www.kaggle.com/acostasg/stock-index/ +* https://www.kaggle.com/acostasg/crypto-currencies + +Per una banda, els fitxers els «stock-index» estan comprimits per carpetes amb la data d’extracció i cada fitxer amb el nom dels índexs borsatil. De forma diferent, les cryptomonedes aquestes estan dividides per fitxer on són totes les monedes amb la data d’extracció.",2017-12-03T18:55:04.34Z,acostasg/crypto-currencies,1.321667,https://www.kaggle.com/acostasg/crypto-currencies,2,565,"Database: Open Database, Contents: Database Contents",2,"Ready version: 8, 2017-12-03T18:55:04.34Z",0.7058824,currencies +2,Analysis about crypto currencies and Stock Index,Relation and patterns between movements of stock exchange indexes and cryptocurrency,"«Datasets per la comparació de moviments i patrons entre els principals índexs borsatils espanyols i les crypto-monedes» + +### Context + +En aquest cas el context és detectar o preveure els diferents moviments que es produeixen per una serie factors, tant de moviment interns (compra-venda), com externs (moviments polítics, econòmics, etc...), en els principals índexs borsatils espanyols i de les crypto-monedes. + +Hem seleccionat diferents fonts de dades per generar fitxers «csv», guardar diferents valors en el mateix període de temps. És important destacar que ens interessa més les tendències alcistes o baixes, que podem calcular o recuperar en aquests períodes de temps. + +### Content + +En aquest cas el contingut està format per diferents csv, especialment tenim els fitxers de moviments de cryptomoneda, els quals s’ha generat un fitxer per dia del període de temps estudiat. + +Pel que fa als moviments del principals índexs borsatils s’ha generat una carpeta per dia del període, en cada directori un fitxer amb cadascun del noms dels índexs. Degut això s’han comprimit aquests últims abans de publicar-los en el directori de «open data» kaggle.com. + +Pel que fa als camps, ens interessà detectar els moviments alcistes i baixistes, o almenys aquelles que tenen un patró similar en les cryptomonedes i els índexs. Els camps especialment destacats són: + + • Data: Data de la observació + • Nom: Nom empresa o cryptomoneda, per identificar de quina moneda o index estem representant. + • Símbol: Símbol de la moneda o del index borsatil, per realitzar gràfic posteriorment d’una forma mes senzilla que el nom. + • Preu: Valor en euros d’una acció o una cryptomoneda (transformarem la moneda a euros en el cas de estigui en dòlars amb l'última cotització (un dollar a 0,8501 euro) + • Tipus_cotitzacio: Valor nou que agregarem per discretitzar entre la cotització: baix (0 i 1), normal (1 i 100), alt (100 i 1000), molt_alt (>1000) + +# Script R + +* Anàlisis de les observacions i el domini de les dades +* Anàlisis en especial de Bitcoin i la IOTA. +* Test de Levene per veure la homogeneitat +* Kmeans per creació de cluster per veure la homegeneitat +* Freqüències de les distribucions +* Test de contrast d'hipòtesis de variables dependents (Wilcoxon) +* Test de Shapiro-Wilk per veure la normalitat de les dades, per normalitzar-les o no +* Correlació d'índexs borsatils, per eliminar complexitat dels índexs amb grau més alt de correlació +* Iteració de Regressions lineals per obtenir el model amb més qualitat, observa'n el p-valor i l'índex de correlació +* Validació de la qualitat del model +* Representació grafica + +### Acknowledgements + +En aquest cas les fonts de dades que s’han utilitzat per a la realització dels datasets corresponent a: + + - http://www.eleconomista.es + - https://coinmarketcap.com + +Per aquest fet, les dades de borsa i crypto-moneda estan en última instància sota llicència de les webs respectivament. +Pel que fa a la terminologia financera podem veure vocabulari en renta4banco. +[https://www.r4.com/que-necesitas/formacion/diccionario] + +### Inspiration + +Hi ha un estudi anterior on poder tenir primícies de com han enfocat els algoritmes: + + - https://arxiv.org/pdf/1410.1231v1.pdf + +En aquest cas el «trading» en cryptomoneda és relativament nou, força popular per la seva formulació com a mitja digital d’intercanvi, utilitzant un protocol que garanteix la seguretat, integritat i equilibri del seu estat de compte per mitjà d’un entramat d’agents. + +La comunitat podrà respondre, entre altres preguntes, a: + + - Està afectant o hi ha patrons comuns en les cotitzacions de cryptomonedes i el mercat de valors principals del país d'Espanya? + - Els efectes o agents externs afecten per igual a les accions o cryptomonedes? + - Hi ha relacions cause efecte entre les acciones i cryptomonedes? + +### Project repository +https://github.com/acostasg/scraping + +### Datasets +Els fitxers csv generats que componen el dataset s’han publicat en el repositori kaggle.com: + +* https://www.kaggle.com/acostasg/stock-index/ +* https://www.kaggle.com/acostasg/crypto-currencies + +Per una banda, els fitxers els «stock-index» estan comprimits per carpetes amb la data d’extracció i cada fitxer amb el nom dels índexs borsatil. De forma diferent, les cryptomonedes aquestes estan dividides per fitxer on són totes les monedes amb la data d’extracció.",2017-12-13T22:38:33.32Z,acostasg/cryptocurrenciesvsstockindex,0.681413,https://www.kaggle.com/acostasg/cryptocurrenciesvsstockindex,3,515,"Database: Open Database, Contents: © Original Authors",1,"Ready version: 2, 2017-12-13T22:38:33.32Z",0.7058824,currencies +3,Currencies,,"### Context + +This is a different timeframe currencies csv from a trading program + + +### Content +There are 42 . csv of different dataframes and currencies. + + +### Acknowledgements + +I acknowlege every person in the world who spend their time sharing there knowledge from youtube to blogs. That people make world a better place to live. + + +### Inspiration + +I want to create code to select the ones that have a tf of 1 day amonng others. My intention is create a code to help us to select the documents we want inside a messy folder.",2017-09-24T19:50:59.687Z,mitillo/currencies,1.151577,https://www.kaggle.com/mitillo/currencies,0,134,Unknown,1,"Ready version: 3, 2017-09-24T19:50:59.687Z",0.4117647,currencies +4,Currency Exchange Rates,Daily exchange rates for 51 currencies from 1995 to 2018,"This dataset contains the daily currency exchange rates as reported to the *International Monetary Fund* by the issuing central bank. Included are 51 currencies over the period from 01-01-1995 to 11-04-2018. + +The format is known as *currency units per U.S. Dollar*. Explained by example, each rate in the *Euro* column says how much *U.S. Dollar* you had to pay at a certain date to buy 1 Euro. Hence, the rates in the column *U.S. Dollar* are always `1`.",2018-05-02T17:48:28.943Z,thebasss/currency-exchange-rates,0.596854,https://www.kaggle.com/thebasss/currency-exchange-rates,1,521,CC0: Public Domain,0,"Ready version: 2, 2018-05-02T17:48:28.943Z",0.647058845,currencies +5,Crypto Currencies,Cryptocurrency Market Capitalizations,"«Datasets per la comparació de moviments i patrons entre els principals índexs borsatils espanyols i les crypto-monedes» + +### Context + +En aquest cas el context és detectar o preveure els diferents moviments que es produeixen per una serie factors, tant de moviment interns (compra-venda), com externs (moviments polítics, econòmics, etc...), en els principals índexs borsatils espanyols i de les crypto-monedes. + +Hem seleccionat diferents fonts de dades per generar fitxers «csv», guardar diferents valors en el mateix període de temps. És important destacar que ens interessa més les tendències alcistes o baixes, que podem calcular o recuperar en aquests períodes de temps. + +### Content + +En aquest cas el contingut està format per diferents csv, especialment tenim els fitxers de moviments de cryptomoneda, els quals s’ha generat un fitxer per dia del període de temps estudiat. + +Pel que fa als moviments del principals índexs borsatils s’ha generat una carpeta per dia del període, en cada directori un fitxer amb cadascun del noms dels índexs. Degut això s’han comprimit aquests últims abans de publicar-los en el directori de «open data» kaggle.com. + +Pel que fa als camps, ens interessà detectar els moviments alcistes i baixistes, o almenys aquelles que tenen un patró similar en les cryptomonedes i els índexs. Els camps especialment destacats són: + + • Nom: Nom empresa o cryptomoneda; + • Preu: Valor en euros d’una acció o una cryptomoneda; + • Volum: En euros/volum 24 hores,acumulat de les transaccions diàries en milions d’euros + • Simbol: Símbol o acrònim de la moneda + • Cap de mercat: Valor total de totes les monedes en el moment actual + • Oferta circulant: Valor en oportunitat de negoci + • % 1h, % 2h i %7d, tant per cent del valor la moneda en 1h, 2h o 7d sobre la resta de cyprtomonedes. + +### Acknowledgements + +En aquest cas les fonts de dades que s’han utilitzat per a la realització dels datasets corresponent a: + + - http://www.eleconomista.es + - https://coinmarketcap.com + +Per aquest fet, les dades de borsa i crypto-moneda estan en última instància sota llicència de les webs respectivament. +Pel que fa a la terminologia financera podem veure vocabulari en renta4banco. +[https://www.r4.com/que-necesitas/formacion/diccionario] + +### Inspiration + +Hi ha un estudi anterior on poder tenir primícies de com han enfocat els algoritmes: + + - https://arxiv.org/pdf/1410.1231v1.pdf + +En aquest cas el «trading» en cryptomoneda és relativament nou, força popular per la seva formulació com a mitja digital d’intercanvi, utilitzant un protocol que garanteix la seguretat, integritat i equilibri del seu estat de compte per mitjà d’un entramat d’agents. + +La comunitat podrà respondre, entre altres preguntes, a: + + - Està afectant o hi ha patrons comuns en les cotitzacions de cryptomonedes i el mercat de valors principals del país d'Espanya? + - Els efectes o agents externs afecten per igual a les accions o cryptomonedes? + - Hi ha relacions cause efecte entre les acciones i cryptomonedes? + +### Project repository +https://github.com/acostasg/scraping + +### Datasets +Els fitxers csv generats que componen el dataset s’han publicat en el repositori kaggle.com: + +* https://www.kaggle.com/acostasg/stock-index/ +* https://www.kaggle.com/acostasg/crypto-currencies + +Per una banda, els fitxers els «stock-index» estan comprimits per carpetes amb la data d’extracció i cada fitxer amb el nom dels índexs borsatil. De forma diferent, les cryptomonedes aquestes estan dividides per fitxer on són totes les monedes amb la data d’extracció.",2017-11-07T20:19:07.32Z,acostasg/crypto-currencies-data,1.082628,https://www.kaggle.com/acostasg/crypto-currencies-data,2,160,"Database: Open Database, Contents: Database Contents",0,"Ready version: 1, 2017-11-07T20:19:07.32Z",0.647058845,currencies +6,World Coins,A collection of coin images from 32 different currencies.,"### Context + +I put together this dataset when I decided to build a Deep Learning model to detect a coin from an image. + + +### Content + +A collection of 211 different coins from 32 currencies. + +* ``cat_to_name.json`` maps the folder id with a specific coin. + +* ``data`` contains all the coin images. The dataset has already been splitted in train, validation and test. + + +### Acknowledgements + +**I am not the owner of this data. Most of these images have been downloaded from [ucoin.net][1] and other online sources. These images may be subject of copyright.** + + + [1]: http://ucoin.net",2019-03-27T09:26:10.133Z,wanderdust/coin-images,480.602984,https://www.kaggle.com/wanderdust/coin-images,4,69,Other (specified in description),1,"Ready version: 1, 2019-03-27T09:26:10.133Z",0.9375,currencies +7,Cryptocurrency Historical Prices,"Prices of top cryptocurrencies including Bitcoin, Ethereum, Ripple, Bitcoin cash","### Context + +Things like Block chain, Bitcoin, Bitcoin cash, Ethereum, Ripple etc are constantly coming in the news articles I read. So I wanted to understand more about it and [this post][1] helped me get started. Once the basics are done, the data scientist inside me started raising questions like: + +1. How many cryptocurrencies are there and what are their prices and valuations? +2. Why is there a sudden surge in the interest in recent days? + +For getting answers to all these questions (and if possible to predict the future prices ;)), I started collecting data from [coinmarketcap][2] about the cryptocurrencies. + + + +So what next? +Now that we have the price data, I wanted to dig a little more about the factors affecting the price of coins. I started of with Bitcoin and there are quite a few parameters which affect the price of Bitcoin. Thanks to [Blockchain Info][3], I was able to get quite a few parameters on once in two day basis. + +This will help understand the other factors related to Bitcoin price and also help one make future predictions in a better way than just using the historical price. + + +### Content + +The dataset has one csv file for each currency. Price history is available on a daily basis from April 28, 2013. This dataset has the historical price information of some of the top crypto currencies by market capitalization. The currencies included are: + + - Bitcoin + - Ethereum + - Ripple + - Bitcoin cash + - Bitconnect + - Dash + - Ethereum Classic + - Iota + - Litecoin + - Monero + - Nem + - Neo + - Numeraire + - Stratis + - Waves + + + + - Date : date of observation + - Open : Opening price on the given day + - High : Highest price on the given day + - Low : Lowest price on the given day + - Close : Closing price on the given day + - Volume : Volume of transactions on the given day + - Market Cap : Market capitalization in USD + +**Bitcoin Dataset (bitcoin_dataset.csv) :** + +This dataset has the following features. + + - Date : Date of observation + - btc_market_price : Average USD market price across major bitcoin exchanges. + - btc_total_bitcoins : The total number of bitcoins that have already been mined. + - btc_market_cap : The total USD value of bitcoin supply in circulation. + - btc_trade_volume : The total USD value of trading volume on major bitcoin exchanges. + - btc_blocks_size : The total size of all block headers and transactions. + - btc_avg_block_size : The average block size in MB. + - btc_n_orphaned_blocks : The total number of blocks mined but ultimately not attached to the main Bitcoin blockchain. + - btc_n_transactions_per_block : The average number of transactions per block. + - btc_median_confirmation_time : The median time for a transaction to be accepted into a mined block. + - btc_hash_rate : The estimated number of tera hashes per second the Bitcoin network is performing. + - btc_difficulty : A relative measure of how difficult it is to find a new block. + - btc_miners_revenue : Total value of coinbase block rewards and transaction fees paid to miners. + - btc_transaction_fees : The total value of all transaction fees paid to miners. + - btc_cost_per_transaction_percent : miners revenue as percentage of the transaction volume. + - btc_cost_per_transaction : miners revenue divided by the number of transactions. + - btc_n_unique_addresses : The total number of unique addresses used on the Bitcoin blockchain. + - btc_n_transactions : The number of daily confirmed Bitcoin transactions. + - btc_n_transactions_total : Total number of transactions. + - btc_n_transactions_excluding_popular : The total number of Bitcoin transactions, excluding the 100 most popular addresses. + - btc_n_transactions_excluding_chains_longer_than_100 : The total number of Bitcoin transactions per day excluding long transaction chains. + - btc_output_volume : The total value of all transaction outputs per day. + - btc_estimated_transaction_volume : The total estimated value of transactions on the Bitcoin blockchain. + - btc_estimated_transaction_volume_usd : The estimated transaction value in USD value. + +**Ethereum Dataset (ethereum_dataset.csv):** + +This dataset has the following features + + - Date(UTC) : Date of transaction + - UnixTimeStamp : unix timestamp + - eth_etherprice : price of ethereum + - eth_tx : number of transactions per day + - eth_address : Cumulative address growth + - eth_supply : Number of ethers in supply + - eth_marketcap : Market cap in USD + - eth_hashrate : hash rate in GH/s + - eth_difficulty : Difficulty level in TH + - eth_blocks : number of blocks per day + - eth_uncles : number of uncles per day + - eth_blocksize : average block size in bytes + - eth_blocktime : average block time in seconds + - eth_gasprice : Average gas price in Wei + - eth_gaslimit : Gas limit per day + - eth_gasused : total gas used per day + - eth_ethersupply : new ether supply per day + - eth_chaindatasize : chain data size in bytes + - eth_ens_register : Ethereal Name Service (ENS) registrations per day + + + +### Acknowledgements + +This data is taken from [coinmarketcap][5] and it is [free][6] to use the data. + +Bitcoin dataset is obtained from [Blockchain Info][7]. + +Ethereum dataset is obtained from [Etherscan][8]. + +Cover Image : Photo by Thomas Malama on Unsplash + +### Inspiration + +Some of the questions which could be inferred from this dataset are: + + 1. How did the historical prices / market capitalizations of various currencies change over time? + 2. Predicting the future price of the currencies + 3. Which currencies are more volatile and which ones are more stable? + 4. How does the price fluctuations of currencies correlate with each other? + 5. Seasonal trend in the price fluctuations + +Bitcoin / Ethereum dataset could be used to look at the following: + + 1. Factors affecting the bitcoin / ether price. + 2. Directional prediction of bitcoin / ether price. (refer [this paper][9] for more inspiration) + 3. Actual bitcoin price prediction. + + + + [1]: https://www.linkedin.com/pulse/blockchain-absolute-beginners-mohit-mamoria + [2]: https://coinmarketcap.com/ + [3]: https://blockchain.info/ + [4]: https://etherscan.io/charts + [5]: https://coinmarketcap.com/ + [6]: https://coinmarketcap.com/faq/ + [7]: https://blockchain.info/ + [8]: https://etherscan.io/charts + [9]: http://cs229.stanford.edu/proj2014/Isaac%20Madan,%20Shaurya%20Saluja,%20Aojia%20Zhao,Automated%20Bitcoin%20Trading%20via%20Machine%20Learning%20Algorithms.pdf",2018-02-21T12:36:47.22Z,sudalairajkumar/cryptocurrencypricehistory,0.715347,https://www.kaggle.com/sudalairajkumar/cryptocurrencypricehistory,2,19255,CC0: Public Domain,39,"Ready version: 13, 2018-02-21T12:36:47.22Z",0.7058824,currencies +8,Exchange rate BRIC currencies/US dollar,historical data monthly frequencies 01/07/1997 - 1/12/2015,"### Content + +over 10 years of historical exchange rate data of BRIC countries currencies/ U.S. dollar",2017-06-15T14:52:31.757Z,luigimersico/exchange-rate-bric-currenciesus-dollar,0.003657,https://www.kaggle.com/luigimersico/exchange-rate-bric-currenciesus-dollar,3,102,Unknown,2,"Ready version: 1, 2017-06-15T14:52:31.757Z",0.5294118,currencies +9,Price History of 1654 Crypto-Currencies,Historical Coin Prices to Understand the Big Picture,"### Context + +Here's one of the largest Crypto-Currency datasets. + + +### Content + +**1654 Coins** with *Open*, *Close*, *High*, *Low*, *Market Cap* and *Volume* values day by day since 2013. + + +### Acknowledgements + +The data is from [coinmarketcap][1] as they allow everyone to use it for academic or journalistic purposes. I definitely encourage you to check out their [terms][2] before you use the data. + + +### Inspiration + +You may use the data to understand the coin market and be creative about it. + + +### Contact + +You can find me on [Twitter][3] if you want to talk about the data and crypto-currencies in general. + + + [1]: https://coinmarketcap.com + [2]: https://coinmarketcap.com/faq + [3]: https://twitter.com/ulsc",2018-06-09T02:44:13.39Z,ulascengiz/price-history-of-1654-cryptocurrencies,19.131516,https://www.kaggle.com/ulascengiz/price-history-of-1654-cryptocurrencies,5,102,Other (specified in description),0,"Ready version: 1, 2018-06-09T02:44:13.39Z",0.6875,currencies +10,Complete Cryptocurrency Market History,Daily historical prices for all cryptocurrencies listed on CoinMarketCap,"### Cryptocurrencies + +Cryptocurrencies are fast becoming rivals to traditional currency across the world. The digital currencies are available to purchase in many different places, making it accessible to everyone, and with retailers accepting various cryptocurrencies it could be a sign that money as we know it is about to go through a major change. + +In addition, the blockchain technology on which many cryptocurrencies are based, with its revolutionary distributed digital backbone, has many other promising applications. Implementations of secure, decentralized systems can aid us in conquering organizational issues of trust and security that have plagued our society throughout the ages. In effect, we can fundamentally disrupt industries core to economies, businesses and social structures, eliminating inefficiency and human error. + +### Content + +The dataset contains all historical daily prices (open, high, low, close) for all cryptocurrencies listed on [CoinMarketCap]. + +### Acknowledgements + +- [Every Cryptocurrency Daily Market Price] - I initially developed kernels for this dataset before making my own scraper and dataset so that I could keep it regularly updated. +- [CoinMarketCap] - For the data + + [Every Cryptocurrency Daily Market Price]: https://www.kaggle.com/jessevent/all-crypto-currencies ""Every Cryptocurrency Daily Market Price"" + [CoinMarketCap]: https://coinmarketcap.com/ ""CoinMarketCap""",2018-09-29T15:17:17.567Z,taniaj/cryptocurrency-market-history-coinmarketcap,13.939281,https://www.kaggle.com/taniaj/cryptocurrency-market-history-coinmarketcap,5,3104,CC0: Public Domain,8,"Ready version: 9, 2018-09-29T15:17:17.567Z",0.7647059,currencies +11,Complete Historical Cryptocurrency Financial Data,Top 200 Cryptocurrencies by Marketcap,"**Context** + +Recent growing interest in cryptocurrencies, specifically as a speculative investment vehicle, has sparked global conversation over the past 12 months. Although this data is available across various sites, there is a lack of understanding as to what is driving the exponential rise of many individual currencies. This data set is intended to be a starting point for a detailed analysis into what is driving price action, and what can be done to predict future movement. + +**Content** + +Consolidated financial information for the top 200 cryptocurrencies by marketcap. Pulled from CoinMarketCap.com. Attributes include: + + - Currency name (e.g. bitcoin) + - Date + - Open + - High + - Low + - Close + - Volume + - Marketcap + +**Inspiration** + +For the past few months I have been searching for a reliable source for historical price information related to cryptocurrencies. I wasn't able to find anything that I could use to my liking, so I built my own data set. + +I've written a small script that scrapes historical price information for the top 200 coins by market cap as listed on CoinMarketCap.com. + +I plan to run some basic analysis on it to answer questions that I have a ""gut"" feeling about, but no quantitative evidence (yet!). + +Questions such as: + + - What is the correlation between bitcoin and alt coin prices? + - What is the average age of the top 10 coins by market cap? + - What day of the week is best to buy/sell? + - Which coins in the top two hundred are less than 6 months old? + - Which currencies are the most volatile? + - What the hell happens when we go to bed and Asia starts trading? + +Feel free to use this for your own purposes! I just ask that you share your results with the group when complete. Happy hunting!",2019-04-25T00:37:10.423Z,philmohun/cryptocurrency-financial-data,0.348672,https://www.kaggle.com/philmohun/cryptocurrency-financial-data,4,2851,CC0: Public Domain,4,"Ready version: 3, 2019-04-25T00:37:10.423Z",0.852941155,currencies +12,Exchange Rates,Exchange rates as far back as 1971 between the USA and 23 countries,"The Federal Reserve's H.10 statistical release provides data on exchange rates between the US dollar, 23 other currencies, and three benchmark indexes. The data extend back to 1971 for several of these. + +Please note that the csv has six header rows. The first contains the + +## Acknowledgements +This dataset was provided by the [US Federal Reserve][1]. If you need the current version, you can find their weekly updates [here][2]. + +## Inspiration + + - Venezuela is both unusually dependent on oil revenues and experiencing unusual degrees of political upheaval. Can you determine which movements in their currency were driven by changes in the oil price and which were driven by political events? + + [1]: https://www.federalreserve.gov/aboutthefed.htm + [2]: https://www.federalreserve.gov/releases/h10/Hist/",2017-09-05T20:29:37.953Z,federalreserve/exchange-rates,0.659356,https://www.kaggle.com/federalreserve/exchange-rates,2,1240,CC0: Public Domain,13,"Ready version: 1, 2017-09-05T20:29:37.953Z",0.8235294,currencies +13,Zomato Restaurants Data,Analyzing the best restaurants of the major cities,"### Context + +I really get fascinated by good quality food being served in the restaurants and would like to help community find the best cuisines around their area + +### Content + +Zomato API Analysis is one of the most useful analysis for foodies who want to taste the best cuisines of every part of the world which lies in their budget. This analysis is also for those who want to find the value for money restaurants in various parts of the country for the cuisines. Additionally, this analysis caters the needs of people who are striving to get the best cuisine of the country and which locality of that country serves that cuisines with maximum number of restaurants.♨️ + +For more information on Zomato API and Zomato API key +• Visit : https://developers.zomato.com/api#headline1 +• Data Collection: https://developers.zomato.com/documentation + +Data +Fetching the data: +• Data has been collected from the Zomato API in the form of .json files(raw data) using the url=https://developers.zomato.com/api/v2.1/search?entity_id=1&entity_type=city&start=1&count=20 +• Raw data can be seen here + +Data Collection: +Data collected can be seen as a raw .json file here + +Data Storage: +The collected data has been stored in the Comma Separated Value file Zomato.csv. Each restaurant in the dataset is uniquely identified by its Restaurant Id. Every Restaurant contains the following variables: + +• Restaurant Id: Unique id of every restaurant across various cities of the world +• Restaurant Name: Name of the restaurant +• Country Code: Country in which restaurant is located +• City: City in which restaurant is located +• Address: Address of the restaurant +• Locality: Location in the city +• Locality Verbose: Detailed description of the locality +• Longitude: Longitude coordinate of the restaurant's location +• Latitude: Latitude coordinate of the restaurant's location +• Cuisines: Cuisines offered by the restaurant +• Average Cost for two: Cost for two people in different currencies 👫 +• Currency: Currency of the country +• Has Table booking: yes/no +• Has Online delivery: yes/ no +• Is delivering: yes/ no +• Switch to order menu: yes/no +• Price range: range of price of food +• Aggregate Rating: Average rating out of 5 +• Rating color: depending upon the average rating color +• Rating text: text on the basis of rating of rating +• Votes: Number of ratings casted by people + + + + +### Acknowledgements + +I would like to thank Zomato API for helping me collecting data + + +### Inspiration +Data Processing has been done on the following categories: +Currency +City +Location +Rating Text",2018-03-13T04:56:25.81Z,shrutimehta/zomato-restaurants-data,5.732263,https://www.kaggle.com/shrutimehta/zomato-restaurants-data,1,19144,CC0: Public Domain,54,"Ready version: 2, 2018-03-13T04:56:25.81Z",0.7941176,currencies +14,Meta Numerai,Numerai Tournament Results,"### Context + +Numer.ai tournament results + + +### Acknowledgements + +1. The dataset was collected with [NumerApi](https://github.com/uuazed/numerapi) +2. The daily currency info is from [CoinMarketCap](https://coinmarketcap.com/currencies/numeraire/) + +Photo by Alex Knight on Unsplash",2019-07-01T08:29:53.457Z,gaborfodor/meta-numerai,41.912215,https://www.kaggle.com/gaborfodor/meta-numerai,2,98,CC0: Public Domain,11,"Ready version: 36, 2019-07-01T08:29:53.457Z",0.7058824,currencies +15,Crypto Market Data,CoinMarketCap data from 1/May/13 to 8/5/18 of popular crypto currencies,"### Context + +Historical data for crypto currencies. + + +### Content + +The dataset contains historical data of the last 5 years (1-May-13 to 8-May-18) from CoinMarketCap of the following crypto currencies. + + - Bitcoin + - Ethereum + - Lite coin + - Ripple + - Verge + - Bitcoin Cash + - Ethereum Classic + - Neo + - Nano + - Dash + - EOS + - IOTA + - Tron + - Stellar + +**Note: ** For the coins not older than 5 years, the dataset contains the data from their listing on CoinMarketCap + +### Acknowledgements + +The data has been scraped from **CoinMarketCap** + + +### Inspiration + +Trend Analysis for currencies. +Symptoms of price change. +Reason of price crash. +Growth rate and possible market leader.",2018-05-08T14:38:02.187Z,anasshahid88/crypto-market-data,0.313499,https://www.kaggle.com/anasshahid88/crypto-market-data,3,163,CC0: Public Domain,0,"Ready version: 1, 2018-05-08T14:38:02.187Z",0.647058845,currencies +16,Ethereum Blockchain,Complete live historical Ethereum blockchain data (BigQuery),"## Context + +Bitcoin and other cryptocurrencies have captured the imagination of technologists, financiers, and economists. Digital currencies are only one application of the underlying blockchain technology. Like its predecessor, Bitcoin, the [Ethereum][1] blockchain can be described as an immutable distributed ledger. However, creator Vitalik Buterin also extended the set of capabilities by including a virtual machine that can execute arbitrary code stored on the blockchain as smart contracts. + +Both Bitcoin and Ethereum are essentially [OLTP][2] databases, and provide little in the way of [OLAP][3] (analytics) functionality. However the Ethereum dataset is notably distinct from the Bitcoin dataset: + +* The Ethereum blockchain has as its primary unit of value Ether, while the Bitcoin blockchain has Bitcoin. However, the majority of value transfer on the Ethereum blockchain is composed of so-called tokens. Tokens are created and managed by smart contracts. + +* Ether value transfers are precise and direct, resembling accounting ledger debits and credits. This is in contrast to the Bitcoin value transfer mechanism, for which it can be difficult to determine the balance of a given wallet address. + +* Addresses can be not only wallets that hold balances, but can also contain smart contract bytecode that allows the programmatic creation of agreements and automatic triggering of their execution. An aggregate of coordinated smart contracts could be used to build a [decentralized autonomous organization][4]. + +## Content + +The Ethereum blockchain data are now available for exploration with BigQuery. All historical data are in the [`ethereum_blockchain dataset`][5], which updates daily. + +Our hope is that by making the data on public blockchain systems more readily available it promotes technological innovation and increases societal benefits. + +## Querying BigQuery tables + +You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at `bigquery-public-data.crypto_ethereum.[TABLENAME]`. **[Fork this kernel to get started][6]**. + +## Acknowledgements + +[Cover photo by Thought Catalog][7] on Unsplash + +## Inspiration + +* What are the most popularly exchanged digital tokens, represented by ERC-721 and ERC-20 smart contracts? +* Compare transaction volume and transaction networks over time +* Compare transaction volume to historical prices by joining with other available data sources like [Bitcoin Historical Data][8] + + + [1]: https://ethereum.org/ + [2]: https://en.wikipedia.org/wiki/Online_transaction_processing + [3]: https://en.wikipedia.org/wiki/Online_analytical_processing + [4]: https://en.wikipedia.org/wiki/Decentralized_autonomous_organization + [5]: https://bigquery.cloud.google.com/dataset/bigquery-public-data:ethereum_blockchain + [6]: https://www.kaggle.com/mrisdal/visualizing-average-ether-costs-over-time + [7]: https://unsplash.com/photos/bj8U389A9N8 + [8]: https://www.kaggle.com/bigquery/bitcoin-blockchain",2019-03-04T14:57:55.953Z,bigquery/ethereum-blockchain,910127.001043,https://www.kaggle.com/bigquery/ethereum-blockchain,5,0,CC0: Public Domain,20,"Ready version: 4, 2019-03-04T14:57:55.953Z",0.7058824,currencies +17,Bitcoin & Altcoins in 2017,Price transition of bitcoin and altcoins in 2017,"### Context + +I made this dataset for Coursera assignment ([Applied Plotting, Charting & Data Representation in Python](https://www.coursera.org/learn/python-plotting)). + +### Content + +Price transition of crypto-currencies in 2017. +These data were downloaded via Poloniex API.",2017-12-31T15:01:20.877Z,minaba/bitcoin-altcoins-in-2017,0.803789,https://www.kaggle.com/minaba/bitcoin-altcoins-in-2017,2,149,CC BY-SA 4.0,3,"Ready version: 1, 2017-12-31T15:01:20.877Z",0.7058824,currencies +18,Kickstarter videogames released on Steam,A dataset collected from Kickstarter and SteamSpy,"### Context + +I have generated this set of auxilary tables to complement the [dataset of Kickstarter projects][1] with the focus on videogames. + +### Content + +Currently the set contains three tables: + +**SteamSpy** table contains aggregate information on released games tracked by SteamSpy + +**KSreleased** table links the Steam appid's with Kickstarter project IDs for those KS games, that after a successful campaign were finished and released on Steam + +**Currencies** table shows historical currency exchange rates to USD($) for each week since the earliest campaign deadline among those in KSreleased + +### Acknowledgements + +SteamSpy table was created using the site's [API][2] and I would like to take this opportunity to praise the site's creator **Sergey Galyonkin** + +KSreleased table was generated by crawling [Kickstarter ""Play now"" pages][3] + +Currencies table was generated using Fixer.io [API][4] + +If you would like to know the details/see the code that I wrote to generate the data, I uploaded it as the ""DEMO: generate data"" kernel. It won't work online (otherwise I wouldn't have the need to create the dataset in the first place), but you can download the notebook and run it locally or just check my poor coding style :) + +### Inspiration + +I intend to finalize my analysis on KS games that were released on Steam and publish it here, but of course I would like you to find more uses for this data beyond what I would have thought of. And again, I don't think this dataset is useful on its own, so please don't forget to connect to the [KS projects dataset][1] by Kemical + + + [1]: https://www.kaggle.com/kemical/kickstarter-projects + [2]: http://steamspy.com/api.php + [3]: https://www.kickstarter.com/play + [4]: http://fixer.io/",2018-01-21T23:54:08.17Z,tonyplaysguitar/steam-spy-data-from-api-request,1.080727,https://www.kaggle.com/tonyplaysguitar/steam-spy-data-from-api-request,2,181,CC0: Public Domain,2,"Ready version: 4, 2018-01-21T23:54:08.17Z",0.875,currencies +19,Predict Future Sales Supplementary,Dataset provides some supplementary data for Predict Future Sales challenge.,"# Kaggle Challenge: Predict Future Sales. +This dataset aims to publish the files that I will use on the Kaggle challenge called [Predict Future Sales](https://www.kaggle.com/c/competitive-data-science-predict-future-sales) + +# Data +- I have downloaded **test** and **train** data from the [competition webpage](https://www.kaggle.com/c/competitive-data-science-predict-future-sales/data). +- I have downloaded **shop** and **item** information data from the English translations of [@deargle](https://www.kaggle.com/deargle) from [this post](https://www.kaggle.com/c/competitive-data-science-predict-future-sales/discussion/54949). Then I have made some changes in the data described in this [R file](https://github.com/kazimanil/predict-future-sales/blob/master/data-manipulation-once-used.R). +- I have collected historical **USD/RUB** rates from [Investing.com](https://www.investing.com/currencies/usd-rub-historical-data). I have used the most recent data for the days which does not include a rate info (i.e. Saturdays and Sundays which markets are closed). +- I have prepared a calendar depicting public holidays and weekends. Public Holiday info for Russia is collected from [this site](https://www.officeholidays.com/countries/russia/).",2018-05-10T13:07:40.25Z,kazimanil/predict-future-sales-supplementary,0.354256,https://www.kaggle.com/kazimanil/predict-future-sales-supplementary,1,243,"Database: Open Database, Contents: Database Contents",4,"Ready version: 3, 2018-05-10T13:07:40.25Z",0.7647059,currencies +20,Demonetization in India Twitter Data,Data extracted from Twitter regarding the recent currency demonetization,"# Context + +The **demonetization of ₹500 and ₹1000** banknotes was a step taken by the **Government of India** on 8 November 2016, ceasing the usage of all ₹500 and ₹1000 banknotes of the Mahatma Gandhi Series as a form of legal tender in India from 9 November 2016. + +The announcement was made by the Prime Minister of India **Narendra Modi** in an unscheduled live televised address to the nation at 20:15 Indian Standard Time (IST) the same day. In the announcement, Modi declared circulation of all ₹500 and ₹1000 banknotes of the Mahatma Gandhi Series as invalid and announced the issuance of new ₹500 and ₹2000 banknotes of the Mahatma Gandhi New Series in exchange for the old banknotes. + +# Content + +The data contains 6000 most recent tweets on #demonetization. There are 6000 rows(one for each tweet) and 14 columns. + +## Metadata: + +* Text (Tweets) +* favorited +* favoriteCount +* replyToSN +* created +* truncated +* replyToSID +* id +* replyToUID +* statusSource +* screenName +* retweetCount +* isRetweet +* retweeted + +# Acknowledgement + +The data was collected using the **""twitteR""** package in R using the twitter API. + +# Past Research + +I have performed my own analysis on the data. I only did a sentiment analysis and formed a word cloud. + +[Click here to see the analysis on GitHub](https://github.com/arathee2/demonetization-india/blob/master/demonetization-sentiment-analysis.md) + +# Inspiration + +* What percentage of tweets are negative, positive or neutral ? +* What are the most famous/re-tweeted tweets ?",2017-04-21T17:35:02.253Z,arathee2/demonetization-in-india-twitter-data,0.990156,https://www.kaggle.com/arathee2/demonetization-in-india-twitter-data,4,4783,Unknown,171,"Ready version: 3, 2017-04-21T17:35:02.253Z",0.7352941,currency +21,EURUSD - 15m - 2010-2016,"FOREX currency rates data for EURUSD, 15 minute candles, BID, years 2010-2016","# Context + +I've always wanted to have a proper sample Forex currency rates dataset for testing purposes, so I've created one. + + +# Content + +The data contains Forex EURUSD currency rates in 15-minute slices (OHLC - Open High Low Close, and Volume). BID price only. Spread is *not provided*, so be careful. + +(Quick reminder: Bid price + Spread = Ask price) + +The dates are in the yyyy-mm-dd hh:mm format, GMT. Volume is in Units. + +# Acknowledgements + +Dukascopy Bank SA +https://www.dukascopy.com/swiss/english/marketwatch/historical/ + +# Inspiration + +Just would like to see if there is still an way to beat the current Forex market conditions, with the prop traders' advanced automatic algorithms running in the wild.",2017-02-22T14:42:13.003Z,meehau/EURUSD,3.494511,https://www.kaggle.com/meehau/EURUSD,2,1460,CC BY-NC-SA 4.0,12,"Ready version: 2, 2017-02-22T14:42:13.003Z",0.8235294,currency +22,Currency Exchange Rates,Daily exchange rates for 51 currencies from 1995 to 2018,"This dataset contains the daily currency exchange rates as reported to the *International Monetary Fund* by the issuing central bank. Included are 51 currencies over the period from 01-01-1995 to 11-04-2018. + +The format is known as *currency units per U.S. Dollar*. Explained by example, each rate in the *Euro* column says how much *U.S. Dollar* you had to pay at a certain date to buy 1 Euro. Hence, the rates in the column *U.S. Dollar* are always `1`.",2018-05-02T17:48:28.943Z,thebasss/currency-exchange-rates,0.596854,https://www.kaggle.com/thebasss/currency-exchange-rates,1,521,CC0: Public Domain,0,"Ready version: 2, 2018-05-02T17:48:28.943Z",0.647058845,currency +23,Currency Exchange Rate,Currency Exchange Rate from 1950-2017,"### Context + +The data set consist currency exchange rate of different countries since 1950. + +### Content + +Exchange rates are defined as the price of one country's' currency in relation to another. Exchange rates may be expressed as the average rate for a period of time or as the rate at the end of the period. Exchange rates are classified by the International Monetary Fund in three broad categories, reflecting the role of the authorities in the determination of the exchange rates and/or the multiplicity of exchange rates in a country: the market rate, in which the rate ""floats"" and is largely set by market forces; the official rate, in which the rate is ""fixed"" by a country's authorities; and arrangements falling between the two, in which the rate holds a stable value against another currency or a composite of currencies. This indicator is measured in terms of national currency per US dollar. + +### Acknowledgements +* [ source :](https://data.oecd.org/conversion/exchange-rates.htm) +* [ Purchasing power of currency : wiki](https://en.wikipedia.org/wiki/Exchange_rate) +### Inspiration: +What is exchange rate variation by year? + +",2018-02-27T16:33:39.507Z,sudhirnl7/currency-excahnge-rate,0.026714,https://www.kaggle.com/sudhirnl7/currency-excahnge-rate,2,182,CC0: Public Domain,1,"Ready version: 4, 2018-02-27T16:33:39.507Z",0.7352941,currency +24,Binance Crypto Klines,"Minutely crypto currency open/close prices, high/low, trades and others","### Context + +Each file contains klines for 1 month period with 1 minute intervals. File name formating looks like mm-yyyy-SMB1SMB2 (e.g. 11-2017-XRPBTC). + +This data set contains now only XRP/BTC and ETH/USDT symbol pair now, but it will be expand soon. + + +### Features + - Open time -> timestamp (milliseconds) + - Open price -> float + - High price -> float + - Low price -> float + - Close price -> float + - Volume -> float + - Quote asset volume -> float + - Close time -> timestamp (milliseconds) + - Number of trades -> int + - Taker buy base asset volume -> float + - Taker buy quote asset volume -> float + + +### Acknowledgements + +This dataset was collected from [Binance Exchange | Worlds Largest Crypto Exchange][1] + + +### Inspiration + +This data set could inspire you on most efficient trading algorithms. + + + [1]: https://www.binance.com",2018-04-08T09:58:41.477Z,binance/binance-crypto-klines,1004.510014,https://www.kaggle.com/binance/binance-crypto-klines,5,488,CC0: Public Domain,1,"Ready version: 5, 2018-04-08T09:58:41.477Z",0.75,currency +25,Iraqi Money العملة العراقية,Object detection dataset for Iraqi currency,"### Object detection dataset for Iraqi currency + +About 4000 images for both sides of each Iraqi currency with object position inside image. + + +**IMPORTANT** + +objects.json contains object frame as (midX, midY, Width, Height) inside each image with file name alphabetic sorting. + +This dataset used in training CoreML model for MoneyReader app for iOS: + +Download and try here: http://itunes.apple.com/app/id1421092136 + + +Dataset created by HusamAamer from AppChief.net + + + +### هذه البيانات هي للتعرف على للعملة العراقية داخل صورة + +حوالي ٤٠٠٠ صورة لوجهي كل فئة من فئات العملة العراقية مقسمة في مجلدات حسب الفئة + +**هــام** + +يحتوي ملف الجيسون على مصفوفة ، كل عنصر تابع لصورة معينة عند ترتيب الصور حسب الترتيب الأبجدي، وكل عنصر يحتوي معلومات موقع العملة داخل الصورة (المركز اكس ، المركز واي ، العرض ، الإرتفاع) + +تم استخدام هذه البيانات لغرض تدريب موديل CoreML لقارئ العملات العراقية على متجر التطبيقات + +حمل التطبيق وجربه مجاناً : http://itunes.apple.com/app/id1421092136",2018-08-23T09:28:29.143Z,husamaamer/iraqi-currency-,1435.021165,https://www.kaggle.com/husamaamer/iraqi-currency-,4,40,Unknown,2,"Ready version: 2, 2018-08-23T09:28:29.143Z",0.6875,currency +26,401 crypto currency pairs at 1-minute resolution,Historical crypto currency data from the Bitfinex exchange including Bitcoin,"## About this dataset + +With the rise of crypto currency markets the interest in creating automated trading strategies, or trading bots, has grown. Developing algorithmic trading strategies however requires intensive backtesting to ensure profitable performance. It follows that access to high resolution historical trading data is the foundation of every successful algorithmic trading strategy. This dataset therefore provides open, high, low, close (OHLC) data at 1 minute resolution of various crypto currency pairs for the development of automated trading systems. + +### Content + +This dataset contains the historical trading data (OHLC) of 401 trading pairs at 1 minute resolution reaching back until the year 2013. It was collected from the Bitfinex exchange as described in [this article](https://medium.com/coinmonks/how-to-get-historical-crypto-currency-data-954062d40d2d). +The data in the CSV files is the raw output of the Bitfinex API. This means that there are no timestamps for time periods in which the exchange was down. Also if there were time periods without any activity or trades there will be no timestamp as well. + +### Inspiration + +This dataset is intended to facilitate the development of automatic trading strategies. Machine learning algorithms, as they are available through various open source libraries these days, typically require large amounts of training data to unveil their full power. Also the process of backtesting new strategies before deploying them rests on high quality data. Most crypto trading datasets that are currently available either have low temporal resolution, are not free of charge or focus only on a limited number of currency pairs. This dataset on the other hand provides high temporal resolution data of almost 400 currency pairs for the development of new trading algorithms.",2019-07-09T21:25:22.227Z,tencars/392-crypto-currency-pairs-at-minute-resolution,393.638972,https://www.kaggle.com/tencars/392-crypto-currency-pairs-at-minute-resolution,3,119,CC BY-SA 4.0,2,"Ready version: 2, 2019-07-09T21:25:22.227Z",1.0,currency +27,Crypto currency data,High resolution data of all BTC based pairs from bittrex. ,"### Context +One week of highly resolved crypto currency data from bittrex. + + +### Content + +The data set comprises four .csv files, containing market price, ask price, bid price and trading volume of all 196 crypto currency coin pairs, listed on bittrex. Bitcoin is the base currency, both for prices and trading volume. +The temporal resolution is one minute, the time stamp is in UNIX time. + +### Acknowledgements + +Thanks to the bittrex API which made the data available! + +### Inspiration +Gain more insights on the intra-day correlations among different currency pairs and price development related to trading volume. E.g., predict price pumps based on the changes in trading volume. + +",2018-04-15T16:42:18.337Z,mhansinger/bittrex-bitcoin-pairs,44.064008,https://www.kaggle.com/mhansinger/bittrex-bitcoin-pairs,3,126,CC0: Public Domain,0,"Ready version: 2, 2018-04-15T16:42:18.337Z",0.647058845,currency +28,Bitcoin Historical Data,"Bitcoin data at 1-min intervals from select exchanges, Jan 2012 to March 2019","### Context +Bitcoin is the longest running and most well known cryptocurrency, first released as open source in 2009 by the anonymous Satoshi Nakamoto. Bitcoin serves as a decentralized medium of digital exchange, with transactions verified and recorded in a public distributed ledger (the blockchain) without the need for a trusted record keeping authority or central intermediary. Transaction blocks contain a SHA-256 cryptographic hash of previous transaction blocks, and are thus ""chained"" together, serving as an immutable record of all transactions that have ever occurred. As with any currency/commodity on the market, bitcoin trading and financial instruments soon followed public adoption of bitcoin and continue to grow. Included here is historical bitcoin market data at 1-min intervals for select bitcoin exchanges where trading takes place. Happy (data) mining! + +### Content + +coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv + +bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv + +CSV files for select bitcoin exchanges for the time period of Jan 2012 to March 2019, with minute to minute updates of OHLC (Open, High, Low, Close), Volume in BTC and indicated currency, and weighted bitcoin price. **Timestamps are in Unix time. Timestamps without any trades or activity have their data fields filled with NaNs.** If a timestamp is missing, or if there are jumps, this may be because the exchange (or its API) was down, the exchange (or its API) did not exist, or some other unforseen technical error in data reporting or gathering. All effort has been made to deduplicate entries and verify the contents are correct and complete to the best of my ability, but obviously trust at your own risk. + + +### Acknowledgements and Inspiration + +Bitcoin charts for the data. The various exchange APIs, for making it difficult or unintuitive enough to get OHLC and volume data at 1-min intervals that I set out on this data scraping project. Satoshi Nakamoto and the novel core concept of the blockchain, as well as its first execution via the bitcoin protocol. I'd also like to thank viewers like you! Can't wait to see what code or insights you all have to share. +",2019-03-15T16:22:58.397Z,mczielinski/bitcoin-historical-data,123.326534,https://www.kaggle.com/mczielinski/bitcoin-historical-data,2,43353,CC BY-SA 4.0,128,"Ready version: 16, 2019-03-15T16:22:58.397Z",1.0,currency +29,Zomato Restaurants Data,Analyzing the best restaurants of the major cities,"### Context + +I really get fascinated by good quality food being served in the restaurants and would like to help community find the best cuisines around their area + +### Content + +Zomato API Analysis is one of the most useful analysis for foodies who want to taste the best cuisines of every part of the world which lies in their budget. This analysis is also for those who want to find the value for money restaurants in various parts of the country for the cuisines. Additionally, this analysis caters the needs of people who are striving to get the best cuisine of the country and which locality of that country serves that cuisines with maximum number of restaurants.♨️ + +For more information on Zomato API and Zomato API key +• Visit : https://developers.zomato.com/api#headline1 +• Data Collection: https://developers.zomato.com/documentation + +Data +Fetching the data: +• Data has been collected from the Zomato API in the form of .json files(raw data) using the url=https://developers.zomato.com/api/v2.1/search?entity_id=1&entity_type=city&start=1&count=20 +• Raw data can be seen here + +Data Collection: +Data collected can be seen as a raw .json file here + +Data Storage: +The collected data has been stored in the Comma Separated Value file Zomato.csv. Each restaurant in the dataset is uniquely identified by its Restaurant Id. Every Restaurant contains the following variables: + +• Restaurant Id: Unique id of every restaurant across various cities of the world +• Restaurant Name: Name of the restaurant +• Country Code: Country in which restaurant is located +• City: City in which restaurant is located +• Address: Address of the restaurant +• Locality: Location in the city +• Locality Verbose: Detailed description of the locality +• Longitude: Longitude coordinate of the restaurant's location +• Latitude: Latitude coordinate of the restaurant's location +• Cuisines: Cuisines offered by the restaurant +• Average Cost for two: Cost for two people in different currencies 👫 +• Currency: Currency of the country +• Has Table booking: yes/no +• Has Online delivery: yes/ no +• Is delivering: yes/ no +• Switch to order menu: yes/no +• Price range: range of price of food +• Aggregate Rating: Average rating out of 5 +• Rating color: depending upon the average rating color +• Rating text: text on the basis of rating of rating +• Votes: Number of ratings casted by people + + + + +### Acknowledgements + +I would like to thank Zomato API for helping me collecting data + + +### Inspiration +Data Processing has been done on the following categories: +Currency +City +Location +Rating Text",2018-03-13T04:56:25.81Z,shrutimehta/zomato-restaurants-data,5.732263,https://www.kaggle.com/shrutimehta/zomato-restaurants-data,1,19144,CC0: Public Domain,54,"Ready version: 2, 2018-03-13T04:56:25.81Z",0.7941176,currency +30,Daily Crypto Currency and Lunar Geocentric Data ,"Daily crypto markets open, close, low, high data and Lunar Phases (2013-2018)","### Context + +This data includes daily open, high, low, close values for all crypto currencies (since April 2013) as well as Daily Lunar Geocentric data (distance, declination, brightness, illumination %, and constellation). Please note that I have consolidated this data from the below two sources (originally submitted by MCrescenzo and jvent) after my mother asked me if there's a correlation between the lunar status and the financial markets. + +### Content + +This data includes daily open, high, low, close values for all crypto currencies (since April 2013 until January 2018) as well as Daily Lunar Geocentric data (distance, declination, brightness, illumination %, and constellation) for same timeframe. + +### Acknowledgements + +Lunar Daily Distance and Declination : 1800-2020. [Click for original data submitted by MCrescenzo][1] +Every Cryptocurrency Daily Market Price. [Click for original data submitted by jvent][2] + +### Inspiration + - Is there any correlation between cryptocurrencies and Lunar Phases? + - Can we predict cryptocurrency movements by the Lunar Phases? + + + [1]: https://www.kaggle.com/crescenzo/lunardistance + [2]: https://www.kaggle.com/jessevent/all-crypto-currencies",2018-01-25T01:33:42.077Z,rudymizrahi/daily-crypto-currency-and-lunar-geocentric-data,30.710297,https://www.kaggle.com/rudymizrahi/daily-crypto-currency-and-lunar-geocentric-data,5,88,Unknown,0,"Ready version: 1, 2018-01-25T01:33:42.077Z",0.647058845,currency +31,Mobile App Store ( 7200 apps),Analytics for Mobile Apps,"**Mobile App Statistics (Apple iOS app store)** +====================================== +The ever-changing mobile landscape is a challenging space to navigate. . The percentage of mobile over desktop is only increasing. Android holds about 53.2% of the smartphone market, while iOS is 43%. To get more people to download your app, you need to make sure they can easily find your app. Mobile app analytics is a great way to understand the existing strategy to drive growth and retention of future user. + +With million of apps around nowadays, the following data set has become very key to getting top trending apps in iOS app store. This data set contains more than 7000 Apple iOS mobile application details. The data was extracted from the [iTunes Search API](http://www.transtats.bhttps://developer.apple.com/library/content/documentation/AudioVideo/Conceptual/iTuneSearchAPI/SearchExamples.html#//apple_ref/doc/uid/TP40017632-CH6-SW1ts.gov/DatabaseInfo.asp?DB_ID=120&Link=0) at the Apple Inc website. R and linux web scraping tools were used for this study. + +**Data collection date (from API);** +July 2017 + +**Dimension of the data set;** +7197 rows and 16 columns + +**Content:** +------------ + +appleStore.csv +-------------- + +1. ""id"" : App ID + +2. ""track_name"": App Name + +3. ""size_bytes"": Size (in Bytes) + +4. ""currency"": Currency Type + +5. ""price"": Price amount + +6. ""rating_count_tot"": User Rating counts (for all version) + +7. ""rating_count_ver"": User Rating counts (for current version) + +8. ""user_rating"" : Average User Rating value (for all version) + +9. ""user_rating_ver"": Average User Rating value (for current version) + +10. ""ver"" : Latest version code + +11. ""cont_rating"": Content Rating + +12. ""prime_genre"": Primary Genre + +13. ""sup_devices.num"": Number of supporting devices + +14. ""ipadSc_urls.num"": Number of screenshots showed for display + +15. ""lang.num"": Number of supported languages + +16. ""vpp_lic"": Vpp Device Based Licensing Enabled + +appleStore_description.csv +-------------------------- + +1. id : App ID +2. track_name: Application name +3. size_bytes: Memory size (in Bytes) +4. app_desc: Application description + +# Acknowledgements +The data was extracted from the [iTunes Search API](http://www.transtats.bhttps://developer.apple.com/library/content/documentation/AudioVideo/Conceptual/iTuneSearchAPI/SearchExamples.html#//apple_ref/doc/uid/TP40017632-CH6-SW1ts.gov/DatabaseInfo.asp?DB_ID=120&Link=0) at the Apple Inc website. R and linux web scraping tools were used for this study. + +## Inspiration +1. *How does the App details contribute the user ratings?* +2. *Try to compare app statistics for different groups?* + +**Reference: R package** +From github, with +`devtools::install_github(""ramamet/applestoreR"")` + +## Licence +Copyright (c) 2018 Ramanathan Perumal + +",2018-06-10T07:04:28.357Z,ramamet4/app-store-apple-data-set-10k-apps,5.904947,https://www.kaggle.com/ramamet4/app-store-apple-data-set-10k-apps,3,24257,GPL 2,73,"Ready version: 7, 2018-06-10T07:04:28.357Z",0.8235294,currency +32,Kickstarter Project Statistics,4000 live projects plus 4000 most backed projects,"Crowdfunding has become one of the main sources of initial capital for small businesses and start-up companies that are looking to launch their first products. Websites like [Kickstarter](https://www.kickstarter.com) and [Indiegogo](https://www.indiegogo.com/) provide a platform for millions of creators to present their innovative ideas to the public. This is a win-win situation where creators could accumulate initial fund while the public get access to cutting-edge prototypical products that are not available in the market yet. + +At any given point, Indiegogo has around 10,000 live campaigns while Kickstarter has 6,000. It has become increasingly difficult for projects to stand out of the crowd. Of course, advertisements via various channels are by far the most important factor to a successful campaign. However, for creators with a smaller budget, this leaves them wonder, + +**""How do we increase the probability of success of our campaign starting from the very moment we create our project on these websites?""** + +# Data Sources +All of my raw data are scraped from [Kickstarter.com](https://www.kickstarter.com). + +1. First 4000 **live projects** that are currently campaigning on Kickstarter (live.csv) + - *Last updated: 2016-10-29 5pm PDT* + - amt.pledged: amount pledged (float) + - blurb: project blurb (string) + - by: project creator (string) + - country: abbreviated country code (string of length 2) + - currency: currency type of amt.pledged (string of length 3) + - end.time: campaign end time (string ""YYYY-MM-DDThh:mm:ss-TZD"") + - location: mostly city (string) + - pecentage.funded: unit % (int) + - state: mostly US states (string of length 2) and others (string) + - title: project title (string) + - type: type of location (string: County/Island/LocalAdmin/Suburb/Town/Zip) + - url: project url after domain (string) + +2. Top 4000 **most backed** projects ever on Kickstarter (most_backed.csv) + - *Last updated: 2016-10-30 10pm PDT* + - amt.pledged + - blurb + - by + - category: project category (string) + - currency + - goal: original pledge goal (float) + - location + - num.backers: total number of backers (int) + - num.backers.tier: number of backers corresponds to the pledge amount in pledge.tier (int[len(pledge.tier)]) + - pledge.tier: pledge tiers in USD (float[]) + - title + - url + +See more at http://datapolymath.paperplane.io/",2016-11-01T05:37:42.683Z,socathie/kickstarter-project-statistics,1.308381,https://www.kaggle.com/socathie/kickstarter-project-statistics,1,4912,CC BY-NC-SA 4.0,102,"Ready version: 1, 2016-11-01T05:37:42.683Z",0.852941155,currency +33,Russian Financial Indicators,Dataset of Currency Rates ,"### Context + +This data was extracted from the open database of quotations of currencies and precious metals located on the site of the Bank of Russia. +The link https://www.cbr.ru/Eng/statistics/?PrtId=finr is available for all internet users, the website is in Russian and in English. + +### Content + +It consists of 1128 observations of 23 variables. +Variables that indicating exchange rates are measured in rubles, the prices of precious metals are denoted in rubles per gram, foreign exchange. + +The special variable `dual currency basket` is calculated according to the formula: 0.55 USD + 0.45 EUR. + +The variables k_CNY, k_JPY are coefficients for the currencies values. + +Foreign exchange reserves and monetary gold reserves consist of official data points for every month about the state reserves in Russia. + +### Acknowledgements + +From publicly available data the files in 'xlsx' and 'csv' formats have been generated and downloaded. +They are absolutely free for usage. + +### Usage + +A set of financial indicators is suitable for training in the field of data visualization and learning simple regression algorithms.",2017-11-06T00:14:12.11Z,olgabelitskaya/russian-financial-indicators,0.278978,https://www.kaggle.com/olgabelitskaya/russian-financial-indicators,0,97,Other (specified in description),1,"Ready version: 1, 2017-11-06T00:14:12.11Z",0.5882353,currency +34,Nepali Currency,,,2018-10-31T18:15:52.017Z,thevirusx3/nepali-currency,1073.942714,https://www.kaggle.com/thevirusx3/nepali-currency,0,12,Unknown,1,"Ready version: 4, 2018-10-31T18:15:52.017Z",0.125,currency +35,Kaggle Machine Learning & Data Science Survey 2017,A big picture view of the state of data science and machine learning.,"### Context + +For the first time, Kaggle conducted an industry-wide survey to establish a comprehensive view of the state of data science and machine learning. The survey received over 16,000 responses and we learned a ton about who is working with data, what’s happening at the cutting edge of machine learning across industries, and how new data scientists can best break into the field. + +To share some of the initial insights from the survey, we’ve worked with the folks from [The Pudding](https://pudding.cool/) to put together [this interactive report](https://kaggle.com/surveys/2017). They’ve shared all of the kernels used in the report [here](https://www.kaggle.com/amberthomas/kaggle-2017-survey-results). + +### Content + +The data includes 5 files: + + - `schema.csv`: a CSV file with survey schema. This schema includes the questions that correspond to each column name in both the `multipleChoiceResponses.csv` and `freeformResponses.csv`. + - `multipleChoiceResponses.csv`: Respondents' answers to multiple choice and ranking questions. These are non-randomized and thus a single row does correspond to all of a single user's answers. + -`freeformResponses.csv`: Respondents' freeform answers to Kaggle's survey questions. These responses are randomized within a column, so that reading across a single row does not give a single user's answers. + - `conversionRates.csv`: Currency conversion rates (to USD) as accessed from the R package ""quantmod"" on September 14, 2017 + - `RespondentTypeREADME.txt`: This is a schema for decoding the responses in the ""Asked"" column of the `schema.csv` file. + +### Kernel Awards in November +In the month of November, we’re awarding $1000 a week for code and analyses shared on this dataset via [Kaggle Kernels](https://www.kaggle.com/kaggle/kaggle-survey-2017/kernels). Read more about this month’s [Kaggle Kernels Awards](https://www.kaggle.com/about/datasets-awards/kernels) and help us advance the state of machine learning and data science by exploring this one of a kind dataset. + +### Methodology + - This survey received 16,716 usable respondents from 171 countries and territories. If a country or territory received less than 50 respondents, we grouped them into a group named “Other” for anonymity. + - We excluded respondents who were flagged by our survey system as “Spam” or who did not answer the question regarding their employment status (this question was the first required question, so not answering it indicates that the respondent did not proceed past the 5th question in our survey). + - Most of our respondents were found primarily through Kaggle channels, like our email list, discussion forums and social media channels. + - The survey was live from August 7th to August 25th. The median response time for those who participated in the survey was 16.4 minutes. We allowed respondents to complete the survey at any time during that window. + - We received salary data by first asking respondents for their day-to-day currency, and then asking them to write in either their total compensation. + - We’ve provided a csv with an exchange rate to USD for you to calculate the salary in US dollars on your own. + - The question was optional + - Not every question was shown to every respondent. In an attempt to ask relevant questions to each respondent, we generally asked work related questions to employed data scientists and learning related questions to students. There is a column in the `schema.csv` file called ""Asked"" that describes who saw each question. You can learn more about the different segments we used in the `schema.csv` file and `RespondentTypeREADME.txt` in the data tab. + - To protect the respondents’ identity, the answers to multiple choice questions have been separated into a separate data file from the open-ended responses. We do not provide a key to match up the multiple choice and free form responses. Further, the free form responses have been randomized column-wise such that the responses that appear on the same row did not necessarily come from the same survey-taker. +",2017-10-27T22:03:03.417Z,kaggle/kaggle-survey-2017,3.692041,https://www.kaggle.com/kaggle/kaggle-survey-2017,3,16040,"Database: Open Database, Contents: © Original Authors",296,"Ready version: 4, 2017-10-27T22:03:03.417Z",0.8235294,currency +36,IndianNew Currency Notes,,,2018-10-11T14:00:34.55Z,trnpandey/indiannew-currency-notes,11.519162,https://www.kaggle.com/trnpandey/indiannew-currency-notes,0,48,Data files © Original Authors,1,"Ready version: 1, 2018-10-11T14:00:34.55Z",0.25,currency +37,Global Food Prices,743k Rows of Monthly Market Food Prices Across Developing Countries,"### Context: +Global food price fluctuations can cause famine and large population shifts. Price changes are increasingly critical to policymakers as global warming threatens to destabilize the food supply. + +### Content: +Over 740k rows of prices obtained in developing world markets for various goods. Data includes information on country, market, price of good in local currency, quantity of good, and month recorded. + +### Acknowledgements: +Compiled by the [World Food Program](http://www1.wfp.org/) and distributed by [HDX](https://data.humdata.org/dataset/wfp-food-prices). + +### Inspiration: +This data would be particularly interesting to pair with currency fluctuations, weather patterns, and/or refugee movements--do any price changes in certain staples predict population upheaval? Do certain weather conditions influence market prices? + +### License: +Released under [CC BY-IGO](https://creativecommons.org/licenses/by/3.0/igo/legalcode).",2017-08-03T20:52:44.033Z,jboysen/global-food-prices,4.62487,https://www.kaggle.com/jboysen/global-food-prices,2,3675,Other (specified in description),6,"Ready version: 1, 2017-08-03T20:52:44.033Z",0.852941155,currency +38,Demonetization in India,Withdrawal of 500 and 1000 bills in India,"Withdrawal of a particular form of currency (such a gold coins, currency notes) from circulation is known as demonetization . +------------------------------------------------------------------------ + +**Context:** + +On November 8th, India’s Prime Minister announced that 86% of the country’s currency would be rendered null and void in 50 days and it will withdraw all 500 and 1,000 rupee notes — the country’s most popular currency denominations from circulation, while a new 2,000 rupee note added in. It was posited as a move to crackdown on corruption and the country’s booming under-regulated and virtually untaxed grassroots economy. + +**Content:** + +***The field names are following:*** + +ID +QUERY +TWEET_ID +INSERTED DATE +TRUNCATED +LANGUAGE +possibly_sensitive coordinates +retweeted_status +created_at_text +created_at +CONTENT +from_user_screen_name +from_user_id from_user_followers_count +from_user_friends_count +from_user_listed_count +from_user_statuses_count +from_user_description +from_user_location +from_user_created_at +retweet_count +entities_urls +entities_urls_counts +entities_hashtags +entities_hashtags_counts +entities_mentions +entities_mentions_counts +in_reply_to_screen_name +in_reply_to_status_id +source +entities_expanded_urls +json_output +entities_media_count +media_expanded_url +media_url +media_type +video_link +photo_link +twitpic + + +**Acknowledgements:** + +Dataset is created by pulling tweets by hashtag from twitter. + +**Inspiration:** + +Dataset can be used to understand trending tweets. +Dataset can be used for sentiment analysis and topic mining. +Dataset can be used for time series analysis of tweets. + +**What questions would you like answered by the community ?** + +What is the general sentiment of tweets ? +Conclusion regarding tweet sentiments varying over time. + +**What feedback would be helpful on the data itself ?** + +An in depth analysis of data.",2017-01-17T14:08:53.173Z,shan4224/demonetization-in-india,5.093071,https://www.kaggle.com/shan4224/demonetization-in-india,2,2408,CC0: Public Domain,13,"Ready version: 3, 2017-01-17T14:08:53.173Z",0.8235294,currency +39,EURO-USD History Data (1 Min Interval 2002-2017),History EURO/USD currency data,,2018-05-10T04:01:10.467Z,veidak/eurousd-history-data-1-min-interval-20022017,48.082155,https://www.kaggle.com/veidak/eurousd-history-data-1-min-interval-20022017,2,86,CC0: Public Domain,0,"Ready version: 1, 2018-05-10T04:01:10.467Z",0.5,currency +40,Economic calendar Investing.com Forex (2011-2019),"Archive of important events, economic news, volatility in a convenient format"," +Introduction +------------ + + Explore the archive of relevant economic information: relevant news on all indicators with explanations, data on past publications on the economy of the United States, Britain, Japan and other developed countries, volatility assessments and much more. For the construction of their forecast models, the use of in-depth training is optimal, with a learning model built on the basis of EU and Forex data. + The economic calendar is an indispensable assistant for the trader. + +Data set +-------- + + The data set is created in the form of an CSV, Excel spreadsheet (two files 2011-2013, 2014-2019), which can be found at boot time. You can see the source of the data on the site https://www.investing.com/economic-calendar/ + +![http://comparic.com/wp-content/uploads/2016/12/Economic_Calendar_-_Investing.com_-_2016-12-19_02.45.10.jpg][1] + +1. column - Event date +2. column - Event time (time New York) +3. column - Country of the event +4. column - The degree of volatility (possible fluctuations in currency, indices, etc.) caused by this event +5. column - Description of the event +6. column - Evaluation of the event according to the actual data, which came out better than the forecast, worse or correspond to it +7. column - Data format (%, K x103, M x106, T x109) +8. column - Actual event data +9. column - Event forecast data +10. column - Previous data on this event (with comments if there were any interim changes). + + +Inspiration +------------- + + 1. Use the historical EU in conjunction with the Forex data (exchange rates, indices, metals, oil, stocks) to forecast subsequent Forex data in order to minimize investment risks (combine fundamental market analysis and technical). + 2. Historical events of the EU used as a forecast of the subsequent (for example, the calculation of the probability of an increase in the rate of the Fed). + 3. Investigate the impact of combinations of EC events on the degree of market volatility at different time periods. + 4. To trace the main trends in the economies of the leading countries (for example, a decrease in the demand for unemployment benefits). + 5. Use the EU calendar together with the news background archive for this time interval for a more accurate forecast. + + + + [1]: http://comparic.com/wp-content/uploads/2016/12/Economic_Calendar_-_Investing.com_-_2016-12-19_02.45.10.jpg",2019-07-20T20:17:41.923Z,devorvant/economic-calendar,6.238669,https://www.kaggle.com/devorvant/economic-calendar,5,1490,"Database: Open Database, Contents: Database Contents",7,"Ready version: 1, 2019-07-20T20:17:41.923Z",0.9705882,forex +41,FOREX: EURUSD dataset,"3 years of winning trades in EURUSD 4H, 99 features for operation , make $$$","### Context +Forex is the largest market in the world, predicting the movement of prices is not a simple task, this dataset pretends to be the gateway for people who want to conduct trading using machine learning. + + +### Content +This dataset contains 4479 simulated winning transactions (real data, fictitious money) (3 years 201408-201708) with buy transactions (2771 operations 50.7%) and sell (2208 transactions, 49.3%), to generate this data a script of metatrader was used, operations were performed in time frame 4Hour and fixed stop loss and take profits of 50 pips (4 digits) were used to determine if the operation is winning. Each operation contains a set of classic technical indicators like rsi, mom, bb, emas, etc. (last 24 hours) + + +### Acknowledgements +Thanks to Kaggle for giving me the opportunity to share my passion for machine learning. +My profile: https://www.linkedin.com/in/rsx2010/ + + +### Inspiration +The problem of predicting price movement is reduced with this dataset to a classification problem: +
+""use the variables rsi1 to dayOfWeek to predict the type of correct operation to be performed (field=tipo)"" +
+tipo = 0 ==> Operation buy +
+tipo= 1 ==> Operation = sell: + +Good luck
+Rodrigo Salas Vallet-Cendre.
+rasvc@hotmail.com",2017-09-05T02:05:55.703Z,rsalaschile/forex-eurusd-dataset,0.400495,https://www.kaggle.com/rsalaschile/forex-eurusd-dataset,0,895,CC0: Public Domain,1,"Ready version: 1, 2017-09-05T02:05:55.703Z",0.7058824,forex +42,EURUSD - 15m - 2010-2016,"FOREX currency rates data for EURUSD, 15 minute candles, BID, years 2010-2016","# Context + +I've always wanted to have a proper sample Forex currency rates dataset for testing purposes, so I've created one. + + +# Content + +The data contains Forex EURUSD currency rates in 15-minute slices (OHLC - Open High Low Close, and Volume). BID price only. Spread is *not provided*, so be careful. + +(Quick reminder: Bid price + Spread = Ask price) + +The dates are in the yyyy-mm-dd hh:mm format, GMT. Volume is in Units. + +# Acknowledgements + +Dukascopy Bank SA +https://www.dukascopy.com/swiss/english/marketwatch/historical/ + +# Inspiration + +Just would like to see if there is still an way to beat the current Forex market conditions, with the prop traders' advanced automatic algorithms running in the wild.",2017-02-22T14:42:13.003Z,meehau/EURUSD,3.494511,https://www.kaggle.com/meehau/EURUSD,2,1460,CC BY-NC-SA 4.0,12,"Ready version: 2, 2017-02-22T14:42:13.003Z",0.8235294,forex +43,EUR USD Forex Pair Historical Data (2002 - 2019),Historical Data from Oanda,"### Content + +This dataset contains historical data saved from Oanda Brokerage. The columns represent the Bid and Ask price for every minute / hour. There are also news downloaded form Investing.com. These can be used to forecast the trend of the Forex market with machine learning techniques. + + +### Acknowledgements + +The data is downloaded from Quantconnect.com. If they have any concerns, I will remove it instantly. + +### Inspiration + +The reason I am sharing this dataset is because I struggled so much to find good quality data which is large enough to train trading algorithms. So if you want to try LSTMs, stochastics methods or anything else you are free to use this dataset.",2019-03-02T11:17:43.19Z,imetomi/eur-usd-forex-pair-historical-data-2002-2019,107.197636,https://www.kaggle.com/imetomi/eur-usd-forex-pair-historical-data-2002-2019,5,302,GNU Affero General Public License 3.0,3,"Ready version: 1, 2019-03-02T11:17:43.19Z",0.8235294,forex +44,EURUSD jan/2014 - oct/2018,"Forex with a ton of indicators, MQL5 retrieved from XM.COM","Forex with a ton of indicators, MQL5 retrieved from XM.COM + + +All info was retrieved using a Robot called XAPTUR +https://bitbucket.org/yurisa2/robos-da-mamae/src/master/Experts/Xaptur/Xaptur.mq5 + +Developed by me.... Citations welcome.",2018-10-04T01:37:53Z,yurisa2/eurusd-2014-2018,1017.43878,https://www.kaggle.com/yurisa2/eurusd-2014-2018,4,74,CC0: Public Domain,2,"Ready version: 3, 2018-10-04T01:37:53Z",0.647058845,forex +45,Forex Data Source,,,2018-04-29T15:42:10.233Z,mannir/forex-data-source,3.29447,https://www.kaggle.com/mannir/forex-data-source,0,67,GPL 2,0,"Ready version: 1, 2018-04-29T15:42:10.233Z",0.235294119,forex +46,Deep Learning A-Z - ANN dataset,"Kirill Eremenko ""Deep Learning A-Z™: Hands-On Artificial Neural Networks"" course","# Context + +This is the dataset used in the section ""ANN (Artificial Neural Networks)"" of the Udemy course from Kirill Eremenko (Data Scientist & Forex Systems Expert) and Hadelin de Ponteves (Data Scientist), called **Deep Learning A-Z™: Hands-On Artificial Neural Networks**. The dataset is **very useful for beginners** of Machine Learning, and a simple playground where to compare several techniques/skills. + +It can be freely downloaded here: https://www.superdatascience.com/deep-learning/ + + +---------- + + +The story: +A bank is investigating a very high rate of customer leaving the bank. Here is a 10.000 records dataset to investigate and predict which of the customers are more likely to leave the bank soon. + +The story of the story: +I'd like to compare several techniques (better if not alone, and with the experience of several Kaggle users) to improve my basic knowledge on Machine Learning. + + +# Content + +I will write more later, but the columns names are very self-explaining. + + +# Acknowledgements + +Udemy instructors Kirill Eremenko (Data Scientist & Forex Systems Expert) and Hadelin de Ponteves (Data Scientist), and their efforts to provide this dataset to their students. + + +# Inspiration + +Which methods score best with this dataset? Which are fastest (or, executable in a decent time)? Which are the basic steps with such a simple dataset, very useful to beginners?",2017-05-16T12:20:30.84Z,filippoo/deep-learning-az-ann,0.2728,https://www.kaggle.com/filippoo/deep-learning-az-ann,1,1416,Unknown,28,"Ready version: 1, 2017-05-16T12:20:30.84Z",0.7058824,forex +47,Daily USDJPY (2000-2019) with Technical Indicators,For Time Series Prediction of Forex,"### Context + +Possible time series prediction: + + - Colour of the next day candlestick + - Next day Close or Open price + +### Content + +Refer to attached Column Description file for details. + + +### Acknowledgements + +Thanks to all who have helped in making a contribution to this dataset. + +",2019-04-19T14:02:19.243Z,cfchan/daily-usdjpy-20002019-with-technical-indicators,0.594757,https://www.kaggle.com/cfchan/daily-usdjpy-20002019-with-technical-indicators,4,32,Unknown,1,"Ready version: 1, 2019-04-19T14:02:19.243Z",0.470588237,forex +48,Forex RSI and BBPP multiperiod (m1-h4) ,,,2018-11-11T11:52:30.603Z,yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4,5565.310574,https://www.kaggle.com/yurisa2/forex-rsi-and-bbpp-multiperiod-m1h4,0,96,Unknown,2,"Ready version: 2, 2018-11-11T11:52:30.603Z",0.1764706,forex +49,forex_strategy_results_next,,,2019-05-11T19:14:43.487Z,sinusgamma/forex-strategy-results-next,0.125853,https://www.kaggle.com/sinusgamma/forex-strategy-results-next,0,3,CC0: Public Domain,2,"Ready version: 1, 2019-05-11T19:14:43.487Z",0.294117659,forex +50,forex_strategy_results_first,,,2019-05-07T08:28:25.523Z,sinusgamma/forex-strategy-results-first,0.07624,https://www.kaggle.com/sinusgamma/forex-strategy-results-first,0,1,CC0: Public Domain,2,"Ready version: 1, 2019-05-07T08:28:25.523Z",0.294117659,forex +51,Foreign Exchange (FX) Prediction - USD/JPY,Jan 2017 Martket Data(Lightweight CSV),"Context + +Coming Soon + +Content + +Coming Soon + +Acknowledgements + +Special Thanks to http://www.histdata.com/download-free-forex-data/ + +Inspiration + +実際の取引にこの情報を使うときは十分ご注意ください。弊社およびコミュニティメンバーは損失の責任を取ることができません。",2017-08-13T06:26:53.733Z,team-ai/foreign-exchange-fx-prediction-usdjpy,0.2926,https://www.kaggle.com/team-ai/foreign-exchange-fx-prediction-usdjpy,2,342,CC0: Public Domain,4,"Ready version: 1, 2017-08-13T06:26:53.733Z",0.8235294,forex +52,Forex & Crypto & Bonds & Indices & Commodities,,,2019-04-06T10:18:49.68Z,crtatu/forex-crypto-bonds-indices-commodities,391.51808,https://www.kaggle.com/crtatu/forex-crypto-bonds-indices-commodities,0,24,Unknown,1,"Ready version: 1, 2019-04-06T10:18:49.68Z",0.117647059,forex +53,Forex Oracle Offers,Customers Information,,2018-11-22T00:58:54.9Z,forexoracle/forex-oracle-offers,0.368301,https://www.kaggle.com/forexoracle/forex-oracle-offers,0,12,Other (specified in description),1,"Ready version: 1, 2018-11-22T00:58:54.9Z",0.1875,forex +54,eur_doll_forex,,,2018-12-14T12:11:00.983Z,mycorino/eur-doll-forex,47.059451,https://www.kaggle.com/mycorino/eur-doll-forex,0,36,Unknown,3,"Ready version: 1, 2018-12-14T12:11:00.983Z",0.1875,forex +55,Hourly GBPUSD w Technical Indicators (2000-2019),Time Series Forecasting for Forex,"### Context + +Possible prediction of the next opening or closing price + + +### Content + +See Column_Description_GBPUSD.csv + + +### Acknowledgements + +Thanks to all who have made a contribution to this dataset +",2019-04-23T02:16:18.47Z,cfchan/hourly-gbpusd-w-technical-indicators-20002019,17.862885,https://www.kaggle.com/cfchan/hourly-gbpusd-w-technical-indicators-20002019,5,32,Unknown,1,"Ready version: 1, 2019-04-23T02:16:18.47Z",0.470588237,forex +56,FX USD/JPY Prediction,Jan 2017 Martket Data(Lightweight CSV),"### Context + +Coming Soon + +### Content + +Coming Soon + +### Acknowledgements + +Special Thanks to http://www.histdata.com/download-free-forex-data/ + + +### Inspiration +実際の取引にこの情報を使うときは十分ご注意ください。弊社およびコミュニティメンバーは損失の責任を取ることができません。",2017-08-09T10:59:10.39Z,daiearth22/fx-usdjpy-prediction,0.304973,https://www.kaggle.com/daiearth22/fx-usdjpy-prediction,0,67,CC0: Public Domain,0,"Ready version: 1, 2017-08-09T10:59:10.39Z",0.647058845,forex +57,GBP/USD Historical data (month),data to test accuracy and prediction,"### Context + +data set for most dominant forex pair GB/USD + + +### Content +the first column containing date and second containing data +### Acknowledgements + +We wouldn't be here without the help of others. If you owe any attributions or thanks, include them here along with any citations of past research. + + +### Inspiration + +Your data will be in front of the world's largest data science community. What questions do you want to see answered?",2019-03-23T07:13:17.623Z,mohsinsajjad/dataset,0.001155,https://www.kaggle.com/mohsinsajjad/dataset,3,5,Unknown,1,"Ready version: 1, 2019-03-23T07:13:17.623Z",0.7058824,forex +58,eur/usd,03 08 2017 by minute,"# Context + +A day in the life or a forex trader. + +# Content + +One day of minute by minute statistics from my trading log. + +# Acknowledgements +The Python community and stack overflow. + + +# Inspiration +Jessy Livermore",2017-03-11T10:46:02.16Z,ugnix911aalc/eurusd,0.01691,https://www.kaggle.com/ugnix911aalc/eurusd,0,76,CC0: Public Domain,1,"Ready version: 1, 2017-03-11T10:46:02.16Z",0.7058824,forex +59,binance criptos price from jun 2017 to may 2018,Binance candlestick from jun 2017 to may 2018,"### Context +This dataset content is related to criptocurrency price in 11 months period for use in data analysis, finance and backtests. + +### Content + +We have a complete candlestick with close, open prices, 24 volume... of some coins in binance exchange. +A note here, the close adj is equal close column because binance haven't a adjustment in close price as type forex. +",2018-06-06T19:55:02.727Z,gabsgear/binance-criptos-price-from-jun-2017-to-may-2018,0.187679,https://www.kaggle.com/gabsgear/binance-criptos-price-from-jun-2017-to-may-2018,2,76,CC0: Public Domain,1,"Ready version: 1, 2018-06-06T19:55:02.727Z",0.647058845,forex +60,US Consumer Finance Complaints,US consumer complaints on financial products and company responses,"Each week [the CFPB](http://www.consumerfinance.gov/data-research/consumer-complaints/) sends thousands of consumers’ complaints about financial products and services to companies for response. Those complaints are published here after the company responds or after 15 days, whichever comes first. By adding their voice, consumers help improve the financial marketplace.",2016-04-26T22:33:46.69Z,cfpb/us-consumer-finance-complaints,94.858347,https://www.kaggle.com/cfpb/us-consumer-finance-complaints,1,7057,Unknown,83,"Ready version: 1, 2016-04-26T22:33:46.69Z",0.7058824,finance +61,Campaign Finance versus Election Results,Can an election be predicted from the preceding campaign finance reports?,"# Context + +This dataset was assembled to investigate the possibility of predicting congressional election results by campaign finance reports from the period leading up to the election. + + +# Content + +Each row represents a candidate, with information on their campaign including the state, district, office, total contributions, total expenditures, etc. The content is specific to the year leading up to the 2016 election: (1/1/2015 through 10/19/2016). + + +# Acknowledgements + +Campaign finance information came directly from FEC.gov. +Election results and vote totals for house races were taken from CNN's election results page. + + +# Inspiration + +How much of an impact does campaign spending and fundraising have on an election? Is the impact greater in certain areas? Given this dataset, to what degree of accuracy could we have predicted the election results?",2016-12-07T21:14:32.993Z,danerbland/electionfinance,0.217837,https://www.kaggle.com/danerbland/electionfinance,2,944,CC0: Public Domain,7,"Ready version: 1, 2016-12-07T21:14:32.993Z",0.8235294,finance +62,2016 Presidential Campaign Finance,How did presidential candidates spend their campaign funds?,"# Context + +The Federal Election Commission (FEC) is an independent regulatory agency established in 1975 to administer and enforce the Federal Election Campaign Act (FECA), which requires public disclosure of campaign finance information. The FEC publishes campaign finance reports for presidential and legislative election campaign candidates on the [Campaign Finance Disclosure Portal][1]. + +# Content + +The finance summary report contains one record for each financial report (Form 3P) filed by the presidential campaign committees during the 2016 primary and general election campaigns. Presidential committees file quarterly prior to the election year and monthly during the election year. The campaign expenditures file contains individual operating expenditures made by the campaign committee and reported on Form 3P Line 23 during the same period. Operating expenditures consist of the routine costs of campaigning for president, which include staffing, travel, advertising, voter outreach, and other activities. + + +[1]: http://www.fec.gov/disclosurep/pnational.do",2017-01-17T19:48:13.063Z,fec/presidential-campaign-finance,1.120759,https://www.kaggle.com/fec/presidential-campaign-finance,2,774,CC0: Public Domain,1,"Ready version: 1, 2017-01-17T19:48:13.063Z",0.8235294,finance +63,Finance ₹ - India,Statewise India's finance detail from 1980 to 2015.,"**Connect/Follow me on [LinkedIn](http://link.rajanand.org/linkedin) for more updates on interesting dataset like this. Thanks.** + +### Content + +This dataset contains the various finance detail of India. + +1. Aggregate expenditure. +2. Capital expenditure. +3. Social sector expenditure. +3. Revenue expenditure. +5. Revenue deficit. +6. Gross fiscal deficit. +7. Own tax revenues. +8. Nominal GSDP series. + +Granularity: Annual +Time period: 1980-81 to 2015-16. +Amount: in crore rupees (i.e, 1 crore = 10 million) + +### Acknowledgements + +[National Institution for Transforming India (NITI Aayog)](http://niti.gov.in/)/Planning commission, Govt of India has published this data on their [website](http://niti.gov.in/state-statistics).",2017-08-27T12:17:02.98Z,rajanand/finance-india,0.025746,https://www.kaggle.com/rajanand/finance-india,2,985,CC BY-SA 4.0,0,"Ready version: 1, 2017-08-27T12:17:02.98Z",0.7647059,finance +64,Mutual Funds and ETFs,25k+ Mutual Funds and 2k+ ETFs scraped from Yahoo Finance,"### Context + +ETFs represent a cheap alternative to Mutual Funds and they are growing in fast in the last decade. +Is the 2017 hype around ETFs confirmed by good returns in 2018? + + +### Content + +The file contains 25,265 Mutual Funds and 2,353 ETFs with general aspects (as Total Net Assets, management company and size), portfolio indicators (as cash, stocks, bonds, and sectors), returns (as year_to_date, 2018-10) and financial ratios (as price/earning, Treynor and Sharpe ratios, alpha, and beta). + + +### Acknowledgements + +Data has been scraped from the publicly available website https://finance.yahoo.com. + + +### Inspiration + +Datasets allow for multiple comparisons regarding portfolio decisions from investment managers in Mutual Funds and portfolio restrictions to the indexes in ETFs. +The inspiration comes from the 2017 hype regarding ETFs, that convinced many investors to buy shares of Exchange Traded Funds rather than Mutual Funds. +Datasets will be updated every one or two semesters, hopefully with additional information scraped from Morningstar.com.",2019-05-04T02:00:37.827Z,stefanoleone992/mutual-funds-and-etfs,4.5474,https://www.kaggle.com/stefanoleone992/mutual-funds-and-etfs,5,598,CC0: Public Domain,2,"Ready version: 3, 2019-05-04T02:00:37.827Z",1.0,finance +65,GAFA stock prices,"GAFA (Google, Apple, Facebook, Amazon) stock prices from Yahoo Finance","GAFA (Google, Apple, Facebook, Amazon) stock prices until 20 April 2018. + +Source: Yahoo Finance",2018-04-22T21:07:52.127Z,stexo92/gafa-stock-prices,0.407127,https://www.kaggle.com/stexo92/gafa-stock-prices,5,741,CC0: Public Domain,3,"Ready version: 1, 2018-04-22T21:07:52.127Z",0.5294118,finance +66,SF Campaign Finance Data,From San Francisco Open Data,"### Content + +More details about each file are in the individual file descriptions. + +### Context + +This is a dataset hosted by the city of San Francisco. The organization has an open data platform found [here](https://data.sfgov.org) and they update their information according the amount of data that is brought in. Explore San Francisco's Data using Kaggle and all of the data sources available through the San Francisco [organization page](https://www.kaggle.com/san-francisco)! + +* Update Frequency: This dataset is updated quarterly. + +### Acknowledgements + +This dataset is maintained using Socrata's API and Kaggle's API. [Socrata](https://socrata.com/) has assisted countless organizations with hosting their open data and has been an integral part of the process of bringing more data to the public. + +This dataset is distributed under the following licenses: Open Data Commons Public Domain Dedication and License",2019-01-02T22:32:32.257Z,san-francisco/sf-campaign-finance-data,56.501468,https://www.kaggle.com/san-francisco/sf-campaign-finance-data,3,155,Other (specified in description),1,"Ready version: 67, 2019-01-02T22:32:32.257Z",0.7941176,finance +67,finance study,,,2017-11-04T20:05:21.893Z,tusharpatil15/finance-study,3.118831,https://www.kaggle.com/tusharpatil15/finance-study,0,374,CC BY-NC-SA 4.0,0,"Ready version: 1, 2017-11-04T20:05:21.893Z",0.25,finance +68,Lending Club Loan Data,Analyze Lending Club's issued loans,"These files contain complete loan data for all loans issued through the 2007-2015, including the current loan status (Current, Late, Fully Paid, etc.) and latest payment information. The file containing loan data through the ""present"" contains complete loan data for all loans issued through the previous completed calendar quarter. Additional features include credit scores, number of finance inquiries, address including zip codes, and state, and collections among others. The file is a matrix of about 890 thousand observations and 75 variables. A data dictionary is provided in a separate file. k",2019-03-18T18:43:12.857Z,wendykan/lending-club-loan-data,736.483,https://www.kaggle.com/wendykan/lending-club-loan-data,1,53425,Unknown,582,"Ready version: 1, 2019-03-18T18:43:12.857Z",0.7352941,finance +69,S&P index historical Data,S&P Index Historical Data from Yahoo finance ,,2017-12-06T22:08:32.46Z,adityarajuladevi/sp-index-historical-data,0.09282,https://www.kaggle.com/adityarajuladevi/sp-index-historical-data,1,147,CC0: Public Domain,3,"Ready version: 1, 2017-12-06T22:08:32.46Z",0.5882353,finance +70,"ticks: bitcoin, ethereum,litecoin, ripple","Finance, Trading, Cryptocurrency",,2018-09-24T06:28:23.997Z,albala/ticks-bitcoin-ethereumlitecoin-ripple,37.397747,https://www.kaggle.com/albala/ticks-bitcoin-ethereumlitecoin-ripple,0,109,"Database: Open Database, Contents: © Original Authors",1,"Ready version: 1, 2018-09-24T06:28:23.997Z",0.3529412,finance +71,NYC Property Sales,A year's worth of properties sold on the NYC real estate market,"### Context + +This dataset is a record of every building or building unit (apartment, etc.) sold in the New York City property market over a 12-month period. + +### Content + +This dataset contains the location, address, type, sale price, and sale date of building units sold. A reference on the trickier fields: + +* `BOROUGH`: A digit code for the borough the property is located in; in order these are Manhattan (1), Bronx (2), Brooklyn (3), Queens (4), and Staten Island (5). +* `BLOCK`; `LOT`: The combination of borough, block, and lot forms a unique key for property in New York City. Commonly called a `BBL`. +* `BUILDING CLASS AT PRESENT` and `BUILDING CLASS AT TIME OF SALE`: The type of building at various points in time. See the glossary linked to below. + +For further reference on individual fields see the [Glossary of Terms](http://www1.nyc.gov/assets/finance/downloads/pdf/07pdf/glossary_rsf071607.pdf). For the building classification codes see the [Building Classifications Glossary](http://www1.nyc.gov/assets/finance/jump/hlpbldgcode.html). + +Note that because this is a financial transaction dataset, there are some points that need to be kept in mind: + +* Many sales occur with a nonsensically small dollar amount: $0 most commonly. These sales are actually transfers of deeds between parties: for example, parents transferring ownership to their home to a child after moving out for retirement. +* This dataset uses the financial definition of a building/building unit, for tax purposes. In case a single entity owns the building in question, a sale covers the value of the entire building. In case a building is owned piecemeal by its residents (a condominium), a sale refers to a single apartment (or group of apartments) owned by some individual. + +### Acknowledgements + +This dataset is a concatenated and slightly cleaned-up version of the New York City Department of Finance's [Rolling Sales dataset](http://www1.nyc.gov/site/finance/taxes/property-rolling-sales-data.page). + +### Inspiration + +What can you discover about New York City real estate by looking at a year's worth of raw transaction records? Can you spot trends in the market, or build a model that predicts sale value in the future?",2017-09-22T19:43:30.99Z,new-york-city/nyc-property-sales,1.987717,https://www.kaggle.com/new-york-city/nyc-property-sales,2,5288,CC0: Public Domain,18,"Ready version: 1, 2017-09-22T19:43:30.99Z",0.8235294,finance +72,finance,,,2019-06-16T06:03:58.25Z,huskylovers/finance,733.757334,https://www.kaggle.com/huskylovers/finance,0,11,Unknown,5,"Ready version: 1, 2019-06-16T06:03:58.25Z",0.1875,finance +73,New York Stock Exchange,S&P 500 companies historical prices with fundamental data,"# Context + +This dataset is a playground for fundamental and technical analysis. It is said that 30% of traffic on stocks is already generated by machines, can trading be fully automated? If not, there is still a lot to learn from historical data. + +# Content + +Dataset consists of following files: + + - **prices.csv**: raw, as-is daily prices. Most of data spans from 2010 to the end 2016, for companies new on stock market date range is shorter. There have been approx. 140 stock splits in that time, this set doesn't account for that. + - **prices-split-adjusted.csv**: same as prices, but there have been added adjustments for splits. + - **securities.csv**: general description of each company with division on sectors + - **fundamentals.csv**: metrics extracted from annual SEC 10K fillings (2012-2016), should be enough to derive most of popular fundamental indicators. + +# Acknowledgements + +Prices were fetched from Yahoo Finance, fundamentals are from Nasdaq Financials, extended by some fields from EDGAR SEC databases. + +# Inspiration + +Here is couple of things one could try out with this data: + + - One day ahead prediction: Rolling Linear Regression, ARIMA, Neural Networks, LSTM + - Momentum/Mean-Reversion Strategies + - Security clustering, portfolio construction/hedging + +Which company has biggest chance of being bankrupt? Which one is undervalued (how prices behaved afterwards), what is Return on Investment? + + +",2017-02-22T10:18:25.517Z,dgawlik/nyse,34.402357,https://www.kaggle.com/dgawlik/nyse,1,29493,CC0: Public Domain,271,"Ready version: 3, 2017-02-22T10:18:25.517Z",0.852941155,finance +74,Consumer Complaint Database,Consumer Finance Complaints (Bureau of Consumer Financial Protection),"### Context + +These are real world complaints received about financial products and services. Each complaint has been labeled with a specific product; therefore, this is a supervised text classification problem. With the aim to classify future complaints based on its content, we used different machine learning algorithms can make more accurate predictions (i.e., classify the complaint in one of the product categories) + +### Content + +The dataset contains different information of complaints that customers have made about a multiple products and services in the financial sector, such us Credit Reports, Student Loans, Money Transfer, etc. +The date of each complaint ranges from November 2011 to May 2019. + + +### Acknowledgements + +This work is considered a U.S. Government Work. The dataset is public dataset and it was downloaded from +https://catalog.data.gov/dataset/consumer-complaint-database +on 2019, May 13. + + +### Inspiration + +This is a sort of tutorial for beginner ",2019-05-13T16:17:54.08Z,selener/consumer-complaint-database,179.716209,https://www.kaggle.com/selener/consumer-complaint-database,3,134,U.S. Government Works,2,"Ready version: 1, 2019-05-13T16:17:54.08Z",0.8235294,finance +75,Bitcoin Historical Data,"Bitcoin data at 1-min intervals from select exchanges, Jan 2012 to March 2019","### Context +Bitcoin is the longest running and most well known cryptocurrency, first released as open source in 2009 by the anonymous Satoshi Nakamoto. Bitcoin serves as a decentralized medium of digital exchange, with transactions verified and recorded in a public distributed ledger (the blockchain) without the need for a trusted record keeping authority or central intermediary. Transaction blocks contain a SHA-256 cryptographic hash of previous transaction blocks, and are thus ""chained"" together, serving as an immutable record of all transactions that have ever occurred. As with any currency/commodity on the market, bitcoin trading and financial instruments soon followed public adoption of bitcoin and continue to grow. Included here is historical bitcoin market data at 1-min intervals for select bitcoin exchanges where trading takes place. Happy (data) mining! + +### Content + +coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv + +bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv + +CSV files for select bitcoin exchanges for the time period of Jan 2012 to March 2019, with minute to minute updates of OHLC (Open, High, Low, Close), Volume in BTC and indicated currency, and weighted bitcoin price. **Timestamps are in Unix time. Timestamps without any trades or activity have their data fields filled with NaNs.** If a timestamp is missing, or if there are jumps, this may be because the exchange (or its API) was down, the exchange (or its API) did not exist, or some other unforseen technical error in data reporting or gathering. All effort has been made to deduplicate entries and verify the contents are correct and complete to the best of my ability, but obviously trust at your own risk. + + +### Acknowledgements and Inspiration + +Bitcoin charts for the data. The various exchange APIs, for making it difficult or unintuitive enough to get OHLC and volume data at 1-min intervals that I set out on this data scraping project. Satoshi Nakamoto and the novel core concept of the blockchain, as well as its first execution via the bitcoin protocol. I'd also like to thank viewers like you! Can't wait to see what code or insights you all have to share. +",2019-03-15T16:22:58.397Z,mczielinski/bitcoin-historical-data,123.326534,https://www.kaggle.com/mczielinski/bitcoin-historical-data,2,43353,CC BY-SA 4.0,128,"Ready version: 16, 2019-03-15T16:22:58.397Z",1.0,finance +76,NYC Parking Tickets,"42.3M Rows of Parking Ticket Data, Aug 2013-June 2017","### Context + +The NYC Department of Finance collects data on every parking ticket issued in NYC (~10M per year!). This data is made publicly available to aid in ticket resolution and to guide policymakers. + + +### Content + +There are four files, covering Aug 2013-June 2017. The files are roughly organized by fiscal year (July 1 - June 30) with the exception of the initial dataset. The initial dataset also lacks 8 columns that are included in the other three datasets (although be warned that these additional data columns are used sparingly). See the dataset descriptions for exact details. Columns include information about the vehicle ticketed, the ticket issued, location, and time. + + +### Acknowledgements + +Data was produced by NYC Department of Finance. FY2018 data is found [here](https://data.cityofnewyork.us/City-Government/Parking-Violations-Issued-Fiscal-Year-2018/pvqr-7yc4) with updates every third week of the month. + + +### Inspiration + +* When are tickets most likely to be issued? Any seasonality? +* Where are tickets most commonly issued? +* What are the most common years and types of cars to be ticketed?",2017-10-26T18:47:45.14Z,new-york-city/nyc-parking-tickets,2171.622562,https://www.kaggle.com/new-york-city/nyc-parking-tickets,4,8080,CC0: Public Domain,6,"Ready version: 2, 2017-10-26T18:47:45.14Z",0.8235294,finance +77,Credit Card Fraud Detection,Anonymized credit card transactions labeled as fraudulent or genuine,"Context +--------- + +It is important that credit card companies are able to recognize fraudulent credit card transactions so that customers are not charged for items that they did not purchase. + +Content +--------- + +The datasets contains transactions made by credit cards in September 2013 by european cardholders. +This dataset presents transactions that occurred in two days, where we have 492 frauds out of 284,807 transactions. The dataset is highly unbalanced, the positive class (frauds) account for 0.172% of all transactions. + +It contains only numerical input variables which are the result of a PCA transformation. Unfortunately, due to confidentiality issues, we cannot provide the original features and more background information about the data. Features V1, V2, ... V28 are the principal components obtained with PCA, the only features which have not been transformed with PCA are 'Time' and 'Amount'. Feature 'Time' contains the seconds elapsed between each transaction and the first transaction in the dataset. The feature 'Amount' is the transaction Amount, this feature can be used for example-dependant cost-senstive learning. Feature 'Class' is the response variable and it takes value 1 in case of fraud and 0 otherwise. + +Inspiration +--------- + +Identify fraudulent credit card transactions. + +Given the class imbalance ratio, we recommend measuring the accuracy using the Area Under the Precision-Recall Curve (AUPRC). Confusion matrix accuracy is not meaningful for unbalanced classification. + +Acknowledgements +--------- + +The dataset has been collected and analysed during a research collaboration of Worldline and the Machine Learning Group (http://mlg.ulb.ac.be) of ULB (Université Libre de Bruxelles) on big data mining and fraud detection. +More details on current and past projects on related topics are available on [https://www.researchgate.net/project/Fraud-detection-5][1] and the page of the [DefeatFraud][2] project + +Please cite the following works: + +Andrea Dal Pozzolo, Olivier Caelen, Reid A. Johnson and Gianluca Bontempi. [Calibrating Probability with Undersampling for Unbalanced Classification.][3] In Symposium on Computational Intelligence and Data Mining (CIDM), IEEE, 2015 + +Dal Pozzolo, Andrea; Caelen, Olivier; Le Borgne, Yann-Ael; Waterschoot, Serge; Bontempi, Gianluca. [Learned lessons in credit card fraud detection from a practitioner perspective][4], Expert systems with applications,41,10,4915-4928,2014, Pergamon + +Dal Pozzolo, Andrea; Boracchi, Giacomo; Caelen, Olivier; Alippi, Cesare; Bontempi, Gianluca. [Credit card fraud detection: a realistic modeling and a novel learning strategy,][5] IEEE transactions on neural networks and learning systems,29,8,3784-3797,2018,IEEE + +Dal Pozzolo, Andrea [Adaptive Machine learning for credit card fraud detection][6] ULB MLG PhD thesis (supervised by G. Bontempi) + +Carcillo, Fabrizio; Dal Pozzolo, Andrea; Le Borgne, Yann-Aël; Caelen, Olivier; Mazzer, Yannis; Bontempi, Gianluca. [Scarff: a scalable framework for streaming credit card fraud detection with Spark][7], Information fusion,41, 182-194,2018,Elsevier + +Carcillo, Fabrizio; Le Borgne, Yann-Aël; Caelen, Olivier; Bontempi, Gianluca. [Streaming active learning strategies for real-life credit card fraud detection: assessment and visualization,][8] International Journal of Data Science and Analytics, 5,4,285-300,2018,Springer International Publishing + +Bertrand Lebichot, Yann-Aël Le Borgne, Liyun He, Frederic Oblé, Gianluca Bontempi [Deep-Learning Domain Adaptation Techniques for Credit Cards Fraud Detection](https://www.researchgate.net/publication/332180999_Deep-Learning_Domain_Adaptation_Techniques_for_Credit_Cards_Fraud_Detection), INNSBDDL 2019: Recent Advances in Big Data and Deep Learning, pp 78-88, 2019 + +Fabrizio Carcillo, Yann-Aël Le Borgne, Olivier Caelen, Frederic Oblé, Gianluca Bontempi [Combining Unsupervised and Supervised Learning in Credit Card Fraud Detection ](https://www.researchgate.net/publication/333143698_Combining_Unsupervised_and_Supervised_Learning_in_Credit_Card_Fraud_Detection) Information Sciences, 2019 + + + + [1]: https://www.researchgate.net/project/Fraud-detection-5 + [2]: https://mlg.ulb.ac.be/wordpress/portfolio_page/defeatfraud-assessment-and-validation-of-deep-feature-engineering-and-learning-solutions-for-fraud-detection/ + [3]: https://www.researchgate.net/publication/283349138_Calibrating_Probability_with_Undersampling_for_Unbalanced_Classification + [4]: https://www.researchgate.net/publication/260837261_Learned_lessons_in_credit_card_fraud_detection_from_a_practitioner_perspective + [5]: https://www.researchgate.net/publication/319867396_Credit_Card_Fraud_Detection_A_Realistic_Modeling_and_a_Novel_Learning_Strategy + [6]: http://di.ulb.ac.be/map/adalpozz/pdf/Dalpozzolo2015PhD.pdf + [7]: https://www.researchgate.net/publication/319616537_SCARFF_a_Scalable_Framework_for_Streaming_Credit_Card_Fraud_Detection_with_Spark + +[8]: https://www.researchgate.net/publication/332180999_Deep-Learning_Domain_Adaptation_Techniques_for_Credit_Cards_Fraud_Detection",2018-03-23T01:17:27.913Z,mlg-ulb/creditcardfraud,69.155632,https://www.kaggle.com/mlg-ulb/creditcardfraud,3,136568,"Database: Open Database, Contents: Database Contents",2135,"Ready version: 3, 2018-03-23T01:17:27.913Z",0.852941155,finance +78,Daily News for Stock Market Prediction,Using 8 years daily news headlines to predict stock market movement,"Actually, I prepare this dataset for students on my Deep Learning and NLP course. + +But I am also very happy to see kagglers play around with it. + +Have fun! + +**Description:** + +There are two channels of data provided in this dataset: + +1. News data: I crawled historical news headlines from [Reddit WorldNews Channel][1] (/r/worldnews). They are ranked by reddit users' votes, and only the top 25 headlines are considered for a single date. +(Range: 2008-06-08 to 2016-07-01) + +2. Stock data: Dow Jones Industrial Average (DJIA) is used to ""prove the concept"". +(Range: 2008-08-08 to 2016-07-01) + +I provided three data files in *.csv* format: + +1. **RedditNews.csv**: two columns +The first column is the ""date"", and second column is the ""news headlines"". +All news are ranked from top to bottom based on how *hot* they are. +Hence, there are 25 lines for each date. + +2. **DJIA_table.csv**: +Downloaded directly from [Yahoo Finance][2]: check out the web page for more info. + +3. **Combined_News_DJIA.csv**: +To make things easier for my students, I provide this combined dataset with 27 columns. +The first column is ""Date"", the second is ""Label"", and the following ones are news headlines ranging from ""Top1"" to ""Top25"". + +**=========================================** + +*To my students:* + +*I made this a binary classification task. Hence, there are only two labels:* + +*""1"" when DJIA Adj Close value rose or stayed as the same;* + +*""0"" when DJIA Adj Close value decreased.* + +*For task evaluation, please use data from 2008-08-08 to 2014-12-31 as Training Set, and Test Set is then the following two years data (from 2015-01-02 to 2016-07-01). This is roughly a 80%/20% split.* + +*And, of course, use AUC as the evaluation metric.* + +**=========================================** + +**+++++++++++++++++++++++++++++++++++++++++** + +*To all kagglers:* + +*Please upvote this dataset if you like this idea for market prediction.* + +*If you think you coded an amazing trading algorithm,* + +*friendly advice* + +*do play safe with your own money :)* + +**+++++++++++++++++++++++++++++++++++++++++** + +Feel free to contact me if there is any question~ + +And, remember me when you become a millionaire :P + +**Note: If you'd like to cite this dataset in your publications, please use:** + +` +Sun, J. (2016, August). Daily News for Stock Market Prediction, Version 1. Retrieved [Date You Retrieved This Data] from https://www.kaggle.com/aaron7sun/stocknews. +` + + [1]: https://www.reddit.com/r/worldnews?hl + [2]: https://finance.yahoo.com/quote/%5EDJI/history?p=%5EDJI",2016-08-25T16:56:51.32Z,aaron7sun/stocknews,6.384909,https://www.kaggle.com/aaron7sun/stocknews,2,23371,CC BY-NC-SA 4.0,306,"Ready version: 1, 2016-08-25T16:56:51.32Z",0.882352948,finance +79,NYS Campaign Finance Filers and Filings,From New York State Open Data,"### Content + +More details about each file are in the individual file descriptions. + +### Context + +This is a dataset hosted by the State of New York. The state has an open data platform found [here](https://data.ny.gov/) and they update their information according the amount of data that is brought in. Explore New York State using Kaggle and all of the data sources available through the State of New York [organization page](https://www.kaggle.com/new-york-state)! + +* Update Frequency: This dataset is updated monthly. + +### Acknowledgements + +This dataset is maintained using Socrata's API and Kaggle's API. [Socrata](https://socrata.com/) has assisted countless organizations with hosting their open data and has been an integral part of the process of bringing more data to the public. + +This dataset is distributed under the following licenses: Public Domain",2019-07-03T09:42:54.753Z,new-york-state/nys-campaign-finance-filers-and-filings,361.934238,https://www.kaggle.com/new-york-state/nys-campaign-finance-filers-and-filings,2,26,CC0: Public Domain,0,"Ready version: 39, 2019-07-03T09:42:54.753Z",0.7941176,finance +80,Bitcoin Historical Data,"Bitcoin data at 1-min intervals from select exchanges, Jan 2012 to March 2019","### Context +Bitcoin is the longest running and most well known cryptocurrency, first released as open source in 2009 by the anonymous Satoshi Nakamoto. Bitcoin serves as a decentralized medium of digital exchange, with transactions verified and recorded in a public distributed ledger (the blockchain) without the need for a trusted record keeping authority or central intermediary. Transaction blocks contain a SHA-256 cryptographic hash of previous transaction blocks, and are thus ""chained"" together, serving as an immutable record of all transactions that have ever occurred. As with any currency/commodity on the market, bitcoin trading and financial instruments soon followed public adoption of bitcoin and continue to grow. Included here is historical bitcoin market data at 1-min intervals for select bitcoin exchanges where trading takes place. Happy (data) mining! + +### Content + +coinbaseUSD_1-min_data_2014-12-01_to_2019-01-09.csv + +bitstampUSD_1-min_data_2012-01-01_to_2019-03-13.csv + +CSV files for select bitcoin exchanges for the time period of Jan 2012 to March 2019, with minute to minute updates of OHLC (Open, High, Low, Close), Volume in BTC and indicated currency, and weighted bitcoin price. **Timestamps are in Unix time. Timestamps without any trades or activity have their data fields filled with NaNs.** If a timestamp is missing, or if there are jumps, this may be because the exchange (or its API) was down, the exchange (or its API) did not exist, or some other unforseen technical error in data reporting or gathering. All effort has been made to deduplicate entries and verify the contents are correct and complete to the best of my ability, but obviously trust at your own risk. + + +### Acknowledgements and Inspiration + +Bitcoin charts for the data. The various exchange APIs, for making it difficult or unintuitive enough to get OHLC and volume data at 1-min intervals that I set out on this data scraping project. Satoshi Nakamoto and the novel core concept of the blockchain, as well as its first execution via the bitcoin protocol. I'd also like to thank viewers like you! Can't wait to see what code or insights you all have to share. +",2019-03-15T16:22:58.397Z,mczielinski/bitcoin-historical-data,123.326534,https://www.kaggle.com/mczielinski/bitcoin-historical-data,2,43353,CC BY-SA 4.0,128,"Ready version: 16, 2019-03-15T16:22:58.397Z",1.0,exchanges +81,Bitcoin markets,Exchanges daily data,10 different exchanges daily data from 01/01/2017 to 01/03/2017,2018-04-10T08:24:51.66Z,gorgia/bitcoin-markets,0.150843,https://www.kaggle.com/gorgia/bitcoin-markets,0,62,CC0: Public Domain,1,"Ready version: 2, 2018-04-10T08:24:51.66Z",0.4117647,exchanges +82,BTC orderbook history,BTC/JPY and BTC/USD orderbook history from some exchanges,,2018-08-19T08:30:52.583Z,vochicong/btc-historical-data,76.2327,https://www.kaggle.com/vochicong/btc-historical-data,1,88,Unknown,1,"Ready version: 1, 2018-08-19T08:30:52.583Z",0.470588237,exchanges +83,Cryptocurrency Historical Prices,"Prices of top cryptocurrencies including Bitcoin, Ethereum, Ripple, Bitcoin cash","### Context + +Things like Block chain, Bitcoin, Bitcoin cash, Ethereum, Ripple etc are constantly coming in the news articles I read. So I wanted to understand more about it and [this post][1] helped me get started. Once the basics are done, the data scientist inside me started raising questions like: + +1. How many cryptocurrencies are there and what are their prices and valuations? +2. Why is there a sudden surge in the interest in recent days? + +For getting answers to all these questions (and if possible to predict the future prices ;)), I started collecting data from [coinmarketcap][2] about the cryptocurrencies. + + + +So what next? +Now that we have the price data, I wanted to dig a little more about the factors affecting the price of coins. I started of with Bitcoin and there are quite a few parameters which affect the price of Bitcoin. Thanks to [Blockchain Info][3], I was able to get quite a few parameters on once in two day basis. + +This will help understand the other factors related to Bitcoin price and also help one make future predictions in a better way than just using the historical price. + + +### Content + +The dataset has one csv file for each currency. Price history is available on a daily basis from April 28, 2013. This dataset has the historical price information of some of the top crypto currencies by market capitalization. The currencies included are: + + - Bitcoin + - Ethereum + - Ripple + - Bitcoin cash + - Bitconnect + - Dash + - Ethereum Classic + - Iota + - Litecoin + - Monero + - Nem + - Neo + - Numeraire + - Stratis + - Waves + + + + - Date : date of observation + - Open : Opening price on the given day + - High : Highest price on the given day + - Low : Lowest price on the given day + - Close : Closing price on the given day + - Volume : Volume of transactions on the given day + - Market Cap : Market capitalization in USD + +**Bitcoin Dataset (bitcoin_dataset.csv) :** + +This dataset has the following features. + + - Date : Date of observation + - btc_market_price : Average USD market price across major bitcoin exchanges. + - btc_total_bitcoins : The total number of bitcoins that have already been mined. + - btc_market_cap : The total USD value of bitcoin supply in circulation. + - btc_trade_volume : The total USD value of trading volume on major bitcoin exchanges. + - btc_blocks_size : The total size of all block headers and transactions. + - btc_avg_block_size : The average block size in MB. + - btc_n_orphaned_blocks : The total number of blocks mined but ultimately not attached to the main Bitcoin blockchain. + - btc_n_transactions_per_block : The average number of transactions per block. + - btc_median_confirmation_time : The median time for a transaction to be accepted into a mined block. + - btc_hash_rate : The estimated number of tera hashes per second the Bitcoin network is performing. + - btc_difficulty : A relative measure of how difficult it is to find a new block. + - btc_miners_revenue : Total value of coinbase block rewards and transaction fees paid to miners. + - btc_transaction_fees : The total value of all transaction fees paid to miners. + - btc_cost_per_transaction_percent : miners revenue as percentage of the transaction volume. + - btc_cost_per_transaction : miners revenue divided by the number of transactions. + - btc_n_unique_addresses : The total number of unique addresses used on the Bitcoin blockchain. + - btc_n_transactions : The number of daily confirmed Bitcoin transactions. + - btc_n_transactions_total : Total number of transactions. + - btc_n_transactions_excluding_popular : The total number of Bitcoin transactions, excluding the 100 most popular addresses. + - btc_n_transactions_excluding_chains_longer_than_100 : The total number of Bitcoin transactions per day excluding long transaction chains. + - btc_output_volume : The total value of all transaction outputs per day. + - btc_estimated_transaction_volume : The total estimated value of transactions on the Bitcoin blockchain. + - btc_estimated_transaction_volume_usd : The estimated transaction value in USD value. + +**Ethereum Dataset (ethereum_dataset.csv):** + +This dataset has the following features + + - Date(UTC) : Date of transaction + - UnixTimeStamp : unix timestamp + - eth_etherprice : price of ethereum + - eth_tx : number of transactions per day + - eth_address : Cumulative address growth + - eth_supply : Number of ethers in supply + - eth_marketcap : Market cap in USD + - eth_hashrate : hash rate in GH/s + - eth_difficulty : Difficulty level in TH + - eth_blocks : number of blocks per day + - eth_uncles : number of uncles per day + - eth_blocksize : average block size in bytes + - eth_blocktime : average block time in seconds + - eth_gasprice : Average gas price in Wei + - eth_gaslimit : Gas limit per day + - eth_gasused : total gas used per day + - eth_ethersupply : new ether supply per day + - eth_chaindatasize : chain data size in bytes + - eth_ens_register : Ethereal Name Service (ENS) registrations per day + + + +### Acknowledgements + +This data is taken from [coinmarketcap][5] and it is [free][6] to use the data. + +Bitcoin dataset is obtained from [Blockchain Info][7]. + +Ethereum dataset is obtained from [Etherscan][8]. + +Cover Image : Photo by Thomas Malama on Unsplash + +### Inspiration + +Some of the questions which could be inferred from this dataset are: + + 1. How did the historical prices / market capitalizations of various currencies change over time? + 2. Predicting the future price of the currencies + 3. Which currencies are more volatile and which ones are more stable? + 4. How does the price fluctuations of currencies correlate with each other? + 5. Seasonal trend in the price fluctuations + +Bitcoin / Ethereum dataset could be used to look at the following: + + 1. Factors affecting the bitcoin / ether price. + 2. Directional prediction of bitcoin / ether price. (refer [this paper][9] for more inspiration) + 3. Actual bitcoin price prediction. + + + + [1]: https://www.linkedin.com/pulse/blockchain-absolute-beginners-mohit-mamoria + [2]: https://coinmarketcap.com/ + [3]: https://blockchain.info/ + [4]: https://etherscan.io/charts + [5]: https://coinmarketcap.com/ + [6]: https://coinmarketcap.com/faq/ + [7]: https://blockchain.info/ + [8]: https://etherscan.io/charts + [9]: http://cs229.stanford.edu/proj2014/Isaac%20Madan,%20Shaurya%20Saluja,%20Aojia%20Zhao,Automated%20Bitcoin%20Trading%20via%20Machine%20Learning%20Algorithms.pdf",2018-02-21T12:36:47.22Z,sudalairajkumar/cryptocurrencypricehistory,0.715347,https://www.kaggle.com/sudalairajkumar/cryptocurrencypricehistory,2,19255,CC0: Public Domain,39,"Ready version: 13, 2018-02-21T12:36:47.22Z",0.7058824,exchanges +84,Cryptocurrencies,Historical price data for 1200 cryptocurrencies (excluding BTC),"### Context + +Thousands of cryptocurrencies have sprung up in the past few years. Can you predict which one will be the next BTC? + + +### Content + +The dataset contains daily opening, high, low, close, and trading volumes for over 1200 cryptocurrencies (excluding bitcoin). + + +### Acknowledgements + +https://timescaledata.blob.core.windows.net/datasets/crypto_data.tar.gz + +### Inspiration + +Speculative forces are always at work on cryptocurrency exchanges - but do they contain any statistically significant features?",2018-07-11T14:15:12.387Z,akababa/cryptocurrencies,9.049797,https://www.kaggle.com/akababa/cryptocurrencies,2,1023,CC0: Public Domain,1,"Ready version: 4, 2018-07-11T14:15:12.387Z",0.882352948,exchanges +85,"AMEX, NYSE, NASDAQ stock histories","Daily historical data of over 8,000 stocks trading on AMEX, NYSE, and NASDAQ","# AMEX, NYSE, and NASDAQ stocks histories +#### Update every **Satur... Sun... I mean Friday... >_< sometime during the weekend. I lied, I've been too busy the past few months and haven't updated in forever until today (2019.2.18)** +###Full history of stock symbols: +- Unzip **fh_< version_date >.zip** +- Each stock symbol has a .csv file under **full_history/** + - i.e. AMD.csv +- Columns in .csv + - **date** - year-month-day, 2018-08-08 + - **volume** - int, volume of the day + - **open** - float, opening price of the day + - **close** - float, closing price of the day + - **high** - float, highest price of the day + - **low** - float, lowest price of the day + - **adjclose** - float, adjusted closing price of the day + +###Other files: +- all_symbols.txt - All the stock symbols with history +- excluded_symbols.txt - All the ones that I couldn't retrieve data for +- NASDAQ.txt - NASDAQ listing +- NYSE.txt - NYSE listing +- AMEX.txt - AMEX listing + +###Disclaimer +This dataset contains **almost** all the stocks listed on these exchanges as of the date shown in the file name. Some of the symbols cannot be found on Yahoo Finance, which I plan on using CNN Money to scrape. There are other symbols that have different classes that require some modification before I can make them queryable... I have yet to decide on the best course of action. If you want to know what these excluded symbols are, see excluded_symbols.txt. + +Note: there used to be some tickers missing because of poor connection, that's been solved now. + +**I've also been asked why I don't put everything into one table, and here's my rationale (copy/pasted from my email):** + +It is possible and I've debated this before, but I've decided to go with individual files for quite a number of reasons, and I highly recommend you consider these before combining them: +1) I don't need to load everything into memory or search for the right rows if I only want to work with particular sets, +2) easier and faster to manipulate (append, remove, or whatever) when all the data of a ticker is in the same place, +3) I don't need to repeat ticker names for each row just to know which row belongs to which ticker, +4) reduce risk, latency, and waits during parallel processing of different ticker data, +5) in case of any unforeseen bad writes or termination, this way reduces the chances of affecting the entire dataset and allows for restart anytime without the need to keep backup things up every 5 minutes. +I get all these benefits only at the cost of slightly larger compressed file and a few more lines of code. To me it's worth it, but I can understand if you are frustrated, but it is possible to concatenate everything. + +###Github - for you to DIY: +**https://github.com/qks1lver/redtide** + +###Data source +**Listing files (i.e. NYSE.txt) are from http://eoddata.com/symbols.aspx** + +**Daily historical data compiled from Yahoo Finance** + +###Need someone to talk to? +If you have questions, e-mail me: jiunyyen@gmail.com + +Happy mining! +",2019-04-21T05:25:28.943Z,qks1lver/amex-nyse-nasdaq-stock-histories,526.877452,https://www.kaggle.com/qks1lver/amex-nyse-nasdaq-stock-histories,4,2590,CC BY-SA 4.0,5,"Ready version: 7, 2019-04-21T05:25:28.943Z",0.7647059,exchanges +86,Movie Dialog Corpus,A metadata-rich collection of fictional conversations from raw movie scripts,"### Context +This corpus contains a metadata-rich collection of fictional conversations extracted from raw movie scripts: + +- 220,579 conversational exchanges between 10,292 pairs of movie characters +- involves 9,035 characters from 617 movies +- in total 304,713 utterances +- movie metadata included: + - genres + - release year + - IMDB rating + - number of IMDB votes + - IMDB rating +- character metadata included: + - gender (for 3,774 characters) + - position on movie credits (3,321 characters) + + + +### Content +In all files the original field separator was "" +++$+++ "" and have been converted to tabs (\t). Additionally, the original file encoding was ISO-8859-2. It's possible that the field separator conversion and decoding may have left some artifacts. + + +- movie_titles_metadata.txt + - contains information about each movie title + - fields: + - movieID, + - movie title, + - movie year, + - IMDB rating, + - no. IMDB votes, + - genres in the format ['genre1','genre2',É,'genreN'] + +- movie_characters_metadata.txt + - contains information about each movie character + - fields: + - characterID + - character name + - movieID + - movie title + - gender (""?"" for unlabeled cases) + - position in credits (""?"" for unlabeled cases) + +- movie_lines.txt + - contains the actual text of each utterance + - fields: + - lineID + - characterID (who uttered this phrase) + - movieID + - character name + - text of the utterance + +- movie_conversations.txt + - the structure of the conversations + - fields + - characterID of the first character involved in the conversation + - characterID of the second character involved in the conversation + - movieID of the movie in which the conversation occurred + - list of the utterances that make the conversation, in chronological + order: ['lineID1','lineID2',É,'lineIDN'] + has to be matched with movie_lines.txt to reconstruct the actual content + +- raw_script_urls.txt + - the urls from which the raw sources were retrieved + + +### Acknowledgements +This corpus comes from the paper, ""Chameleons in imagined conversations: A new approach to understanding coordination of linguistic style in dialogs"" by Cristian Danescu-Niculescu-Mizil and Lillian Lee. + +The paper and up-to-date data can be found here: [http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html][1] + +Please see the README for more information on the authors' collection procedures. + +The file formats were converted to TSV and may contain a few errors + +### Inspiration + + - What are all of these imaginary people talking about? Are they representative of how real people communicate? + - Can you identify themes in movies from certain writers or directors? + - How does the dialog change between characters? + + [1]: http://www.cs.cornell.edu/~cristian/Cornell_Movie-Dialogs_Corpus.html",2017-07-11T21:41:03.35Z,Cornell-University/movie-dialog-corpus,9.606952,https://www.kaggle.com/Cornell-University/movie-dialog-corpus,2,2537,Other (specified in description),4,"Ready version: 1, 2017-07-11T21:41:03.35Z",0.875,exchanges +87,Cornell Movie-Dialog Corpus,This corpus contains a large metadata-rich collection of fictional conversations,"This corpus contains a large metadata-rich collection of fictional conversations extracted from raw movie scripts: + +220,579 conversational exchanges between 10,292 pairs of movie characters + +involves 9,035 characters from 617 movies + +in total 304,713 utterances + +movie metadata included: + +genres + +release year + +IMDB rating + +number of IMDB votes + +IMDB rating + +character metadata included: + +gender (for 3,774 characters) + +position on movie credits (3,321 characters)",2018-03-28T12:42:03.66Z,rajathmc/cornell-moviedialog-corpus,10.04298,https://www.kaggle.com/rajathmc/cornell-moviedialog-corpus,1,215,CC0: Public Domain,3,"Ready version: 1, 2018-03-28T12:42:03.66Z",0.8125,exchanges +88,Enrico's Email Flows,"Anonymized Metadata (i.e. sender, receivers, date) from my 2005-2018 Archives","### Context + +Email archives are a great source of information about the real-world social networks people are generally most involved in. Although sharing of full email exchanges is almost never a good idea, flow metadata (i.e. who sent a message to whom, and when) can be **anonymized** quite effectively and still carry a lot of information. + +I'm sharing over 10 years of flow metadata from my work and personal email accounts to enable data scientists experiment with their favourite statistics and social network analysis tools. A getting-started notebook is available [here](https://www.kaggle.com/emarock/getting-started-with-email-flows). + +For anyone willing to extract similar datasets from their own email accounts, the tool I put together for producing mine is available at [https://github.com/emarock/mailfix](https://github.com/emarock/mailfix) (currently supports extraction from Gmail accounts, IMAP accounts and Apple Mail on macOS). + + +### Content + +This dataset contains two files: + + - `work.csv`: email flow metadata from my work account (~146,000 emails, from 2005 to 2018) + - `personal.csv`: email flow metadata from my personal account (~41,000 emails, from 2006 to 2018) + +As one should expect from any decade long archive, the data presents some partial corruptions and anomalies, that are however time-confined and should be easily identified and filtered out through basic statistical analysis. I will be happy to discuss and provide more information in the comments. + + +### Inspiration + +Basic exploration: + + - Who am I? + - Who's human and who's not? How different are attention-seekers from mailing list engines? + - How did my communication patterns change over time? Did they change in the same way in and out of work? + - Did my social network grow? Did it shrink? + - Who's my boss? Who were my former ones? Who'll be the next one? + +I will be also available to extend the dataset with additional data for training advanced classifiers (e.g. lists of actual humans, mailing lists, VIPs...). Feel free to ask in the comments. + + +### Anonymization and Privacy Note + +The anonymization function (code [here](https://github.com/emarock/mailfix/blob/master/lib/anonymizer.js), tests [here](https://github.com/emarock/mailfix/blob/master/test/anonymizer.js)) is based on [djb2 string hashing](http://www.cse.yorku.ca/~oz/hash.html) and on a [Mersenne Twister pseudorandom generator](https://en.wikipedia.org/wiki/Mersenne_Twister), implemented in the [string-hash](https://www.npmjs.com/package/string-hash) and [casual](https://www.npmjs.com/package/casual) node.js modules. It should be practically irreversible, modulo implementation defects. + +However, if you've ever been involved in email exchanges with me, you can work your way back to the anonymized address associated to your actual address by comparing the message timestamps. Similarly, with a little more guesswork, you can discover the anonymized addresses of those who were also involved in those exchanges. Since that is also true for them in respect to you, if that is of any concern just reach out and I'll censor the problematic entries in the dataset.",2018-03-21T10:10:40.373Z,emarock/enricos-email-flows,12.867137,https://www.kaggle.com/emarock/enricos-email-flows,3,84,CC0: Public Domain,1,"Ready version: 1, 2018-03-21T10:10:40.373Z",0.882352948,exchanges +89,Poloniex BTCETH OrderBook Stream Sample,Order Flow from a websocket,"### Context +Orderbook flow from exchanges is usually very expensive and hard to find luckily many exchanges offer websockets with full access to data. For a while I've been collecting this data, and this is a sample. + +### Content + +Data is acquired from [Poloniex][1] via websocket and stored in a database. Data consists of following fields: + +1. typeOT - string - Order 'o' or Trade 't' + +3. typeSB - numeric - Sell '0' or Buy '1' in term of trades, same goes for asks/bids in term of orders + +4. rate - numeric - actual rate at which it was traded/bidded/asked + +5. amount - numeric - actual amount + +6. timeDateT - numeric - time in UNIX epoch + +7. seq - numeric - sequence number for sorting + +8. timeDateOTe - date - time and date in a format, added by me + +9. timeDateOTh - date - time and date in a format, added by me + +### Acknowledgements + +Thank You Poloniex and crypto community for sharing data with researches. + +### Inspiration + +- build a state of art database of features? +- build state of art database of images? +- visualize it in a new manner? +- process each tick/order very very fast? +- continuously build LOB and show some statistics? + + [1]: http://www.poloniex.com",2018-04-12T04:04:11.673Z,praeconium/poloniex-btceth-order-book-stream-sample,67.039769,https://www.kaggle.com/praeconium/poloniex-btceth-order-book-stream-sample,2,33,Unknown,1,"Ready version: 1, 2018-04-12T04:04:11.673Z",0.7058824,exchanges +90,S&P 500,SP500 data history from yahoo,"This data-set has data spanning from 2013 till 2018. The S&P 500 stock market index, maintained by S&P Dow Jones Indices, comprises 505 common stocks issued by 500 large-cap companies and traded on American stock exchanges, and covers about 80 percent of the American equity market by capitalization. The index is weighted by free-float market capitalization, so more valuable companies account for relatively more of the index. The index constituents and the constituent weights are updated regularly using rules published by S&P Dow Jones Indices. Although the index is called the S&P ""500"", the index contains 505 stocks because it includes two share classes of stock from 5 of its component companies. + +The dataset comprises of all the S&P 500 components with the records created for each stock's open and closing rate spanning from last 5 years. + +yahoo finance",2019-03-27T15:28:14.16Z,florentbaptist/sp-500,10.035049,https://www.kaggle.com/florentbaptist/sp-500,1,48,Unknown,1,"Ready version: 1, 2019-03-27T15:28:14.16Z",0.5882353,exchanges +91,NY Multi Agency Permits,From New York City Open Data,"### Content + +The Multi Agency Permits dataset contains the permits data from two different data sources/exchanges – DOB Jobs Permits and DOHMH Permits + +### Context + +This is a dataset hosted by the City of New York. The city has an open data platform found [here](https://opendata.cityofnewyork.us/) and they update their information according the amount of data that is brought in. Explore New York City using Kaggle and all of the data sources available through the City of New York [organization page](https://www.kaggle.com/new-york-city)! + +* Update Frequency: This dataset is updated daily. + +### Acknowledgements + +This dataset is maintained using Socrata's API and Kaggle's API. [Socrata](https://socrata.com/) has assisted countless organizations with hosting their open data and has been an integral part of the process of bringing more data to the public. + +[Cover photo](https://unsplash.com/photos/E_8Zk_hfpcE) by [Adi Goldstein](https://unsplash.com/@adigold1) on [Unsplash](https://unsplash.com/) +_Unsplash Images are distributed under a unique [Unsplash License](https://unsplash.com/license)._",2019-03-06T06:48:48.45Z,new-york-city/ny-multi-agency-permits,190.748122,https://www.kaggle.com/new-york-city/ny-multi-agency-permits,1,19,CC0: Public Domain,0,"Ready version: 229, 2019-03-06T06:48:48.45Z",0.7647059,exchanges +92,Sentiment140 dataset with 1.6 million tweets,Sentiment analysis with tweets,"### Context + +This is the sentiment140 dataset. It contains 1,600,000 tweets extracted using the twitter api . The tweets have been annotated (0 = negative, 4 = positive) and they can be used to detect sentiment . + +### Content + +It contains the following 6 fields: + +1. **target**: the polarity of the tweet (*0* = negative, *2* = neutral, *4* = positive) + +2. **ids**: The id of the tweet ( *2087*) + +3. **date**: the date of the tweet (*Sat May 16 23:58:44 UTC 2009*) + +4. **flag**: The query (*lyx*). If there is no query, then this value is NO_QUERY. + +5. **user**: the user that tweeted (*robotickilldozr*) + +6. **text**: the text of the tweet (*Lyx is cool*) + + +### Acknowledgements + +The official link regarding the dataset with resources about how it was generated is [here][1] +The official paper detailing the approach is [here][2] + +Citation: Go, A., Bhayani, R. and Huang, L., 2009. Twitter sentiment classification using distant supervision. *CS224N Project Report, Stanford, 1(2009), p.12*. + + +### Inspiration + +To detect severity from tweets. You [may have a look at this][3]. + +[1]: http://%20http://help.sentiment140.com/for-students/ +[2]: http://bhttp://cs.stanford.edu/people/alecmgo/papers/TwitterDistantSupervision09.pdf +[3]: https://www.linkedin.com/pulse/social-machine-learning-h2o-twitter-python-marios-michailidis",2017-09-13T22:43:19.117Z,kazanova/sentiment140,88.031309,https://www.kaggle.com/kazanova/sentiment140,3,13986,Other (specified in description),37,"Ready version: 2, 2017-09-13T22:43:19.117Z",0.882352948,tweets +93,Russian Troll Tweets,"200,000 malicious-account tweets captured by NBC","### Context + +As part of the House Intelligence Committee investigation into how Russia may have influenced the 2016 US Election, Twitter released the screen names of almost 3000 Twitter accounts believed to be connected to Russia’s Internet Research Agency, a company known for operating social media troll accounts. Twitter immediately suspended these accounts, deleting their data from Twitter.com and the Twitter API. A team at NBC News including Ben Popken and EJ Fox was able to reconstruct a dataset consisting of a subset of the deleted data for their investigation and were able to show how these troll accounts went on attack during key election moments. This dataset is the body of this open-sourced reconstruction. + +For more background, read the NBC news article publicizing the release: [""Twitter deleted 200,000 Russian troll tweets. Read them here.""](https://www.nbcnews.com/tech/social-media/now-available-more-200-000-deleted-russian-troll-tweets-n844731) + +### Content + +This dataset contains two CSV files. `tweets.csv` includes details on individual tweets, while `users.csv` includes details on individual accounts. + +To recreate a link to an individual tweet found in the dataset, replace `user_key` in `https://twitter.com/user_key/status/tweet_id` with the screen-name from the `user_key` field and `tweet_id` with the number in the `tweet_id` field. + +Following the links will lead to a suspended page on Twitter. But some copies of the tweets as they originally appeared, including images, can be found by entering the links on web caches like `archive.org` and `archive.is`. + +### Acknowledgements + +If you publish using the data, please credit NBC News and include a link to this page. Send questions to `ben.popken@nbcuni.com`. + +### Inspiration + +What are the characteristics of the fake tweets? Are they distinguishable from real ones? ",2018-02-15T00:49:04.63Z,vikasg/russian-troll-tweets,21.99381,https://www.kaggle.com/vikasg/russian-troll-tweets,5,2291,CC0: Public Domain,8,"Ready version: 2, 2018-02-15T00:49:04.63Z",0.7352941,tweets +94,Financial Tweets,"Tweets from verified users concerning stocks traded on the NYSE, NASDAQ, & SNP","### Context +I have been interested in using public sentiment and journalism to gather sentiment profiles on publicly traded companies. I first developed a Python package (https://github.com/dwallach1/Stocker) that scrapes the web for articles written about companies, and then noticed the abundance of overlap with Twitter. I then developed a NodeJS project that I have been running on my RaspberryPi to monitor Twitter for all tweets coming from those mentioned in the *content* section. If one of them tweeted about a company in the stocks_cleaned.csv file, then it would write the tweet to the database. Currently, the file is only from earlier today, but after about a month or two, I plan to update the tweets.csv file (hopefully closer to 50,000 entries. + +I am not quite sure how this dataset will be relevant, but I hope to use these tweets and try to generate some sense of public sentiment score. + + +### Content + +This dataset has all the publicly traded companies (tickers and company names) that were used as input to fill the tweets.csv. The influencers whose tweets were monitored were: +['MarketWatch', 'business', 'YahooFinance', 'TechCrunch', 'WSJ', 'Forbes', 'FT', 'TheEconomist', 'nytimes', 'Reuters', 'GerberKawasaki', 'jimcramer', 'TheStreet', 'TheStalwart', 'TruthGundlach', 'Carl_C_Icahn', 'ReformedBroker', 'benbernanke', 'bespokeinvest', 'BespokeCrypto', 'stlouisfed', 'federalreserve', 'GoldmanSachs', 'ianbremmer', 'MorganStanley', 'AswathDamodaran', 'mcuban', 'muddywatersre', 'StockTwits', 'SeanaNSmith' + + + +### Acknowledgements + +The data used here is gathered from a project I developed : https://github.com/dwallach1/StockerBot + +### Inspiration + +I hope to develop a financial sentiment text classifier that would be able to track Twitter's (and the entire public's) feelings about any publicly traded company (and cryptocurrency).",2018-08-09T17:13:55.89Z,davidwallach/financial-tweets,2.273078,https://www.kaggle.com/davidwallach/financial-tweets,2,2008,"Database: Open Database, Contents: Database Contents",4,"Ready version: 4, 2018-08-09T17:13:55.89Z",0.8235294,tweets +95,Australian Election 2019 Tweets,"May 18th 2019, 180k+ tweets","### Context + +During the 2019 Australian election I noticed that almost everything I was seeing on Twitter was unusually left-wing. So I decided to scrape some data and investigate. Unfortunately my sentiment analysis has so far been too inaccurate to come to any useful conclusions. I decided to share the data so that others may be able to help with the sentiment or any other interesting analysis. + + +### Content + +Over 180,000 tweets collected using Twitter API keyword search between 10.05.2019 and 20.05.2019. +Columns are as follows: + +- **created_at**: Date and time of tweet creation +- **id**: Unique ID of the tweet +- **full_text**: Full tweet text +- **retweet_count**: Number of retweets +- **favorite_count**: Number of likes +- **user_id**: User ID of tweet creator +- **user_name**: Username of tweet creator +- **user_screen_name**: Screen name of tweet creator +- **user_description**: Description on tweet creator's profile +- **user_location**: Location given on tweet creator's profile +- **user_created_at**: Date the tweet creator joined Twitter + +The **latitude** and **longitude** of **user_location** is also available in location_geocode.csv. This information was retrieved using the Google Geocode API. + +### Acknowledgements + +Thanks to Twitter for providing the free API. + + +### Inspiration + +There are a lot of interesting things that could be investigated with this data. Primarily I was interested to do sentiment analysis, before and after the election results were known, to determine whether Twitter users are indeed a left-leaning bunch. Did the tweets become more negative as the results were known? + +Other ideas for investigation include: + +- Take into account retweets and favourites to weight overall sentiment analysis. + +- Which parts of the world are interested (ie: tweet about) the Australian elections, apart from Australia? + +- How do the users who tweet about this sort of thing tend to describe themselves? + +- Is there a correlation between when the user joined Twitter and their political views (this assumes the sentiment analysis is already working well)? + +- Predict gender from username/screen name and segment tweet count and sentiment by gender",2019-05-21T09:41:38.763Z,taniaj/australian-election-2019-tweets,29.972572,https://www.kaggle.com/taniaj/australian-election-2019-tweets,5,2370,CC0: Public Domain,8,"Ready version: 2, 2019-05-21T09:41:38.763Z",1.0,tweets +96,Tweets Targeting Isis,General tweets about Isis & related words,"Context +------- + +The image at the top of the page is a frame from today's (7/26/2016) Isis #TweetMovie from twitter, a ""normal"" day when two Isis operatives murdered a priest saying mass in a French church. (You can see this in the center left). A selection of data from this site is being made available here to Kaggle users. + +UPDATE: An excellent study by Audrey Alexander titled [Digital Decay?][1] is now available which traces the ""change over time among English-language Islamic State sympathizers on Twitter. + +Intent +------ + +This data set is intended to be a counterpoise to the [How Isis Uses Twitter][2] data set. That data set contains 17k tweets alleged to originate with ""100+ pro-ISIS fanboys"". This new set contains 122k tweets collected on two separate days, 7/4/2016 and 7/11/2016, which contained any of the following terms, with no further editing or selection: + + - isis + - isil + - daesh + - islamicstate + - raqqa + - Mosul + - ""islamic state"" + +This is not a perfect counterpoise as it almost surely contains a small number of pro-Isis fanboy tweets. However, unless some entity, such as Kaggle, is willing to expend significant resources on a service something like an expert level Mechanical Turk or Zooniverse, a high quality counterpoise is out of reach. + +A counterpoise provides a balance or backdrop against which to measure a primary object, in this case the original pro-Isis data. So if anyone wants to discriminate between pro-Isis tweets and other tweets concerning Isis you will need to model the original pro-Isis data or **signal** against the counterpoise which is **signal + noise**. Further background and some analysis can be found in [this forum thread][3]. + +This data comes from postmodernnews.com/token-tv.aspx which daily collects about 25MB of Isis tweets for the purposes of graphical display. PLEASE NOTE: This server is not currently active. + +Data Details +------------ + +There are several differences between the format of this data set and the pro-ISIS fanboy [dataset][4]. + 1. All the twitter t.co tags have been expanded where possible + 2. There are no ""description, location, followers, numberstatuses"" data columns. + +I have also included my version of the original pro-ISIS fanboy set. This version has all the t.co links expanded where possible. + + + [1]: https://extremism.gwu.edu/sites/extremism.gwu.edu/files/DigitalDecayFinal_0.pdf + [2]: https://www.kaggle.com/kzaman/how-isis-uses-twitter + [3]: https://www.kaggle.com/forums/f/1277/how-isis-uses-twitter/t/22165/isis-tweetmovie + [4]: https://www.kaggle.com/kzaman/how-isis-uses-twitter",2016-07-29T23:59:27.183Z,activegalaxy/isis-related-tweets,11.258466,https://www.kaggle.com/activegalaxy/isis-related-tweets,2,1573,CC0: Public Domain,24,"Ready version: 3, 2016-07-29T23:59:27.183Z",0.875,tweets +97,Hillary Clinton and Donald Trump Tweets,Tweets from the major party candidates for the 2016 US Presidential Election,"Twitter has played an increasingly prominent role in the 2016 US Presidential Election. Debates have raged and candidates have risen and fallen based on tweets. + +This dataset provides ~3000 recent tweets from [Hillary Clinton](https://twitter.com/HillaryClinton) and [Donald Trump](https://twitter.com/realDonaldTrump), the two major-party presidential nominees. + +[![graph](https://www.kaggle.io/svf/377009/a6e6d9eeb0a7158b8f31498b1274c30b/clinton_vs_trump_retweets_and_favorites.png)](https://www.kaggle.com/benhamner/d/benhamner/clinton-trump-tweets/twitter-showdown-clinton-vs-trump)",2016-09-28T00:37:25.633Z,benhamner/clinton-trump-tweets,1.028293,https://www.kaggle.com/benhamner/clinton-trump-tweets,2,4958,Unknown,87,"Ready version: 1, 2016-09-28T00:37:25.633Z",0.7352941,tweets +98,Democrat Vs. Republican Tweets,200 tweets of Dems and Reps,"### Context + +Twitter give the general public unfiltered direct access to the ideas and policies of politicians. This means that understanding the content and reach of these tweets can help us understand what connects with constituents. This dataset is meant to help with that exploration. By applying sentiment analysis (using an already trained system) we can apply sentiment context to these tweets. This will help us understand who responds to positive and negative content. Finally this analysis may help to indentify fake or hyperbole polarized Twitter users. + + +### Content + +The dataset contains two files both in .csv format. The first is a list of the political party and the representative handles, and the second are the 200 latest tweets as of May 2018 from those twitter users. + +### Acknowledgements + +I would like to thank the following website and people who helped me get started + +### Inspiration + +I was first inspired by trying to find out if the average person would be able to distinguish between political tweets of no context was given. I made a small website that you can try this on. I will use real user data to cross check and see if ML methods are actually better than the average person. + +Other ace uses are the following: +Can we use this to detect Russian troll twitter accounts? +Do people respond to negative or positive political tweets? +",2018-05-27T17:20:55.79Z,kapastor/democratvsrepublicantweets,4.838286,https://www.kaggle.com/kapastor/democratvsrepublicantweets,3,913,CC0: Public Domain,8,"Ready version: 4, 2018-05-27T17:20:55.79Z",0.8235294,tweets +99,(Better) - Donald Trump Tweets!,A collection of all of Donald Trump tweets--better than its predecessors,"# Context +Unlike [This][1] dataset, (which proved to be unusable). And [This one][2] which was filled with unnecessary columns; This Donald trump dataset has the cleanest usability and consists of over 7,000 tweets, no nonsense + +**You may need to use a decoder other than UTF-8 if you want to see the emojis** +# Content + +**Data consists of:** + + - + + -Date + + -Time + + -Tweet_Text + + -Type + + -Media_Type + + -Hashtags + + -Tweet_Id + + -Tweet_Url + + -twt_favourites_IS_THIS_LIKE_QUESTION_MARK + + -Retweets + +I scrapped this from someone on reddit +=== + [1]: https://www.kaggle.com/austinvernsonger/donaldtrumptweets + [2]: https://www.kaggle.com/benhamner/clinton-trump-tweets",2017-04-16T04:24:29.33Z,kingburrito666/better-donald-trump-tweets,0.583499,https://www.kaggle.com/kingburrito666/better-donald-trump-tweets,2,2169,Unknown,30,"Ready version: 2, 2017-04-16T04:24:29.33Z",0.7058824,tweets +100,Election Day Tweets,"Tweets scraped from Twitter on November 8, 2016","Tweets scraped by [Chris Albon](https://github.com/chrisalbon) on the day of the 2016 United States elections. + +Chris Albon's site only posted tweet IDs, rather than full tweets. We're in the process of scraping the full information, but due to API limiting this is taking a very long time. Version 1 of this dataset contains just under 400k tweets, about 6% of the 6.5 million originally posted. + +This dataset will be updated as more tweets become available. + +## Acknowledgements + +[The original data](https://github.com/chrisalbon/election_day_2016_twitter) was scraped by [Chris Albon](https://github.com/chrisalbon), and tweet IDs were posted to his Github page. + +## The Data + +Since I (Ed King) used my own Twitter API key to scrape these tweets, this dataset contains a couple of fields with information on whether I have personally interacted with particular users or tweets. Since Kaggle encouraged me to not remove any data from a dataset, I'm leaving it in; feel free to build a classifier of the types of users I follow. + +The dataset consists of the following fields: + +- **text**: text of the tweet +- **created_at**: date and time of the tweet +- **geo**: a JSON object containing coordinates [latitude, longitude] and a `type' +- **lang**: Twitter's guess as to the language of the tweet +- **place**: a Place object from the Twitter API +- **coordinates**: a JSON object containing coordinates [longitude, latitude] and a `type'; **note** that coordinates are reversed from the **geo** field +- **user.favourites_count**: number of tweets the user has favorited +- **user.statuses_count**: number of statuses the user has posted +- **user.description**: the text of the user's profile description +- **user.location**: text of the user's profile location +- **user.id**: unique id for the user +- **user.created_at**: when the user created their account +- **user.verified**: bool; is user verified? +- **user.following**: bool; am I (Ed King) following this user? +- **user.url**: the URL that the user listed in their profile (not necessarily a link to their Twitter profile) +- **user.listed_count**: number of lists this user is on (?) +- **user.followers_count**: number of accounts that follow this user +- **user.default_profile_image**: bool; does the user use the default profile pic? +- **user.utc_offset**: positive or negative distance from UTC, in seconds +- **user.friends_count**: number of accounts this user follows +- **user.default_profile**: bool; does the user use the default profile? +- **user.name**: user's profile name +- **user.lang**: user's default language +- **user.screen_name**: user's account name +- **user.geo_enabled**: bool; does user have geo enabled? +- **user.profile_background_color**: user's profile background color, as hex in format ""RRGGBB"" (no '#') +- **user.profile_image_url**: a link to the user's profile pic +- **user.time_zone**: full name of the user's time zone +- **id**: unique tweet ID +- **favorite_count**: number of times the tweet has been favorited +- **retweeted**: is this a retweet? +- **source**: if a link, where is it from (e.g., ""Instagram"") +- **favorited**: have I (Ed King) favorited this tweet? +- **retweet_count**: number of times this tweet has been retweeted + + +I've also included a file called ```bad_tweets.csv``` , which includes all of the tweet IDs that could not be scraped, along with the error message I received while trying to scrape them. This typically happens because the tweet has been deleted, the user has deleted their account (or been banned), or the user has made their tweets private. The fields in this file are **id** and **exception.response**.",2016-11-26T23:01:06.707Z,kinguistics/election-day-tweets,88.00211,https://www.kaggle.com/kinguistics/election-day-tweets,2,1322,CC0: Public Domain,6,"Ready version: 1, 2016-11-26T23:01:06.707Z",0.875,tweets +101,Russian Troll Tweets,3 million tweets from accounts associated with the 'Internet Research Agency',"# 3 million Russian troll tweets + +This data was used in the FiveThirtyEight story [Why We’re Sharing 3 Million Russian Troll Tweets](https://fivethirtyeight.com/features/why-were-sharing-3-million-russian-troll-tweets/). + +This directory contains data on nearly 3 million tweets sent from Twitter handles connected to the Internet Research Agency, a Russian ""troll factory"" and a defendant in [an indictment](https://www.justice.gov/file/1035477/download) filed by the Justice Department in February 2018, as part of special counsel Robert Mueller's Russia investigation. The tweets in this database were sent between February 2012 and May 2018, with the vast majority posted from 2015 through 2017. + +FiveThirtyEight obtained the data from Clemson University researchers [Darren Linvill](https://www.clemson.edu/cbshs/faculty-staff/profiles/darrenl), an associate professor of communication, and [Patrick Warren](http://pwarren.people.clemson.edu/), an associate professor of economics, on July 25, 2018. They gathered the data using custom searches on a tool called Social Studio, owned by Salesforce and contracted for use by Clemson's [Social Media Listening Center](https://www.clemson.edu/cbshs/centers-institutes/smlc/). + +The basis for the Twitter handles included in this data are the [November 2017](https://democrats-intelligence.house.gov/uploadedfiles/exhibit_b.pdf) and [June 2018](https://democrats-intelligence.house.gov/uploadedfiles/ira_handles_june_2018.pdf) lists of Internet Research Agency-connected handles that Twitter [provided](https://democrats-intelligence.house.gov/news/documentsingle.aspx?DocumentID=396) to Congress. This data set contains every tweet sent from each of the 2,752 handles on the November 2017 list since May 10, 2015. For the 946 handles newly added on the June 2018 list, this data contains every tweet since June 19, 2015. (For certain handles, the data extends even earlier than these ranges. Some of the listed handles did not tweet during these ranges.) The researchers believe that this includes the overwhelming majority of these handles’ activity. The researchers also removed 19 handles that remained on the June 2018 list but that they deemed very unlikely to be IRA trolls. + +In total, the nine CSV files include 2,973,371 tweets from 2,848 Twitter handles. Also, as always, caveat emptor -- in this case, tweet-reader beware: In addition to their own content, some of the tweets contain active links, which may lead to adult content or worse. + +The Clemson researchers used this data in a working paper, [Troll Factories: The Internet Research Agency and State-Sponsored Agenda Building](http://pwarren.people.clemson.edu/Linvill_Warren_TrollFactory.pdf), which is currently under review at an academic journal. The authors’ analysis in this paper was done on the data file provided here, limiting the date window to June 19, 2015, to Dec. 31, 2017. + +The files have the following columns: + + Header | Definition + ---|--------- + `external_author_id` | An author account ID from Twitter + `author` | The handle sending the tweet + `content` | The text of the tweet + `region` | A region classification, as [determined by Social Studio](https://help.salesforce.com/articleView? id=000199367&type=1) + `language` | The language of the tweet + `publish_date` | The date and time the tweet was sent + `harvested_date` | The date and time the tweet was collected by Social Studio + `following` | The number of accounts the handle was following at the time of the tweet + `followers` | The number of followers the handle had at the time of the tweet + `updates` | The number of “update actions” on the account that authored the tweet, including tweets, retweets and likes + `post_type` | Indicates if the tweet was a retweet or a quote-tweet + `account_type` | Specific account theme, as coded by Linvill and Warren + `retweet` | A binary indicator of whether or not the tweet is a retweet + `account_category` | General account theme, as coded by Linvill and Warren + `new_june_2018` | A binary indicator of whether the handle was newly listed in June 2018 + +If you use this data and find anything interesting, please let us know. Send your projects to oliver.roeder@fivethirtyeight.com or [@ollie](https://twitter.com/ollie). + +The Clemson researchers wish to acknowledge the assistance of the Clemson University Social Media Listening Center and Brandon Boatwright of the University of Tennessee, Knoxville.",2018-08-01T09:04:25.733Z,fivethirtyeight/russian-troll-tweets,183.447803,https://www.kaggle.com/fivethirtyeight/russian-troll-tweets,5,938,CC0: Public Domain,5,"Ready version: 2, 2018-08-01T09:04:25.733Z",0.7058824,tweets +102,Christmas Tweets,"50,000 scraped tweet metadata from this 2k16 Christmas","# Context + +This dataset contains the metadata of over 50,000 tweets from Christmas Eve and Christmas. We are hoping the data science and research community can use this to develop new and informative conclusions about this holiday season. + + +# Content + +We acquired this data through a web crawler written in Java. The first field is the id of the tweet, and the second is the HTML metadata. We recommend using BeautifulSoup or another library to parse this data and extract information from each tweet. + + +# Inspiration + +We would especially like to see research on the use of emojis in tweets, the type of sentiment there is on Christmas (Maybe determine how grateful each country is), or some kind of demographic on the age or nationality of active Twitter users during Christmas.",2016-12-25T18:58:34.293Z,dhruvm/christmastwitterdata,7.189259,https://www.kaggle.com/dhruvm/christmastwitterdata,2,531,"Database: Open Database, Contents: Database Contents",4,"Ready version: 1, 2016-12-25T18:58:34.293Z",0.8235294,tweets +103,Good Morning Tweets,Tweets captured over ~24 hours with the text 'good morning' in them,"# Context + +It's possible, using R (and no doubt Python), to 'listen' to Twitter and capture tweets that match a certain description. I decided to test this out by grabbing tweets with the text 'good morning' in them over a 24 hours period, to see if you could see the world waking up from the location information and time-stamp. The main R package used was [streamR][1] + + +# Content + +The tweets have been tidied up quite a bit. First, I've removed re-tweets, second, I've removed duplicates (not sure why Twitter gave me them in the first place), third, I've made sure the tweet contained the words 'good morning' (some tweets were returned that didn't have the text in for some reason) and fourth, I've removed all the tweets that didn't have a longitude and latitude included. This latter step removed the vast majority. What's left are various aspects of just under 5000 tweets. The columns are, + +- text +- retweet_count +- favorited +- truncated +- id_str +- in_reply_to_screen_name +- source +- retweeted +- created_at +- in_reply_to_status_id_str +- in_reply_to_user_id_str +- lang +- listed_count +- verified +- location +- user_id_str +- description +- geo_enabled +- user_created_at +- statuses_count +- followers_count +- favourites_count +- protected +- user_url +- name +- time_zone +- user_lang +- utc_offset +- friends_count +- screen_name +- country_code +- country +- place_type +- full_name +- place_name +- place_id +- place_lat +- place_lon +- lat +- lon +- expanded_url +- url + + +# Acknowledgements + +I used a few blog posts to get the code up and running, including [this one][2] + + +# Code + +The R code I used to get the tweets is as follows (note, I haven't includes the code to set up the connection to Twitter. See the streamR PFD and the link above for that. You need a Twitter account), + + + i = 1 + + while (i <= 280) { + + filterStream(""tw_gm.json"", timeout = 300, oauth = my_oauth, track = 'good morning', language = 'en') + tweets_gm = parseTweets(""tw_gm.json"") + + ex = grepl('RT', tweets_gm$text, ignore.case = FALSE) #Remove the RTs + tweets_gm = tweets_gm[!ex,] + + ex = grepl('good morning', tweets_gm$text, ignore.case = TRUE) #Remove anything without good morning in the main tweet text + tweets_gm = tweets_gm[ex,] + + ex = is.na(tweets_gm$place_lat) #Remove any with missing place_latitude information + tweets_gm = tweets_gm[!ex,] + + tweets.all = rbind(tweets.all, tweets_gm) #Add to the collection + + i=i+1 + + Sys.sleep(5) + + } + + + [1]: https://cran.r-project.org/web/packages/streamR/streamR.pdf + [2]: http://politicaldatascience.blogspot.co.uk/2015/12/rtutorial-using-r-to-harvest-twitter.html",2016-12-09T16:24:24.507Z,tentotheminus9/good-morning-tweets,0.978617,https://www.kaggle.com/tentotheminus9/good-morning-tweets,3,590,Unknown,10,"Ready version: 1, 2016-12-09T16:24:24.507Z",0.7058824,tweets +104,Elon Musk's Tweets,Tweets by @elonmusk from 2012 to 2017,"### Context + +[Elon Musk](https://en.wikipedia.org/wiki/Elon_Musk) is an American business magnate. He was one of the founders of PayPal in the past, and the founder and/or cofounder and/or CEO of SpaceX, Tesla, SolarCity, OpenAI, Neuralink, and The Boring Company in the present. He is known as much for his extremely forward-thinking ideas and huge media presence as he is for his extremely business savvy. + +Musk is famously active on Twitter. This dataset contains all tweets made by [@elonmusk](https://twitter.com/elonmusk), his official Twitter handle, between November 16, 2012 and September 29, 2017. + +### Content + +This dataset includes the body of the tweet and the time it was made, as well as who it was re-tweeted from (if it is a retweet). + +### Inspiration + +* Can you figure out Elon Musk's opinions on various things by studying his Twitter statements? +* How Elon Musk's post rate increased, decreased, or stayed about the same over time? ",2017-10-12T10:41:47.637Z,kulgen/elon-musks-tweets,0.171605,https://www.kaggle.com/kulgen/elon-musks-tweets,0,898,CC0: Public Domain,7,"Ready version: 1, 2017-10-12T10:41:47.637Z",0.5882353,tweets +105,"5,000 #JustDoIt! Tweets Dataset",People reacting to Nike's endorsement of Colin Kaepernick,"### Context +Nike just announced its partnership with Colin Kaepernick to be the face of the 30th anniversary of its **JustDoIt** campaign. +They used the slogan ""Believe in something, even if it means sacrificing everything."" +Kaepernick had made a controversial decision not to stand up during the national anthem, as a protest to police brutality, a while back. +This has stirred a heated debate, and became a big national issue especially when [Donald Trump commented on it](https://www.youtube.com/watch?v=oY3hpZVZ7pk). + + +### Content + +This dataset contains 5,000 tweets that contain the hashtag #JustDoIt. +All tweets happened on September 7, 2018, which is days after Nike made its announcement to endorse Kaepernick. + +#### Some of the top entities of those tweets: +### #JustDoIt #Nike #ColinKaepernick #TakeaKnee +### 😂 🤣 ✔ 🔥 ❤ 🏈 💯 💙 🇺🇸 +### @Nike @Kaepernick7 @realDonaldTrump + + + +### Acknowledgements +Python, Twitter, twython, pandas, matplotlib do the heavy lifting in generating the data and exploring it. + +### Inspiration +I'm an online marketing person. Love words, love numbers. Can't help it! +I think it's very interesting to see how these issues unfold, and how people respond to them. Maybe you can uncover some hidden insights or patterns. +I'm also trying to show how you can [use the `extract_` functions from my `advertools` package](https://www.kaggle.com/eliasdabbas/extract-entities-from-social-media-posts). +",2018-09-08T16:32:37.09Z,eliasdabbas/5000-justdoit-tweets-dataset,3.256985,https://www.kaggle.com/eliasdabbas/5000-justdoit-tweets-dataset,4,944,CC0: Public Domain,6,"Ready version: 3, 2018-09-08T16:32:37.09Z",0.9411765,tweets +106,FIFA World Cup 2018 Tweets,A collection of tweets during the 2018 FIFA World Cup,"**Context:** +------------ +The FIFA World Cup (often simply called the World Cup ),  being the most prestigious association football tournament, as well as the most widely viewed and followed sporting event in the world, was one of the Top Trending topics frequently on Twitter while ongoing. 

+This dataset contains a random collection of 530k tweets starting from the Round of 16 till the World Cup Final that took place on 15 July, 2018 & was won by France
+A preliminary analysis from the data (till the Round of 16) is available at:
+[https://medium.com/@ritu_rg/nlp-text-visualization-twitter-sentiment-analysis-in-r-5ac22c778448][1] + + +**Content:** +------------ +**Data Collection:**
+The dataset was created using the Tweepy API, by streaming tweets from world-wide football fans before, during or after the matches.
+Tweepy is a Python API for accessing the Twitter API, that provides an easy-to-use interface for streaming real-time data from Twitter. More information related to this API can be found at: http://tweepy.readthedocs.io/en/v3.5.0/

+ +**Data Pre-processing:**
+The dataset includes English language tweets containing any references to FIFA or the World Cup. The collected tweets have been pre-processed to facilitate analysis , while trying to ensure that any information from the original tweets is not lost. 
+- The original tweet has been stored in the column ""Orig_tweet"". 
+- As part of pre-processing, using the ""BeautifulSoup"" & ""regex"" libraries in Python, the tweets have been cleaned off any nuances as required for natural language processing, such as website names, hashtags, user mentions, special characters, RTs, tabs, heading/trailing/multiple spaces, among others.
+- Words containing extensions such as n't 'll 're 've have been replaced with their proper English language counterparts. Duplicate tweets have been removed from the dataset.
+- The original Hashtags & User Mentions extracted during the above step have also been stored in separate columns.

+ +**Data Storage:**
+The collected tweets have been consolidated into a single dataset & shared as a Comma Separated Values file ""FIFA.csv"".
+Each tweet is uniquely identifiable by its ID, & characterized by the following attributes, per availability:
+- ""Lang"" - Language of the tweet
+- ""Date"" - When it was tweeted
+- ""Source"" - The device/medium where it was tweeted from
+- ""len"" - The length of the tweet
+- ""Orig_Tweet"" - The tweet in its original form
+- ""Tweet"" - The updated tweet after pre-processing
+- ""Likes"" - The number of likes received by the tweet (till the time the extraction was done)
+- ""RTs"" - The number of times the tweet was shared
+- ""Hashtags"" - The Hashtags found in the original tweet
+- ""UserMentionNames"" & ""UserMentionID"" -  Extracted from the original tweet

+ +It also includes the following attributes about the person that the tweet is from:
+- ""Name"" & ""Place"" of the user
+- ""Followers"" - The number of followers that the user account has
+- ""Friends"" - The number of friends the user account has
+ + +**Acknowledgements:**
+----------------- +The following resources have helped me through using the Tweepy API:
+[http://tweepy.readthedocs.io/en/v3.5.0/auth_tutorial.html][2]
+[https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets][3]
+[https://www.safaribooksonline.com/library/view/mining-the-social/9781449368180/ch01.html][4]
+ + + +**Inspiration:**
+------------ +This project gave me a fascinating look into the conversations & sentiments of people from all over the world, who were following this prestigious football tournament, while also giving me the opportunity to explore some of the streaming, natural language processing & visualizations techniques in both R & Python

+ + + [1]: https://medium.com/@ritu_rg/nlp-text-visualization-twitter-sentiment-analysis-in-r-5ac22c778448 + [2]: http://tweepy.readthedocs.io/en/v3.5.0/auth_tutorial.html + [3]: https://developer.twitter.com/en/docs/tweets/search/api-reference/get-search-tweets + [4]: https://www.safaribooksonline.com/library/view/mining-the-social/9781449368180/ch01.html",2018-08-15T05:30:46.967Z,rgupta09/world-cup-2018-tweets,45.758955,https://www.kaggle.com/rgupta09/world-cup-2018-tweets,1,1516,Unknown,8,"Ready version: 4, 2018-08-15T05:30:46.967Z",0.647058845,tweets +107,Hurricane Harvey Tweets,Recent tweets on Hurricane Harvey,"### Context + +Tweets containing Hurricane Harvey from the morning of 8/25/2017. I hope to keep this updated if computer problems do not persist. + +***8/30 Update** +This update includes the most recent tweets tagged ""Tropical Storm Harvey"", which spans from 8/20 to 8/30 as well as the properly merged version of dataset including Tweets from when Harvey before it was downgraded back to a tropical storm. + + +### Inspiration + +What are the popular tweets? + +Can we find popular news stories from this? + +Can we identify people likely staying or leaving, and is there a difference in sentiment between the two groups? + +Is it possible to predict popularity with respect to retweets, likes, and shares?",2017-09-09T17:40:57.633Z,dan195/hurricaneharvey,23.022262,https://www.kaggle.com/dan195/hurricaneharvey,2,655,CC0: Public Domain,3,"Ready version: 6, 2017-09-09T17:40:57.633Z",0.8235294,tweets +108,"Elon Musk Tweets, 2010 to 2017",All Elon Musk Tweets from 2010 to 2017,"# Content + + - tweet id, contains tweet-stamp + - date + time, date and time of day (24hr) + - tweet text, text of tweet, remove 'b' + +# usage + +What's someone going to do with a bunch of tweets? + + - Maybe someone would want to generate text using this dataset + - or do sentiment analysis + - Or find out the most likely time of day Elon would tweet. + - pie his tweets per month, ITS DATA!! + +Either way its up to you! + +# Inspiration: + +![elon][1] + + + [1]: http://iotblog.ir/wp-content/uploads/2017/01/eloninfograph.jpg",2017-04-23T09:08:35.637Z,kingburrito666/elon-musk-tweets,0.178148,https://www.kaggle.com/kingburrito666/elon-musk-tweets,3,369,Other (specified in description),11,"Ready version: 1, 2017-04-23T09:08:35.637Z",0.8235294,tweets +109,First GOP Debate Twitter Sentiment,Analyze tweets on the first 2016 GOP Presidential Debate,"*This data originally came from [Crowdflower's Data for Everyone library](http://www.crowdflower.com/data-for-everyone).* + +As the original source says, + +> We looked through tens of thousands of tweets about the early August GOP debate in Ohio and asked contributors to do both sentiment analysis and data categorization. Contributors were asked if the tweet was relevant, which candidate was mentioned, what subject was mentioned, and then what the sentiment was for a given tweet. We've removed the non-relevant messages from the uploaded dataset. + +The data we're providing on Kaggle is a slightly reformatted version of the original source. It includes both a CSV file and SQLite database. The code that does these transformations is [available on GitHub](https://github.com/benhamner/crowdflower-first-gop-debate-twitter-sentiment)",2016-10-06T03:19:29.417Z,crowdflower/first-gop-debate-twitter-sentiment,2.669318,https://www.kaggle.com/crowdflower/first-gop-debate-twitter-sentiment,2,12708,CC BY-NC-SA 4.0,122,"Ready version: 2, 2016-10-06T03:19:29.417Z",0.852941155,tweets +110,24 thousand tweets later ,2017 tweets from incubators and accelerators,"###Context + +I collected this data from incubators and accelerators to find out what they have been talking about in 2017. + +###Content + +The data contains the twitter usernames of various organizations and tweets for the year 2017 collected on 28th Dec 2017. + +###Acknowledgements + +Much appreciation to @emmanuelkens for helping in thinking through this + +###Inspiration + +I am very curious to find out what the various organizations have been talking about in 2017. I would also like to find out the most popular organization by tweets and engagement. I am also curious to find out if there is any relationship between the number of retweets a tweet gets and the time of day it was posted! +",2018-01-07T15:10:04.06Z,derrickmwiti/24-thousand-tweets-later,3.697713,https://www.kaggle.com/derrickmwiti/24-thousand-tweets-later,2,503,GPL 2,4,"Ready version: 3, 2018-01-07T15:10:04.06Z",0.7647059,tweets +111,2017 #Oscars Tweets,"29,000+ tweets about the 2017 Academy Awards","Hi, +I have extracted the Tweets related to Oscar 2017. + + - The timeframe is from Feb 27th,2017 to March 2nd,2017. + - The number ofTweets is 29498. + - The whole idea of extraction to know how people reacted in general about Oscars and also after the Best Picture mix up.",2017-03-17T19:50:40.257Z,madhurinani/oscars-2017-tweets,11.54496,https://www.kaggle.com/madhurinani/oscars-2017-tweets,3,308,Other (specified in description),7,"Ready version: 3, 2017-03-17T19:50:40.257Z",0.7647059,tweets +112,Hacker News,All posts from Y Combinator's social news website from 2006 to late 2017,"### Context + +This dataset contains all stories and comments from Hacker News from its launch in 2006. Each story contains a story id, the author that made the post, when it was written, and the number of points the story received. Hacker News is a social news website focusing on computer science and entrepreneurship. It is run by Paul Graham's investment fund and startup incubator, Y Combinator. In general, content that can be submitted is defined as ""anything that gratifies one's intellectual curiosity"". + +### Content + +Each story contains a story ID, the author that made the post, when it was written, and the number of points the story received. + +Please note that the text field includes profanity. All texts are the author’s own, do not necessarily reflect the positions of Kaggle or Hacker News, and are presented without endorsement. + +## Querying BigQuery tables + +You can use the BigQuery Python client library to query tables in this dataset in Kernels. Note that methods available in Kernels are limited to querying data. Tables are at `bigquery-public-data.hacker_news.[TABLENAME]`. **Fork [this kernel][1] to get started**. + +### Acknowledgements + +This dataset was kindly made publicly available by [Hacker News][2] under [the MIT license][3]. + +### Inspiration + + - Recent studies have found that many forums tend to be dominated by a + very small fraction of users. Is this true of Hacker News? + + - Hacker News has received complaints that the site is biased towards Y + Combinator startups. Do the data support this? + + - Is the amount of coverage by Hacker News predictive of a startup’s + success? + + + [1]: https://www.kaggle.com/mrisdal/mentions-of-kaggle-on-hacker-news + [2]: https://github.com/HackerNews/API + [3]: https://github.com/HackerNews/API/blob/master/LICENSE",2019-02-12T00:34:51.853Z,hacker-news/hacker-news,15883.923392,https://www.kaggle.com/hacker-news/hacker-news,4,0,CC0: Public Domain,1504,"Ready version: 2, 2019-02-12T00:34:51.853Z",0.7058824,news +113,News Category Dataset,Identify the type of news based on headlines and short descriptions,"# Context +This dataset contains around 200k news headlines from the year 2012 to 2018 obtained from [HuffPost](https://www.huffingtonpost.com/). The model trained on this dataset could be used to identify tags for untracked news articles or to identify the type of language used in different news articles. + +# Content +Each news headline has a corresponding category. Categories and corresponding article counts are as follows: + +* ```POLITICS```: ```32739``` + +* ```WELLNESS```: ```17827``` + +* ```ENTERTAINMENT```: ```16058``` + +* ```TRAVEL```: ```9887``` + +* ```STYLE & BEAUTY```: ```9649``` + +* ```PARENTING```: ```8677``` + +* ```HEALTHY LIVING```: ```6694``` + +* ```QUEER VOICES```: ```6314``` + +* ```FOOD & DRINK```: ```6226``` + +* ```BUSINESS```: ```5937``` + +* ```COMEDY```: ```5175``` + +* ```SPORTS```: ```4884``` + +* ```BLACK VOICES```: ```4528``` + +* ```HOME & LIVING```: ```4195``` + +* ```PARENTS```: ```3955``` + +* ```THE WORLDPOST```: ```3664``` + +* ```WEDDINGS```: ```3651``` + +* ```WOMEN```: ```3490``` + +* ```IMPACT```: ```3459``` + +* ```DIVORCE```: ```3426``` + +* ```CRIME```: ```3405``` + +* ```MEDIA```: ```2815``` + +* ```WEIRD NEWS```: ```2670``` + +* ```GREEN```: ```2622``` + +* ```WORLDPOST```: ```2579``` + +* ```RELIGION```: ```2556``` + +* ```STYLE```: ```2254``` + +* ```SCIENCE```: ```2178``` + +* ```WORLD NEWS```: ```2177``` + +* ```TASTE```: ```2096``` + +* ```TECH```: ```2082``` + +* ```MONEY```: ```1707``` + +* ```ARTS```: ```1509``` + +* ```FIFTY```: ```1401``` + +* ```GOOD NEWS```: ```1398``` + +* ```ARTS & CULTURE```: ```1339``` + +* ```ENVIRONMENT```: ```1323``` + +* ```COLLEGE```: ```1144``` + +* ```LATINO VOICES```: ```1129``` + +* ```CULTURE & ARTS```: ```1030``` + +* ```EDUCATION```: ```1004``` + +# Acknowledgements + +This dataset was collected from [HuffPost](https://www.huffingtonpost.com/). If this is against the TOS, please let me know and I will take it down. + + +# Inspiration + +* Can you categorize news articles based on their headlines and short descriptions? + +* Do news articles from different categories have different writing styles? + +* A classifier trained on this dataset could be used on a free text to identify the type of language being used. + +# Citation + +Please link to ""https://rishabhmisra.github.io/publications/"" in your report if you're using this dataset. + +If you're using this dataset for research purposes, please use the following BibTex for citation: + + +@dataset{dataset, + +author = {Misra, Rishabh}, + +year = {2018}, + +month = {06}, + +pages = {}, + +title = {News Category Dataset}, + +doi = {10.13140/RG.2.2.20331.18729} + +} + + +Thanks! + +### Other datasets +Please also checkout the following datasets collected by me: + +* [News Headlines Dataset For Sarcasm Detection](https://www.kaggle.com/rmisra/news-headlines-dataset-for-sarcasm-detection) + +* [Clothing Fit Dataset for Size Recommendation](https://www.kaggle.com/rmisra/clothing-fit-dataset-for-size-recommendation) + +* [IMDB Spoiler Dataset](https://www.kaggle.com/rmisra/imdb-spoiler-dataset)",2018-12-02T04:09:45.777Z,rmisra/news-category-dataset,26.337702,https://www.kaggle.com/rmisra/news-category-dataset,4,5173,CC0: Public Domain,22,"Ready version: 2, 2018-12-02T04:09:45.777Z",1.0,news +114,Getting Real about Fake News,Text & metadata from fake & biased news sources around the web,"The latest hot topic in the news is fake news and many are wondering what data scientists can do to detect it and stymie its viral spread. This dataset is only a first step in understanding and tackling this problem. It contains text and metadata scraped from 244 websites tagged as ""bullshit"" by the [BS Detector][2] Chrome Extension by [Daniel Sieradski][3]. + +**Warning**: I did not modify the list of news sources from the BS Detector so as not to introduce my (useless) layer of bias; I'm not an authority on fake news. There may be sources whose inclusion you disagree with. It's up to you to decide how to work with the data and how you might contribute to ""improving it"". The labels of ""bs"" and ""junksci"", etc. do not constitute capital ""t"" Truth. If there are other sources you would like to include, start a discussion. If there are sources you believe should not be included, start a discussion or write a kernel analyzing the data. Or take the data and do something else productive with it. Kaggle's choice to host this dataset is not meant to express any particular political affiliation or intent. + +## Contents + +The dataset contains text and metadata from 244 websites and represents 12,999 posts in total from the past 30 days. The data was pulled using the [webhose.io][4] API; because it's coming from their crawler, not all websites identified by the BS Detector are present in this dataset. Each website was labeled according to the BS Detector as documented here. Data sources that were missing a label were simply assigned a label of ""bs"". There are (ostensibly) no genuine, reliable, or trustworthy news sources represented in this dataset (so far), so don't trust anything you read. + +## Fake news in the news + +For inspiration, I've included some (presumably non-fake) recent stories covering fake news in the news. This is a sensitive, nuanced topic and if there are other resources you'd like to see included here, please leave a suggestion. From defining fake, biased, and misleading news in the first place to deciding how to take action (a blacklist is not a good answer), there's a lot of information to consider beyond what can be neatly arranged in a CSV file. + +* [How Fake News Spreads (NYT)][6] + +* [We Tracked Down A Fake-News Creator In The Suburbs. Here's What We Learned (NPR)][7] + +* [Does Facebook Generate Over Half of its Revenue from Fake News? (Forbes)][8] + +* [Fake News is Not the Only Problem (Points - Medium)][9] + +* [Washington Post Disgracefully Promotes a McCarthyite Blacklist From a New, Hidden, and Very Shady Group (The Intercept)][10] + +## Improvements + +If you have suggestions for improvements or would like to contribute, please let me know. The most obvious extensions are to include data from ""real"" news sites and to address the bias in the current list. I'd be happy to include any contributions in future versions of the dataset. + +## Acknowledgements + +Thanks to [Anthony][11] for pointing me to [Daniel Sieradski's BS Detector][12]. Thank you to Daniel Nouri for encouraging me to add a disclaimer to the dataset's page. + + + [2]: https://github.com/selfagency/bs-detector + [3]: https://github.com/selfagency + [4]: https://webhose.io/api + [5]: https://github.com/selfagency/bs-detector/blob/master/chrome/data/data.json + [6]: http://www.nytimes.com/2016/11/20/business/media/how-fake-news-spreads.html + [7]: http://www.npr.org/sections/alltechconsidered/2016/11/23/503146770/npr-finds-the-head-of-a-covert-fake-news-operation-in-the-suburbs + [8]: http://www.forbes.com/forbes/welcome/?toURL=http://www.forbes.com/sites/petercohan/2016/11/25/does-facebook-generate-over-half-its-revenue-from-fake-news + [9]: https://points.datasociety.net/fake-news-is-not-the-problem-f00ec8cdfcb#.577yk6s8a + [10]: https://theintercept.com/2016/11/26/washington-post-disgracefully-promotes-a-mccarthyite-blacklist-from-a-new-hidden-and-very-shady-group/ + [11]: https://www.kaggle.com/antgoldbloom + [12]: https://github.com/selfagency/bs-detector",2016-11-25T22:29:09.737Z,mrisdal/fake-news,21.412001,https://www.kaggle.com/mrisdal/fake-news,3,12762,CC0: Public Domain,93,"Ready version: 1, 2016-11-25T22:29:09.737Z",0.852941155,news +115,All the news,"143,000 articles from 15 American publications","NOTE: A larger version of this dataset is now available at [Components][1]. + +### Context + +I wanted to see how articles clustered together if the articles were rendered into document-term matrices---would there be greater affinity among political affiliations, or medium, subject matter, etc. The data was scraped using BeautifulSoup and stored in Sqlite, but I've chopped it up into three separate CSVs here, because the entire Sqlite database came out to about 1.2 gb, beyond Kaggle's max. + +The publications include the New York Times, Breitbart, CNN, Business Insider, the Atlantic, Fox News, Talking Points Memo, Buzzfeed News, National Review, New York Post, the Guardian, NPR, Reuters, Vox, and the Washington Post. Sampling wasn't quite scientific; I chose publications based on my familiarity of the domain and tried to get a range of political alignments, as well as a mix of print and digital publications. By count, the publications break down accordingly: + +The data primarily falls between the years of 2016 and July 2017, although there is a not-insignificant number of articles from 2015, and a possibly insignificant number from before then. + +### Content + +**articles1.csv** - 50,000 news articles (Articles 1-50,000) + +**articles2.csv** - 49,999 news articles (Articles 50,001-100,00) + +**articles3.csv** - Articles 100,001+ + + + +### Acknowledgements + +Thanks mostly go to the maesters of Stack Overflow. + +For each publication, I used archive.org to grab the past year-and-a-half of either home-page headlines or RSS feeds and ran those links through the scraper. That is, the articles are not the product of scraping an entire site, but rather their more prominently placed articles. For example, CNN's articles from 5/6/16 were what appeared on the homepage of CNN.com proper, not everything within the CNN.com domain. Vox's articles from 5/6/16 were everything that appeared in the Vox RSS reader. on 5/6/16, and so on. RSS readers are a breeze to scrape, and so I used them when possible, but not every publication uses them or makes them easy to find. + + +![enter image description here][2] + +It's not entirely even---this was something of a collect-it-all approach, and some sites are more prolific than others, and some have data that maintains integrity after scraping more easily than others. + +### Inspiration + +Sentiment analysis and topic modeling. + + + [1]: https://components.one/datasets/all-the-news-articles-dataset/ + [2]: http://i.imgur.com/QDPtuEv.png",2017-08-20T05:58:47.09Z,snapcrack/all-the-news,265.107114,https://www.kaggle.com/snapcrack/all-the-news,1,9769,Unknown,22,"Ready version: 4, 2017-08-20T05:58:47.09Z",0.7352941,news +116,A Million News Headlines,News headlines published over a period of 15 Years,"### Context + +This contains data of news headlines published over a period of 15 years. + +Sourced from the reputable Australian news source ABC (Australian Broadcasting Corp.) + +Agency Site: http://www.abc.net.au/ + +### Content + +Format: CSV ; Single File + + 1. **publish_date**: Date of publishing for the article in yyyyMMdd format + 2. **headline_text**: Text of the headline in Ascii , English , lowercase + +Start Date: 2003-02-19 End Date: 2017-12-31 + +Total Records: **1,103,663** + +Citation for usage: + +**Rohit Kulkarni** (2017), A Million News Headlines [CSV Data file], doi:10.7910/DVN/SYBGZL, Retrieved from: [this url] + +### Inspiration + +I look at this news dataset as a summarised historical record of noteworthy events in the globe from early-2003 to end-2017 with a more granular focus on Australia. + +This includes the entire corpus of articles published by the ABC website in the given time range. +With a volume of 200 articles per day and a good focus on international news, we can be fairly certain that every event of significance has been captured here. + +Digging into the keywords, one can see all the important episodes shaping the last decade and how they evolved over time. +Ex: financial crisis, iraq war, multiple US elections, ecological disasters, terrorism, famous people, Australian crimes etc. + +### Similar Work +Your kernals can be reused with minimal changes across all these datasets + + - 3M Clickbait Headlines for 6 years: [Examine the Examiner][1] + - 1.3M Global Headlines from 20K sources over 1 week: [Global News Week][2] + - 2.9M News Headlines from India from 2001-2017: [Headlines of India][3] + - 1.4M News Headlines from Ireland from 1996-2017: [Ireland Historical News][4] + + + [1]: https://www.kaggle.com/therohk/examine-the-examiner + [2]: https://www.kaggle.com/therohk/global-news-week + [3]: https://www.kaggle.com/therohk/india-headlines-news-dataset + [4]: https://www.kaggle.com/therohk/ireland-historical-news",2019-06-13T18:14:28.073Z,therohk/million-headlines,19.29658,https://www.kaggle.com/therohk/million-headlines,4,11484,CC0: Public Domain,49,"Ready version: 8, 2019-06-13T18:14:28.073Z",0.9411765,news +117,News Aggregator Dataset,Headlines and categories of 400k news stories from 2014,"This dataset contains headlines, URLs, and categories for 422,937 news stories collected by a web aggregator between March 10th, 2014 and August 10th, 2014. + +News categories included in this dataset include business; science and technology; entertainment; and health. Different news articles that refer to the same news item (e.g., several articles about recently released employment statistics) are also categorized together. + +## Content +The columns included in this dataset are: + +- **ID** : the numeric ID of the article +- **TITLE** : the headline of the article +- **URL** : the URL of the article +- **PUBLISHER** : the publisher of the article +- **CATEGORY** : the category of the news item; one of: +-- *b* : business +-- *t* : science and technology +-- *e* : entertainment +-- *m* : health +- **STORY** : alphanumeric ID of the news story that the article discusses +- **HOSTNAME** : hostname where the article was posted +- **TIMESTAMP** : approximate timestamp of the article's publication, given in Unix time (seconds since midnight on Jan 1, 1970) + +## Acknowledgments +This dataset comes from the [UCI Machine Learning Repository](http://archive.ics.uci.edu/ml). Any publications that use this data should cite the repository as follows: + +Lichman, M. (2013). UCI Machine Learning Repository [http://archive.ics.uci.edu/ml]. Irvine, CA: University of California, School of Information and Computer Science. + +This specific dataset can be found in the UCI ML Repository at [this URL](http://archive.ics.uci.edu/ml/datasets/News+Aggregator) + +## Inspiration +What kinds of questions can we explore using this dataset? Here are a few possibilities: + +- can we predict the category (business, entertainment, etc.) of a news article given only its headline? +- can we predict the specific story that a news article refers to, given only its headline?",2016-10-31T22:22:55.29Z,uciml/news-aggregator-dataset,30.370802,https://www.kaggle.com/uciml/news-aggregator-dataset,2,6757,CC0: Public Domain,54,"Ready version: 1, 2016-10-31T22:22:55.29Z",0.875,news +118,Daily News for Stock Market Prediction,Using 8 years daily news headlines to predict stock market movement,"Actually, I prepare this dataset for students on my Deep Learning and NLP course. + +But I am also very happy to see kagglers play around with it. + +Have fun! + +**Description:** + +There are two channels of data provided in this dataset: + +1. News data: I crawled historical news headlines from [Reddit WorldNews Channel][1] (/r/worldnews). They are ranked by reddit users' votes, and only the top 25 headlines are considered for a single date. +(Range: 2008-06-08 to 2016-07-01) + +2. Stock data: Dow Jones Industrial Average (DJIA) is used to ""prove the concept"". +(Range: 2008-08-08 to 2016-07-01) + +I provided three data files in *.csv* format: + +1. **RedditNews.csv**: two columns +The first column is the ""date"", and second column is the ""news headlines"". +All news are ranked from top to bottom based on how *hot* they are. +Hence, there are 25 lines for each date. + +2. **DJIA_table.csv**: +Downloaded directly from [Yahoo Finance][2]: check out the web page for more info. + +3. **Combined_News_DJIA.csv**: +To make things easier for my students, I provide this combined dataset with 27 columns. +The first column is ""Date"", the second is ""Label"", and the following ones are news headlines ranging from ""Top1"" to ""Top25"". + +**=========================================** + +*To my students:* + +*I made this a binary classification task. Hence, there are only two labels:* + +*""1"" when DJIA Adj Close value rose or stayed as the same;* + +*""0"" when DJIA Adj Close value decreased.* + +*For task evaluation, please use data from 2008-08-08 to 2014-12-31 as Training Set, and Test Set is then the following two years data (from 2015-01-02 to 2016-07-01). This is roughly a 80%/20% split.* + +*And, of course, use AUC as the evaluation metric.* + +**=========================================** + +**+++++++++++++++++++++++++++++++++++++++++** + +*To all kagglers:* + +*Please upvote this dataset if you like this idea for market prediction.* + +*If you think you coded an amazing trading algorithm,* + +*friendly advice* + +*do play safe with your own money :)* + +**+++++++++++++++++++++++++++++++++++++++++** + +Feel free to contact me if there is any question~ + +And, remember me when you become a millionaire :P + +**Note: If you'd like to cite this dataset in your publications, please use:** + +` +Sun, J. (2016, August). Daily News for Stock Market Prediction, Version 1. Retrieved [Date You Retrieved This Data] from https://www.kaggle.com/aaron7sun/stocknews. +` + + [1]: https://www.reddit.com/r/worldnews?hl + [2]: https://finance.yahoo.com/quote/%5EDJI/history?p=%5EDJI",2016-08-25T16:56:51.32Z,aaron7sun/stocknews,6.384909,https://www.kaggle.com/aaron7sun/stocknews,2,23371,CC BY-NC-SA 4.0,306,"Ready version: 1, 2016-08-25T16:56:51.32Z",0.882352948,news +119,Hacker News Posts,Hacker News posts from the past 12 months (including # of votes and comments),"This data set is Hacker News posts from the last 12 months (up to September 26 2016). + +It includes the following columns: + + - title: title of the post (self explanatory) + + - url: the url of the item being linked to + + - num_points: the number of upvotes the post received + + - num_comments: the number of comments the post received + + - author: the name of the account that made the post + + - created_at: the date and time the post was made (the time zone is Eastern Time in the US) + +One fun project suggestion is a model to predict the number of votes a post will attract. + +The scraper is written, so I can keep this up-to-date and add more historical data. I can also scrape the comments. Just make the request in this dataset's forum. + +The is a fork of minimaxir's HN scraper (thanks minimaxir): +[https://github.com/minimaxir/get-all-hacker-news-submissions-comments][1] + + + [1]: https://github.com/minimaxir/get-all-hacker-news-submissions-comments",2016-09-27T03:14:41.153Z,hacker-news/hacker-news-posts,20.702971,https://www.kaggle.com/hacker-news/hacker-news-posts,2,2016,CC0: Public Domain,39,"Ready version: 1, 2016-09-27T03:14:41.153Z",0.882352948,news +120,News Headlines Dataset For Sarcasm Detection,High quality dataset for the task of Sarcasm Detection,"#Context + +Past studies in Sarcasm Detection mostly make use of Twitter datasets collected using hashtag based supervision but such datasets are noisy in terms of labels and language. Furthermore, many tweets are replies to other tweets and detecting sarcasm in these requires the availability of contextual tweets. + +To overcome the limitations related to noise in Twitter datasets, this **News Headlines dataset for Sarcasm Detection** is collected from two news website. [*TheOnion*](https://www.theonion.com/) aims at producing sarcastic versions of current events and we collected all the headlines from News in Brief and News in Photos categories (which are sarcastic). We collect real (and non-sarcastic) news headlines from [*HuffPost*](https://www.huffingtonpost.com/). + +This new dataset has following advantages over the existing Twitter datasets: + +* Since news headlines are written by professionals in a formal manner, there are no spelling mistakes and informal usage. This reduces the sparsity and also increases the chance of finding pre-trained embeddings. + +* Furthermore, since the sole purpose of *TheOnion* is to publish sarcastic news, we get high-quality labels with much less noise as compared to Twitter datasets. + +* Unlike tweets which are replies to other tweets, the news headlines we obtained are self-contained. This would help us in teasing apart the real sarcastic elements. + +# Content +Each record consists of three attributes: + +* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0 + +* ```headline```: the headline of the news article + +* ```article_link```: link to the original news article. Useful in collecting supplementary data + +# Further Details +General statistics of data, instructions on how to read the data in python, and basic exploratory analysis could be found at [this GitHub repo](https://github.com/rishabhmisra/News-Headlines-Dataset-For-Sarcasm-Detection). A hybrid NN architecture trained on this dataset can be found at [this GitHub repo](https://github.com/rishabhmisra/Sarcasm-Detection-using-NN). + +# Inspiration + +Can you identify sarcastic sentences? Can you distinguish between fake news and legitimate news? + +# Reading the data +Following code snippet could be used to read the data: + +import json + +def parse_data(file): + + for l in open(file,'r'): + + yield json.loads(l) + + +data = list(parse_data('./Sarcasm_Headlines_Dataset.json')) + +# Citation + +Please link to ""https://rishabhmisra.github.io/publications/"" in your report if you're using this dataset. + +If you're using this dataset for research purposes, please use the following BibTex for citation: + + +@dataset{dataset, + +author = {Misra, Rishabh}, + +year = {2018}, + +month = {06}, + +pages = {}, + +title = {News Headlines Dataset For Sarcasm Detection}, + +doi = {10.13140/RG.2.2.16182.40004} + +} + +Thanks! + +### Other datasets +Please also checkout the following datasets collected by me: + +* [News Category Dataset](https://www.kaggle.com/rmisra/news-category-dataset) + +* [Clothing Fit Dataset for Size Recommendation](https://www.kaggle.com/rmisra/clothing-fit-dataset-for-size-recommendation) + +* [IMDB Spoiler Dataset](https://www.kaggle.com/rmisra/imdb-spoiler-dataset)",2019-07-03T23:52:57.127Z,rmisra/news-headlines-dataset-for-sarcasm-detection,3.425749,https://www.kaggle.com/rmisra/news-headlines-dataset-for-sarcasm-detection,4,5723,CC0: Public Domain,48,"Ready version: 2, 2019-07-03T23:52:57.127Z",1.0,news +121,News Headlines Of India,18 Years of headlines focusing on India,"### Context + +This News Dataset is a persistent historical archive of noteable events in the Indian subcontinent from start-2001 to end-2018, recorded in real-time by the journalists of India. It contains approximately 2.9 million events published by Times of India. + +A majority of the data is focusing on Indian local news including national, city level and entertainment. + +Agency Website: https://timesofindia.indiatimes.com + +The individual events can be explored in detail via the archives section. + +### Content + +CSV Rows: 2,969,922 + +1. **publish_date**: Date of the article being published online in yyyyMMdd format + +2. **headline_category**: Category of the headline, ascii, dot delimited, lowercase values + +3. **headline_text**: Text of the Headline in English, only ascii characters + +Start Date: 2001-01-01 End Date: 2018-12-31 + +See This Kernal for [Overview of Trends and Categories][1] + +### Inspiration + + + +Times Group as a news agency, reaches out a very wide audience across Asia and drawfs every other agency in the quantity of English Articles published per day. +Due to the heavy daily volume (avg. 650 articles) over multiple years, this data offers a deep insight into Indian society, its priorities, events, issues and talking points and how they have unfolded over time. + +It is possible to chop this dataset into a smaller piece for a more focused analysis, based on one or more facets. + + - Time Range: Records during 2014 election, 2006 Mumbai Bombings + - One or more Categories: like Mumbai, Movie Releases, ICC updates, Magazine, Middle East + - One or more Keywords: like crime or ecology related words; names of political parties, celebrities, corporations. + +### Acknowledgements + +The headlines are extracted from several GB of raw HTML files using Jsoup, Java and Bash. The entire process takes 11 minutes. + +This logic also : chooses the best worded headline for each article (longest one is usually picked) ; clusters about 17k categories to 200 large groups ; removes records where the date is ambiguous (9k cases) ; finally cleans the selected headline via a string 'domestication' function (which I use for any wild text from the internet). + +The final categories are as per the latest sitemap. Around 1.5k rare categories remain and these records (~20k) can be filtered out easily during analysis. The category is unknown for ~200k records. + +Similar news datasets exploring other attributes, countries and topics can be seen on my profile. + +Citation for usage: + +**Rohit Kulkarni** (2017), News Headlines of India 2001-2018 [CSV data file], doi:10.7910/DVN/J7BYRX, Retrieved from: [this url] + + [1]: https://www.kaggle.com/therohk/india-news-publishing-trends-and-cities",2019-04-12T02:46:04.197Z,therohk/india-headlines-news-dataset,71.73913,https://www.kaggle.com/therohk/india-headlines-news-dataset,3,2425,CC0: Public Domain,10,"Ready version: 5, 2019-04-12T02:46:04.197Z",0.7647059,news +122,NEWS SUMMARY,Generating short length descriptions of news articles.,"### Context + +I am currently working on summarizing chat context where it helps an agent in understanding previous context quickly. It interests me to apply the deep learning models to existing datasets and how they perform on them. I believe news articles are rich in grammar and vocabulary which allows us to gain greater insights. + + +### Content + +The dataset consists of 4515 examples and contains Author_name, Headlines, Url of Article, Short text, Complete Article. I gathered the summarized news from Inshorts and only scraped the news articles from Hindu, Indian times and Guardian. Time period ranges from febrauary to august 2017. + +### Acknowledgements + +I would like to thank the authors of Inshorts for their amazing work + +### Inspiration + +* Generating short length descriptions(headlines) from text(news articles). +* Summarizing large amount of information which can be represented in compressed space + +###Purpose + +When I was working on the summarization task I didn't find any open source data-sets to work on, I believe there are people just like me who are working on these tasks and I hope it helps them. + +###Contributions + +It will be really helpful if anyone found nice insights from this data and can share their work. Thankyou...!!! + +For those who are interested here is the link for the github code which includes the scripts for scraping. +https://github.com/sunnysai12345/News_Summary",2019-02-11T09:03:28.783Z,sunnysai12345/news-summary,20.492757,https://www.kaggle.com/sunnysai12345/news-summary,3,2331,GPL 2,3,"Ready version: 2, 2019-02-11T09:03:28.783Z",0.7647059,news +123,News Articles,This dataset include articles from 2015 till date,"# Content + +This Dataset is scraped from https://www.thenews.com.pk website. It has news articles from 2015 till date related to business and sports. It Contains the Heading of the particular Article, Its content and its date. The content also contains the place from where the statement or Article was published. + +# Importance + +This dataset can be used to detect main patterns between writing pattern of different types of articles. One more thing that can be extracted from it is that we could also detect the main locations from where the different types of articles originate. + +# Improvements + +Some Data Cleaning could still be done specially in the content area of the dataset. One more thing that could be done is that we could extract the locations from the content and make a separated table for it. + + +# Acknowledgements + +I'd like to thanks developer of Selenium Library. That helped a lot in retrieving the data.",2017-04-30T11:02:29.487Z,asad1m9a9h6mood/news-articles,1.916427,https://www.kaggle.com/asad1m9a9h6mood/news-articles,3,1253,CC0: Public Domain,7,"Ready version: 1, 2017-04-30T11:02:29.487Z",0.8235294,news +124,20 Newsgroups,"A collection of ~18,000 newsgroup documents from 20 different newsgroups","### Context + +This dataset is a collection newsgroup documents. The 20 newsgroups collection has become a popular data set for experiments in text applications of machine learning techniques, such as text classification and text clustering. + + +### Content + +There is file (list.csv) that contains a reference to the document_id number and the newsgroup it is associated with. +There are also 20 files that contain all of the documents, one document per newsgroup. + +In this dataset, duplicate messages have been removed and the original messages only contain ""From"" and ""Subject"" headers (18828 messages total). + +Each new message in the bundled file begins with these four headers: + +Newsgroup: alt.newsgroup + +Document_id: xxxxxx + +From: Cat + +Subject: Meow Meow Meow + +The Newsgroup and Document_id can be referenced against list.csv + + +Organization +- Each newsgroup file in the bundle represents a single newsgroup +- Each message in a file is the text of some newsgroup document that was posted to that newsgroup. + +This is a list of the 20 newsgroups: + +- comp.graphics +- comp.os.ms-windows.misc +- comp.sys.ibm.pc.hardware +- comp.sys.mac.hardware +- comp.windows.x rec.autos +- rec.motorcycles +- rec.sport.baseball +- rec.sport.hockey sci.crypt +- sci.electronics +- sci.med +- sci.space +- misc.forsale talk.politics.misc +- talk.politics.guns +- talk.politics.mideast talk.religion.misc +- alt.atheism +- soc.religion.christian + + +### Acknowledgements + +Ken Lang is credited by the source for collecting this data. The source of the data files is here: +http://qwone.com/~jason/20Newsgroups/ + +### Inspiration + +- This dataset text can be used to classify text documents",2017-07-26T21:05:38.987Z,crawford/20-newsgroups,28.248814,https://www.kaggle.com/crawford/20-newsgroups,2,2280,Other (specified in description),9,"Ready version: 1, 2017-07-26T21:05:38.987Z",0.8235294,news +125,One Week of Global News Feeds,7 days of tracking 20k news feeds worldwide,"# Context + +This dataset is a snapshot of most of the new news content published online over one week. It covers the 7 Day-period of August 24 through August 30 for the years 2017 and 2018. + +Year 2017: 1,398,431 ; Year 2018: 1,912,873 + +Prepared by **Rohit Kulkarni** + +It includes approximately **3.3 million** articles, with **20,000 news sources** and **20+ languages**. + +This dataset has just four fields (as per the [column metadata](https://www.kaggle.com/therohk/global-news-week/data)): + + - **publish_time** - earliest known time of the url appearing online in yyyyMMddHHmm format, IST timezone + + - **feed_code** - unique identifier for the publisher or domain + + - **source_url** - url of the article + + - **headline_text** - Headline of the article (UTF8, 20+ possible languages) + +See the [""Basic Feed Exploration""](https://www.kaggle.com/therohk/basic-feed-code-exploration) notebook for a quick look at the dataset contents. + +# Inspiration + +The sources include news feeds, news websites, government agencies, tech journals, company websites, blogs and wikipedia updates. The data has been collected by polling RSS feeds and by crawling other large news aggregators. + +As of 2017, this 7 day slice was selected as there wasn't any downtime or outage during the interval. New news content is produced at this rate by publishers everyday, throughout the year. + +# Acknowledgements + +This dataset is free to use with the following citation: + +Rohit Kulkarni (2018), One Week of Global Feeds [News CSV Dataset], doi:10.7910/DVN/ILAT5B, Retrieved from: [this url] + +Remodelling from raw IJS news feed: http://newsfeed.ijs.si/ + +Original paper by M Trampus, B Novak: Internals of An Aggregated Web News Feed + +Hosted By: Josef Stefan Institute, Slovenia : http://ailab.ijs.si/people/ + +Lieve News: http://eventregistry.org/",2019-04-10T15:05:18.423Z,therohk/global-news-week,282.624224,https://www.kaggle.com/therohk/global-news-week,4,1047,CC0: Public Domain,8,"Ready version: 4, 2019-04-10T15:05:18.423Z",0.882352948,news +126,Hacker News Corpus,A subset of all Hacker News articles,"### Context + +This dataset contains a randomized sample of roughly one quarter of all stories and comments from Hacker News from its launch in 2006. Hacker News is a social news website focusing on computer science and entrepreneurship. It is run by Paul Graham's investment fund and startup incubator, Y Combinator. In general, content that can be submitted is defined as ""anything that gratifies one's intellectual curiosity"". + +### Content + +Each story contains a story ID, the author that made the post, when it was written, and the number of points the story received. + +Please note that the text field includes profanity. All texts are the author’s own, do not necessarily reflect the positions of Kaggle or Hacker News, and are presented without endorsement. + +### Acknowledgements + +This dataset was kindly made publicly available by [Hacker News][1] under [the MIT license][2]. + +### Inspiration + + - Recent studies have found that many forums tend to be dominated by a + very small fraction of users. Is this true of Hacker News? + + - Hacker News has received complaints that the site is biased towards Y + Combinator startups. Do the data support this? + + - Is the amount of coverage by Hacker News predictive of a startup’s + success? + +### Use this dataset with BigQuery + +You can use Kernels to analyze, share, and discuss this data on Kaggle, but if you’re looking for real-time updates and bigger data, check out the data in BigQuery, too: https://cloud.google.com/bigquery/public-data/hacker-news + +The BigQuery version of this dataset has roughly four times as many articles. + + + + [1]: https://github.com/HackerNews/API + [2]: https://github.com/HackerNews/API/blob/master/LICENSE",2017-06-29T20:16:20.2Z,hacker-news/hacker-news-corpus,667.291612,https://www.kaggle.com/hacker-news/hacker-news-corpus,2,676,Other (specified in description),4,"Ready version: 2, 2017-06-29T20:16:20.2Z",0.8235294,news +127,News of the Brazilian Newspaper,167.053 news of the site Folha de São Paulo (Brazilian Newspaper),"### Content + +The dataset consists of 167.053 examples and contains Headlines, Url of Article, Complete Article and Category. I gathered the summarized news from Inshorts and only scraped the news articles from Folha de São Paulo - http://www.folha.uol.com.br/ (Brazilian Newspaper). Time period ranges is between January 2015 and September 2017.",2019-06-05T03:33:51.58Z,marlesson/news-of-the-site-folhauol,193.086895,https://www.kaggle.com/marlesson/news-of-the-site-folhauol,3,947,CC0: Public Domain,7,"Ready version: 2, 2019-06-05T03:33:51.58Z",0.7058824,news +128,The Examiner - SpamClickBait News Dataset,SiX Years of Crowd Sourced Journalism,"### Context + +Presenting a compendium of crowdsourced journalism from the psuedo-news site **The Examiner**. + +This dataset contains the headlines of **3.09 million articles** written by **~21000 authors** over **6 years**. + +While The Examiner was never praised for its quality, it consistently churned out 1000s of articles per day over several years. + +At their height in 2011, The Examiner was ranked highly in google search and had enormous shares on social media. +At one point it was the 10th largest site on mobile and was attracting 20 million unique visitors a month. + +As a platform driven towards advert revenue, most of their content was rushed, unsourced and factually sparse. +It still manages to paint a colourful picture about the trending topics over a long period of time. + +Prepared by Rohit Kulkarni + +### Content + +Format: CSV Rows: 3,089,781 + + - **publish_date**: Date when the article was published on the site in yyyyMMdd format + - **headline_text**: Text of the headline in English in Ascii + +Start Date: 2010-01-01 End Date: 2015-21-31 + +Another copy of the file with headlines tokenised to lowercase ascii only is included. Note that both files were derived using alternate methodologies and might not be in sync. + +Similar news datasets exploring other attributes, countries and topics can be accessed via my profile. + +### Inspiration + +The Examiner had emerged as an early winner in the digital content landscape of the 2000's using catchy headlines. + +It changed many roles over the years, from leftist citizen news to a multiuser blogging platform to a content farm. + +With falling views its operations were absorbed by AXS in 2014 and the website was finally shut down in June 2016. + +The original portal and content no longer exists: http://www.examiner.com + +This is potentially, the last surviving record of its existence.",2019-06-22T12:03:21.843Z,therohk/examine-the-examiner,148.217226,https://www.kaggle.com/therohk/examine-the-examiner,3,823,CC0: Public Domain,4,"Ready version: 6, 2019-06-22T12:03:21.843Z",0.8235294,news +129,BBC News Summary,Extractive Summarization of BBC News Articles ,"### Context + +Text summarization is a way to condense the large amount of information into a concise form by the process of selection of important information and discarding unimportant and redundant information. With the amount of textual information present in the world wide web the area of text summarization is becoming very important. The extractive summarization is the one where the exact sentences present in the document are used as summaries. The extractive summarization is simpler and is the general practice among the automatic text summarization researchers at the present time. Extractive summarization process involves giving scores to sentences using some method and then using the sentences that achieve highest scores as summaries. As the exact sentence present in the document is used the semantic factor can be ignored which results in generation of less calculation intensive summarization procedure. This kind of summary is generally completely unsupervised and language independent too. Although this kind of summary does its job in conveying the essential information it may not be necessarily smooth or fluent. Sometimes there can be almost no connection between adjacent sentences in the summary resulting in the text lacking in readability. + + +### Content + +This dataset for extractive text summarization has four hundred and seventeen political news articles of BBC from 2004 to 2005 in the News Articles folder. For each articles, five summaries are provided in the Summaries folder. The first clause of the text of articles is the respective title. + + +### Acknowledgements + +This dataset was created using a dataset used for data categorization that onsists of 2225 documents from the BBC news website corresponding to stories in five topical areas from 2004-2005 used in the paper of D. Greene and P. Cunningham. ""Practical Solutions to the Problem of Diagonal Dominance in Kernel Document Clustering"", Proc. ICML 2006; whose all rights, including copyright, in the content of the original articles are owned by the BBC. More at http://mlg.ucd.ie/datasets/bbc.html +",2018-05-06T11:08:19.42Z,pariza/bbc-news-summary,3.928416,https://www.kaggle.com/pariza/bbc-news-summary,2,1481,CC0: Public Domain,2,"Ready version: 2, 2018-05-06T11:08:19.42Z",0.75,news +130,Yet Another Chinese News Dataset,"With Article Titles, Descriptions, Cover Images, and Links.","A collections of news articles in Traditional and Simplified Chinese. It includes some Internet news outlets that are NOT Chinese state media (they deserve a separate dataset). + +Complete coverage is not guaranteed. Therefore this dataset is not suitable for analyzing event coverage. It is meant for using as a corpus for NLP algorithms. + +## Data Collection Process + +1. The links to the news articles were collected from the RSS feeds or the Twitter accounts of the news outlets. +2. Download and parse the web pages. Then the meta tags were used to extract the title, description/summary, and cover image of each article. (These are the stuffs that are used in the Twitter and Facebook summary cards.) + +Note: Only minimal text cleaning has been performed on the meta tags. + +### Data Fields + +1. title: Article title from `og:title` or `twitter:title` meta tag. +2. desc: Article summary from `twitter:description` or `og:description` meta tag. +3. image: URL to the cover image from `twitter:image` or `og:image` meta tag. +4. url: URL of the article. +5. source: The code of the news outlet. +6. date: The publish date of the article on Twitter or in RSS feeds. Format: YYYYMMDD + +This dataset does not provide full texts of the article. You'll need to scrape it yourself using the links provided. +",2019-07-11T17:01:17.377Z,ceshine/yet-another-chinese-news-dataset,24.983959,https://www.kaggle.com/ceshine/yet-another-chinese-news-dataset,3,137,CC BY-SA 4.0,4,"Ready version: 7, 2019-07-11T17:01:17.377Z",1.0,news +131,Old Newspapers,A cleaned subset of HC Corpora newspapers,"### Context + +The [HC Corpora](https://web.archive.org/web/20161021044006/http://corpora.heliohost.org/) was a great resource that contains natural language text from various newspapers, social media posts and blog pages in multiple languages. This is a cleaned version of the raw data from newspaper subset of the HC corpus. + +Originally, this subset was created for a [language identification task for similar languages](http://corporavm.uni-koeln.de/vardial/sharedtask.html) + +### Content + +The columns of each row in the `.tsv` file are: + + - **Langauge**: Language of the text. + - **Source**: Newspaper from which the text is from. + - **Date**: Date of the article that contains the text. + - **Text**: Sentence/paragraph from the newspaper + +The corpus contains 16,806,041 sentences/paragraphs in 67 languages: + + - Afrikaans + - Albanian + - Amharic + - Arabic + - Armenian + - Azerbaijan + - Bengali + - Bosnian + - Catalan + - Chinese (Simplified) + - Chinese (Traditional) + - Croatian + - Welsh + - Czech + - German + - Danish + - Danish + - English + - Spanish + - Spanish (South America) + - Finnish + - French + - Georgian + - Galician + - Greek + - Hebrew + - Hindi + - Hungarian + - Icelandic + - Indonesian + - Italian + - Japanese + - Khmer + - Kannada + - Korean + - Kazakh + - Lithuanian + - Latvian + - Macedonian + - Malayalam + - Mongolian + - Malay + - Nepali + - Dutch + - Norwegian (Bokmal) + - Punjabi + - Farsi + - Polish + - Portuguese (Brazil) + - Portuguese (EU) + - Romanian + - Russian + - Serbian + - Sinhalese + - Slovak + - Slovenian + - Swahili + - Swedish + - Tamil + - Telugu + - Tagalog + - Thai + - Turkish + - Ukranian + - Urdu + - Uzbek + - Vietnamese + +Languages in HC Corpora but not in this (yet): + + - Estonian + - Greenlandic + - Gujarati + +### Acknowledge + +All credits goes to Hans Christensen, the creator of HC Corpora. + +Dataset image is from [Philip Strong](https://unsplash.com/search/photos/newspaper?photo=gZaj16Ztu2Y). + + +### Inspire + +Use this dataset to: + + - create a language identifier / detector + - exploratory corpus linguistics (It’s one capstone project from [Coursera’s data science specialization](https://www.coursera.org/learn/data-science-project) )",2017-11-16T04:53:55.98Z,alvations/old-newspapers,2196.786581,https://www.kaggle.com/alvations/old-newspapers,4,847,CC0: Public Domain,3,"Ready version: 6, 2017-11-16T04:53:55.98Z",0.75,news +132,Getting Real about Fake News,Text & metadata from fake & biased news sources around the web,"The latest hot topic in the news is fake news and many are wondering what data scientists can do to detect it and stymie its viral spread. This dataset is only a first step in understanding and tackling this problem. It contains text and metadata scraped from 244 websites tagged as ""bullshit"" by the [BS Detector][2] Chrome Extension by [Daniel Sieradski][3]. + +**Warning**: I did not modify the list of news sources from the BS Detector so as not to introduce my (useless) layer of bias; I'm not an authority on fake news. There may be sources whose inclusion you disagree with. It's up to you to decide how to work with the data and how you might contribute to ""improving it"". The labels of ""bs"" and ""junksci"", etc. do not constitute capital ""t"" Truth. If there are other sources you would like to include, start a discussion. If there are sources you believe should not be included, start a discussion or write a kernel analyzing the data. Or take the data and do something else productive with it. Kaggle's choice to host this dataset is not meant to express any particular political affiliation or intent. + +## Contents + +The dataset contains text and metadata from 244 websites and represents 12,999 posts in total from the past 30 days. The data was pulled using the [webhose.io][4] API; because it's coming from their crawler, not all websites identified by the BS Detector are present in this dataset. Each website was labeled according to the BS Detector as documented here. Data sources that were missing a label were simply assigned a label of ""bs"". There are (ostensibly) no genuine, reliable, or trustworthy news sources represented in this dataset (so far), so don't trust anything you read. + +## Fake news in the news + +For inspiration, I've included some (presumably non-fake) recent stories covering fake news in the news. This is a sensitive, nuanced topic and if there are other resources you'd like to see included here, please leave a suggestion. From defining fake, biased, and misleading news in the first place to deciding how to take action (a blacklist is not a good answer), there's a lot of information to consider beyond what can be neatly arranged in a CSV file. + +* [How Fake News Spreads (NYT)][6] + +* [We Tracked Down A Fake-News Creator In The Suburbs. Here's What We Learned (NPR)][7] + +* [Does Facebook Generate Over Half of its Revenue from Fake News? (Forbes)][8] + +* [Fake News is Not the Only Problem (Points - Medium)][9] + +* [Washington Post Disgracefully Promotes a McCarthyite Blacklist From a New, Hidden, and Very Shady Group (The Intercept)][10] + +## Improvements + +If you have suggestions for improvements or would like to contribute, please let me know. The most obvious extensions are to include data from ""real"" news sites and to address the bias in the current list. I'd be happy to include any contributions in future versions of the dataset. + +## Acknowledgements + +Thanks to [Anthony][11] for pointing me to [Daniel Sieradski's BS Detector][12]. Thank you to Daniel Nouri for encouraging me to add a disclaimer to the dataset's page. + + + [2]: https://github.com/selfagency/bs-detector + [3]: https://github.com/selfagency + [4]: https://webhose.io/api + [5]: https://github.com/selfagency/bs-detector/blob/master/chrome/data/data.json + [6]: http://www.nytimes.com/2016/11/20/business/media/how-fake-news-spreads.html + [7]: http://www.npr.org/sections/alltechconsidered/2016/11/23/503146770/npr-finds-the-head-of-a-covert-fake-news-operation-in-the-suburbs + [8]: http://www.forbes.com/forbes/welcome/?toURL=http://www.forbes.com/sites/petercohan/2016/11/25/does-facebook-generate-over-half-its-revenue-from-fake-news + [9]: https://points.datasociety.net/fake-news-is-not-the-problem-f00ec8cdfcb#.577yk6s8a + [10]: https://theintercept.com/2016/11/26/washington-post-disgracefully-promotes-a-mccarthyite-blacklist-from-a-new-hidden-and-very-shady-group/ + [11]: https://www.kaggle.com/antgoldbloom + [12]: https://github.com/selfagency/bs-detector",2016-11-25T22:29:09.737Z,mrisdal/fake-news,21.412001,https://www.kaggle.com/mrisdal/fake-news,3,12762,CC0: Public Domain,93,"Ready version: 1, 2016-11-25T22:29:09.737Z",0.852941155,fake news +133,Fake News detection,,,2017-12-07T20:39:58Z,jruvika/fake-news-detection,5.123582,https://www.kaggle.com/jruvika/fake-news-detection,0,1460,"Database: Open Database, Contents: © Original Authors",6,"Ready version: 1, 2017-12-07T20:39:58Z",0.294117659,fake news +134,FakeNewsNet,"Fake News, MisInformation, Data Mining","##FakeNewsNet +This is a repository for an ongoing data collection project for fake news research at ASU. We describe and compare FakeNewsNet with other existing datasets in [Fake News Detection on Social Media: A Data Mining Perspective][1]. We also perform a detail analysis of FakeNewsNet dataset, and build a fake news detection model on this dataset in [Exploiting Tri-Relationship for Fake News Detection][2] + +JSON version of this dataset is available in github [here][3]. +The new version of this dataset described in [FakeNewNet][4] will be published soon or you can email authors for more info. + +## News Content +It includes all the fake news articles, with the news content attributes as follows: + +1. _source_: It indicates the author or publisher of the news article +2. _headline_: It refers to the short text that aims to catch the attention of readers and relates well to the major of the news topic. +3. _body_text_: It elaborates the details of news story. Usually there is a major claim which shaped the angle of the publisher and is specifically highlighted and elaborated upon. +4. _image_video_: It is an important part of body content of news article, which provides visual cues to frame the story. + +## Social Context +It includes the social engagements of fake news articles from Twitter. We extract profiles, posts and social network information for all relevant users. + +1. _user_profile_: It includes a set of profile fields that describe the users' basic information +2. _user_content_: It collects the users' recent posts on Twitter +3. _user_followers_: It includes the follower list of the relevant users +4. _user_followees_: It includes list of users that are followed by relevant users + + +###References +If you use this dataset, please cite the following papers: + +`@article{shu2017fake, + title={Fake News Detection on Social Media: A Data Mining Perspective}, + author={Shu, Kai and Sliva, Amy and Wang, Suhang and Tang, Jiliang and Liu, Huan}, + journal={ACM SIGKDD Explorations Newsletter}, + volume={19}, + number={1}, + pages={22--36}, + year={2017}, + publisher={ACM} +}` + +`@article{shu2017exploiting, + title={Exploiting Tri-Relationship for Fake News Detection}, + author={Shu, Kai and Wang, Suhang and Liu, Huan}, + journal={arXiv preprint arXiv:1712.07709}, + year={2017} +}` + +`@article{shu2018fakenewsnet, + title={FakeNewsNet: A Data Repository with News Content, Social Context and Dynamic Information for Studying Fake News on Social Media}, + author={Shu, Kai and Mahudeswaran, Deepak and Wang, Suhang and Lee, Dongwon and Liu, Huan}, + journal={arXiv preprint arXiv:1809.01286}, + year={2018} +}` + + + [1]: https://arxiv.org/abs/1708.01967 + [2]: http://arxiv.org/abs/1712.07709 + [3]: https://github.com/KaiDMML/FakeNewsNet + [4]: https://arxiv.org/abs/1809.01286",2018-11-02T19:08:58.527Z,mdepak/fakenewsnet,17.009927,https://www.kaggle.com/mdepak/fakenewsnet,5,553,CC BY-NC-SA 4.0,4,"Ready version: 1, 2018-11-02T19:08:58.527Z",0.7647059,fake news +135,Fake-News-Dataset,Two fake news datasets covering seven different news domains. ,"## Introduction +This describes two fake news datasets covering seven different news domains. One of the datasets is collected by combining manual and crowdsourced annotation approaches (FakeNewsAMT), while the second is collected directly from the web (Celebrity). + +## Data collection +The FakeNewsDatabase dataset contains news in six different domains: technology, education, business, sports, politics, and entertainment. The legitimate news included in the dataset were collected from a variety of mainstream news websites predominantly in the US such as the ABCNews, CNN, USAToday, NewYorkTimes, FoxNews, Bloomberg, and CNET among others. The fake news included in this dataset consist of fake versions of the legitimate news in the dataset, written using Mechanical Turk. More details on the data collection are provided in section 3 of the paper. + +The Celebrity dataset contain news about celebrities (actors, singers, socialites, and politicians). The legitimate news in the dataset were obtained from entertainment, fashion and style news sections in mainstream news websites and from entertainment magazines websites. The fake news were obtained from gossip websites such as Entertainment Weekly, People Magazine, RadarOnline, and other tabloid and entertainment-oriented publications. The news articles were collected in pairs, with one article being legitimate and the other fake (rumors and false reports). The articles were manually verified using gossip-checking sites such as ""GossipCop.com"", and also cross-referenced with information from other entertainment news sources on the web. + +The data directory contains two fake news datasets: + +- Celebrity +The fake and legitimate news are provided in two separate folders. The fake and legitimate labels are also provided as part of the filename. + +- FakeNewsAMT +The fake and legitimate news are provided in two separate folders. Each folder contains 40 news from six different domains: technology, education, business, sports, politics, and entertainment. The file names indicate the news domain: business (biz), education (edu), entertainment (entmt), politics (polit), sports (sports) and technology (tech). The fake and legitimate labels are also provided as part of the filename. + +## Dataset citation : +@article{Perez-Rosas18Automatic, +author = {Ver\’{o}nica P\'{e}rez-Rosas, Bennett Kleinberg, Alexandra Lefevre, Rada Mihalcea}, +title = {Automatic Detection of Fake News}, +journal = {International Conference on Computational Linguistics (COLING)}, +year = {2018} +}",2019-04-19T08:39:12.863Z,sumanthvrao/fakenewsdataset,2.084538,https://www.kaggle.com/sumanthvrao/fakenewsdataset,1,165,Unknown,2,"Ready version: 3, 2019-04-19T08:39:12.863Z",0.5625,fake news +136,News Headlines Dataset For Sarcasm Detection,High quality dataset for the task of Sarcasm Detection,"#Context + +Past studies in Sarcasm Detection mostly make use of Twitter datasets collected using hashtag based supervision but such datasets are noisy in terms of labels and language. Furthermore, many tweets are replies to other tweets and detecting sarcasm in these requires the availability of contextual tweets. + +To overcome the limitations related to noise in Twitter datasets, this **News Headlines dataset for Sarcasm Detection** is collected from two news website. [*TheOnion*](https://www.theonion.com/) aims at producing sarcastic versions of current events and we collected all the headlines from News in Brief and News in Photos categories (which are sarcastic). We collect real (and non-sarcastic) news headlines from [*HuffPost*](https://www.huffingtonpost.com/). + +This new dataset has following advantages over the existing Twitter datasets: + +* Since news headlines are written by professionals in a formal manner, there are no spelling mistakes and informal usage. This reduces the sparsity and also increases the chance of finding pre-trained embeddings. + +* Furthermore, since the sole purpose of *TheOnion* is to publish sarcastic news, we get high-quality labels with much less noise as compared to Twitter datasets. + +* Unlike tweets which are replies to other tweets, the news headlines we obtained are self-contained. This would help us in teasing apart the real sarcastic elements. + +# Content +Each record consists of three attributes: + +* ```is_sarcastic```: 1 if the record is sarcastic otherwise 0 + +* ```headline```: the headline of the news article + +* ```article_link```: link to the original news article. Useful in collecting supplementary data + +# Further Details +General statistics of data, instructions on how to read the data in python, and basic exploratory analysis could be found at [this GitHub repo](https://github.com/rishabhmisra/News-Headlines-Dataset-For-Sarcasm-Detection). A hybrid NN architecture trained on this dataset can be found at [this GitHub repo](https://github.com/rishabhmisra/Sarcasm-Detection-using-NN). + +# Inspiration + +Can you identify sarcastic sentences? Can you distinguish between fake news and legitimate news? + +# Reading the data +Following code snippet could be used to read the data: + +import json + +def parse_data(file): + + for l in open(file,'r'): + + yield json.loads(l) + + +data = list(parse_data('./Sarcasm_Headlines_Dataset.json')) + +# Citation + +Please link to ""https://rishabhmisra.github.io/publications/"" in your report if you're using this dataset. + +If you're using this dataset for research purposes, please use the following BibTex for citation: + + +@dataset{dataset, + +author = {Misra, Rishabh}, + +year = {2018}, + +month = {06}, + +pages = {}, + +title = {News Headlines Dataset For Sarcasm Detection}, + +doi = {10.13140/RG.2.2.16182.40004} + +} + +Thanks! + +### Other datasets +Please also checkout the following datasets collected by me: + +* [News Category Dataset](https://www.kaggle.com/rmisra/news-category-dataset) + +* [Clothing Fit Dataset for Size Recommendation](https://www.kaggle.com/rmisra/clothing-fit-dataset-for-size-recommendation) + +* [IMDB Spoiler Dataset](https://www.kaggle.com/rmisra/imdb-spoiler-dataset)",2019-07-03T23:52:57.127Z,rmisra/news-headlines-dataset-for-sarcasm-detection,3.425749,https://www.kaggle.com/rmisra/news-headlines-dataset-for-sarcasm-detection,4,5723,CC0: Public Domain,48,"Ready version: 2, 2019-07-03T23:52:57.127Z",1.0,fake news +137,Fake News Sample,,,2018-09-24T20:12:03.817Z,pontes/fake-news-sample,519.121643,https://www.kaggle.com/pontes/fake-news-sample,0,231,Unknown,1,"Ready version: 1, 2018-09-24T20:12:03.817Z",0.117647059,fake news +138,WSDM - Fake News Classification,Identify the fake news.,"# Background + +WSDM (pronounced ""wisdom"") is one of the premier conferences on web-inspired research involving search and data mining. [The 12th ACM International WSDM Conference][1] will take place in Melbourne, Australia during Feb. 11-15, 2019. + +This task is organized by ByteDance, the Platinum Level Sponsor of the conference. ByteDance is a global Internet technology company started from China. Our goal is to build a global content platform that enable people to enjoy various content in various forms. We inform, entertain, and inspire people across language, culture and geography. + +One of the challenges which we are facing is to combat different types of fake news. Fake news here refers to all forms of false, inaccurate or misleading information, which now poses a big threat to human civilization. + +At Bytedance, we have created a large-scale database to store existing fake news articles. Any new article must go through a test on the truthfulness of content before being published. We conduct matching between the new article and the articles in the database. Articles identified as containing fake news will be withdrawn after human verification. The accuracy and efficiency of the process, therefore, becomes crucial for us to make the platform safe, reliable, and healthy. + +# About This Dataset + +This dataset is released as the competition dataset of [Task: Fake News Classification][1] with the following task: + +Given the title of a fake news article A and the title of a coming news article B, participants are asked to classify B into one of the three categories. + +- agreed: B talks about the same fake news as A +- disagreed: B refutes the fake news in A +- unrelated: B is unrelated to A + +## File +- **train.csv** - training data contains 320,767 news pairs in both Chinese and English. This file provides the only data you can use to finish the task. Using external data is not allowed. +- **test.csv** - testing data contains 80,126 news pairs in both Chinese and English. The approximately 25% of the testing data is set to be public and is used to calculate your accuracy shown on the leading board. The remaining 75% private data is used to calculate your final result of the competition. +- **sample_submission.csv** - sample answer to the testing data. + + +## Data fields +- **id** - the id of each news pair. +- **tid1** - the id of fake news title 1. +- **tid2** - the id of news title 2. +- **title1_zh** - the fake news title 1 in Chinese. +- **title2_zh** - the news title 2 in Chinese. +- **title1_en** - the fake news title 1 in English. +- **title2_en** - the news title 2 in English. +- **label** - indicates the relation between the news pair: agreed/disagreed/unrelated. + +The English titles are machine translated from the related Chinese titles. This may help participants from all background to get better understanding of the datasets. Participants are highly recommended to use the Chinese version titles to finish the task. + +# Evaluation Metrics + +We use **Weighted Categorization Accuracy** to evaluate your performance. Weighted categorization accuracy can be generally defined as: + +$$ WeightedAccuracy(y, \hat{y}, \omega) = \frac{1}{n} \displaystyle{\sum_{i=1}^{n}} \frac{\omega_i(y_i=\hat{y}_i)}{\sum \omega_i} $$ + +where \\(y\\) are ground truths, \\(\hat{y}\\) are the predicted results, and \\(\omega_i\\) is the weight associated with the \\(i\\)th item in the dataset. + +In our test set, we assign each testing item a weight according to its category. The weights of the three categories, agreed, disagreed and unrelated are \\(\frac{1}{15}\\), \\(\frac{1}{5}\\), \\(\frac{1}{16}\\), respectively. We set the weights in consideration of the imbalance of the data distribution to minimize the bias to your performance caused by the majority class (unrelated pairs accounts for approximately 70% of the dataset). + + [1]: https://www.kaggle.com/c/fake-news-pair-classification-challenge",2019-04-02T06:13:39.013Z,wsdmcup/wsdm-fake-news-classification,36.152251,https://www.kaggle.com/wsdmcup/wsdm-fake-news-classification,1,63,Unknown,1,"Ready version: 1, 2019-04-02T06:13:39.013Z",0.7058824,fake news +139,Fake News Data,A collection of fake news (headlines) datasets,"## Datasets + +Data stored in this dataset comes from the following sources: + +* [Fake News Net](https://github.com/KaiDMML/FakeNewsNet): A dataset containing fake and real news headlines (alongside urls from which the article content can be found). The two files stored here are `fnn_politics_fake` and `fnn_politices_real`. [1], [2], [3]. + +* [Fake News Dataset](http://web.eecs.umich.edu/~mihalcea/downloads.html#FakeNews): A dataset containing fake and real article headlines and blurbs across multiple domains (like business and education). The data is stored in `fnd_news_fake` and `fnd_news_real`. [4] + +* [A Million Headlines](https://www.kaggle.com/therohk/million-headlines): A Kaggle dataset of a million headlines, as scraped from ABC News (Australian). [5] + +* [All the News](https://www.kaggle.com/snapcrack/all-the-news): A Kaggle dataset containing news articles (with headlines) as scraped from 15 American news organizations. [6] + +* [Reuters 2017](https://dataverse.harvard.edu/file.xhtml?persistentId=doi:10.7910/DVN/XDB74W/CVLKJH&version=2.0): A dataset containing articles from Reuters. [7] + +[1] Kai Shu, Suhang Wang, and Huan Liu. ""Exploiting Tri-Relationship for +Fake News Detection"". In: arXiv preprint arXiv:1712.07709 (2017). + +[2] Kai Shu et al. ""Fake News Detection on Social Media: A Data Mining +Perspective"". In: ACM SIGKDD Explorations Newsletter 19.1 (2017), +pp. 22-36. + +[3] Kai Shu et al. ""FakeNewsNet: A Data Repository with News Content, +Social Context and Dynamic Information for Studying Fake News on +Social Media"". In: arXiv preprint arXiv:1809.01286 (2018). + +[4] Veronica Perez-Rosas et al. ""Automatic Detection of Fake News"". In: +CoRR abs/1708.07104 (2017). arXiv: 1708.07104. url: http://arxiv.org/abs/1708.07104. + +[5] Rohit Kulkarni (2017), A Million News Headlines, doi:10.7910/DVN/SYBGZL + +[6] Andrew Thompson, ""All the News - Components"", https://components.one/datasets/all-the-news-articles-dataset/ + +[7] Rohit Kulkarni. The Historical Reuters News-Wire. Version DRAFT VERSION. 2018. doi: 10.7910/DVN/XDB74W. url: https://doi.org/10.7910/DVN/XDB74W.",2019-07-16T22:34:49.547Z,antmarakis/fake-news-data,38.477999,https://www.kaggle.com/antmarakis/fake-news-data,2,33,Unknown,6,"Ready version: 4, 2019-07-16T22:34:49.547Z",0.7647059,fake news +140,Fake News Detection Dataset,Detection of Fake News,,2019-01-21T09:47:48.09Z,ksaivenketpatro/fake-news-detection-dataset,0.435844,https://www.kaggle.com/ksaivenketpatro/fake-news-detection-dataset,0,178,Unknown,1,"Ready version: 1, 2019-01-21T09:47:48.09Z",0.1764706,fake news +141,Fake news,For Fake news detection using Machine Learning,,2019-05-20T05:02:15.39Z,mohit28rawat/fake-news,48.165856,https://www.kaggle.com/mohit28rawat/fake-news,0,27,Unknown,2,"Ready version: 1, 2019-05-20T05:02:15.39Z",0.235294119,fake news +142,Russian Troll Tweets,"200,000 malicious-account tweets captured by NBC","### Context + +As part of the House Intelligence Committee investigation into how Russia may have influenced the 2016 US Election, Twitter released the screen names of almost 3000 Twitter accounts believed to be connected to Russia’s Internet Research Agency, a company known for operating social media troll accounts. Twitter immediately suspended these accounts, deleting their data from Twitter.com and the Twitter API. A team at NBC News including Ben Popken and EJ Fox was able to reconstruct a dataset consisting of a subset of the deleted data for their investigation and were able to show how these troll accounts went on attack during key election moments. This dataset is the body of this open-sourced reconstruction. + +For more background, read the NBC news article publicizing the release: [""Twitter deleted 200,000 Russian troll tweets. Read them here.""](https://www.nbcnews.com/tech/social-media/now-available-more-200-000-deleted-russian-troll-tweets-n844731) + +### Content + +This dataset contains two CSV files. `tweets.csv` includes details on individual tweets, while `users.csv` includes details on individual accounts. + +To recreate a link to an individual tweet found in the dataset, replace `user_key` in `https://twitter.com/user_key/status/tweet_id` with the screen-name from the `user_key` field and `tweet_id` with the number in the `tweet_id` field. + +Following the links will lead to a suspended page on Twitter. But some copies of the tweets as they originally appeared, including images, can be found by entering the links on web caches like `archive.org` and `archive.is`. + +### Acknowledgements + +If you publish using the data, please credit NBC News and include a link to this page. Send questions to `ben.popken@nbcuni.com`. + +### Inspiration + +What are the characteristics of the fake tweets? Are they distinguishable from real ones? ",2018-02-15T00:49:04.63Z,vikasg/russian-troll-tweets,21.99381,https://www.kaggle.com/vikasg/russian-troll-tweets,5,2291,CC0: Public Domain,8,"Ready version: 2, 2018-02-15T00:49:04.63Z",0.7352941,fake news +143,Snopes_fake_legit_news,Articles taken by Snopes.com,"### Context + +I did this in order to share the project i'm working on. + + +### Content + +The dataset are created in 2 parts: 1 fold of articles of fake news and 1 fold of articles of legit news; each one was scraped from Snopes. + + +### Acknowledgements + +BeautifulSoup <3 + +### Inspiration + +How can i clean the data, especially the one from the fake news collection?",2017-10-24T13:38:46.13Z,ciotolaaaa/snopes-fake-legit-news,2.065057,https://www.kaggle.com/ciotolaaaa/snopes-fake-legit-news,0,135,CC0: Public Domain,0,"Ready version: 1, 2017-10-24T13:38:46.13Z",0.5,fake news +144,Not Fake News,,,2017-09-05T20:31:14.877Z,mrisdal/not-fake-news,0.001236,https://www.kaggle.com/mrisdal/not-fake-news,0,58,CC0: Public Domain,0,"Ready version: 1, 2017-09-05T20:31:14.877Z",0.235294119,fake news +145,Who starts and who debunks rumors,Webpages cited by rumor trackers,"# Context + +[Emergent.info](http://www.emergent.info/) was a major rumor tracker, created by veteran journalist [Craig Silverman](https://twitter.com/CraigSilverman). It has been defunct for a while, but its well-structured format and well-documented content provides an opportunity for analyzing rumors on the web. + +[Snopes.com](http://www.snopes.com/) is one of the oldest rumors trackers on the web. Originally launched by Barbara and David Mikkelson, it is now run by a team of editors who investigate urban legends, myths, viral rumors and fake news. The investigators try to provide a detailed explanation for why they have chosen to confirm or debunk a rumor, often citing several web pages and other external sources. + +[Politifact.com](http://www.politifact.com/) is a fact-checker that is focused on statements made by politicians and claims circulated by political campaigns, blogs and similar websites. Politifact's labels range from ""true,"" to ""pants on fire!"" + +--- + +# Content + +This dataset consists of three files. One file is a collection of all webpages cited in Emergent.info, and the second is a collection of webpages cited in Snopes.com, and the third is a similar collection from Politifact.com. The webpages were often cited because they had started a rumor, shared a rumor, or debunked a rumor. + +###Emergent.info +Emergent.info often provides a clean timeline of the rumor's propagation on the web, and identifies which page was for the rumor, which page was against it, and which page was simply observing it. Please refer to the image below to learn more about the fields in this dataset. + +![The image displays a sample post from Emergent.info and highlights the corresponding fields in emergent.csv.][1] + +###Snopes.com +The structure of posts on **Snopes.com** is not as well-defined. Please refer to the image below to learn more about the fields in the Snopes dataset. + +![This image displays a sample post from Snopes.com and highlights the corresponding fields in snopes.csv.][2] + +###Politifact.com +Similar to Emergent.info, Politifact.com follows a well-structured format in reporting and documenting rumors. There is a sidebar on the right side of each page that lists all of the sources cited within the page. The top link is the likeliest to be the original source of the rumor. For this link, page_is_first_citation is set to true. + +![This image displays a sample post from Politifact.com and highlights the corresponding fields in politifact.csv.][3] + +--- + +# Inspiration + +I created this dataset in order to study domains that frequently start, propagate, or debunk rumors. By studying these domains and people who follow them, I hope to gain some insight into the dynamics of rumor propagation on the web, as well as social media. + +--- + +# Notes/Disclaimer + +When using the Snopes dataset, please keep the following in mind: + +* In addition to debunking rumors, Snopes.com occasionally reports news and other types of content. This collection only includes data from ""[Fact Check](http://www.snopes.com/category/facts)"" posts on Snopes. + +* Snopes.com was launched years ago. Some of the older posts on the website do not follow the current format of the site, therefore some of the fields might be missing. + +* Snopes.com used to use a service named ""[DoNotLink.com](https://twitter.com/donotlink?lang=en)"" for citation purposes. That service is no longer active and as a result some of the links are missing from older posts on Snopes. + +* In addition, some of the shortened links would time-out prior to resolution, in which case they would not be added to the dataset. + +* Occasionally, a website that has been cited has not maliciously started a rumor. For instance, Andy Borowitz is a humorist who writes for *The New Yorker*. His satirical column is sometimes mistaken for real news; as a result, *The New Yorker* may be cited as a source of fake news on [Snopes.com](http://www.snopes.com/trump-blasts-media-for-reporting-things-he-says/). This does not mean that *The New Yorker* is a fake news website. + +When using the Politifact dataset, please keep the following in mind: + +* The data included in this dataset are collected from the ""[truth-o-meter](http://www.politifact.com/punditfact/statements/)"" page of Politifact.com. + +* Politifact often fact-checks statements made by politicians. Since this dataset is focused on websites, I have ignored all the posts in which the rumor was attributed to a person, a political party, a campaign, or an organization. Instead, I have only included rumors attributed explicitly to websites or blogs. + +--- + +# Useful Tips for Using the Snopes collection + +As opposed to the Emergent collection where each page is flagged with whether it was for or against a rumor, no such information is available for the Snopes dataset. To avoid manually labeling the data, you may use the following heuristics to identify which page started a rumor: + +* Webpages that are cited in the ""Examples"" section of a post are often ""observing"" the rumor, i.e. they have not started it, but they are repeating it. In the snopes.csv file, these webpages have been flagged as ""page_is_example."" + +* Webpages that are cited in the ""Featured Image"" section of a post are often not related to the rumor. The editors on Snopes have simply extracted an image from those pages to embed in their posts. In the snopes.csv file, these webpages have been flagged as ""page_is_image_credit."" + +* Webpages that are cited through a secondary service (such as [archive.is](http://archive.is/)) are likelier to be rumor-propagators. Editors do not link to them directly so that a record of their page is available, even if it is later deleted. + +* If neither of these hints help, very often (but not always) the first link cited on the page (for which ""page_is_example"" and ""page_is_image_credit"" are false) is the link to a page that started the rumor. This link is identified by the ""page_is_first_citation"" field. Pages for which both ""page_is_first_citation"" and ""page_is_archived"" are true are very likely to be rumor propagators. + +* To identify satirical websites that are mistaken for real news, it's useful to inspect the way they are cited on Snopes. To demonstrate that a website contains satire or humor, Snopes writers often cite the ""about us"" page of the site. Therefore it's useful to see which domains often contain a URI to their ""about"" page (e.g. ""http://politicops.com/about-us/""). + + [1]: http://imgur.com/JZPExar.png + [2]: http://i.imgur.com/jFT6Vdb.png + [3]: http://i.imgur.com/Z83JP7c.png",2017-03-27T15:02:32.653Z,arminehn/rumor-citation,1.455017,https://www.kaggle.com/arminehn/rumor-citation,2,858,CC0: Public Domain,10,"Ready version: 3, 2017-03-27T15:02:32.653Z",0.882352948,fake news +146,WSDM - Fake News Classification,,,2018-11-24T02:31:59.66Z,xuyinjie/wsdm-fake-news-classification,36.090816,https://www.kaggle.com/xuyinjie/wsdm-fake-news-classification,0,66,Unknown,1,"Ready version: 1, 2018-11-24T02:31:59.66Z",0.125,fake news +147,Fake News Detection Dataset,,,2019-03-23T19:27:27.28Z,munagazzai/fake-news-detection-dataset,0.040272,https://www.kaggle.com/munagazzai/fake-news-detection-dataset,1,23,Unknown,1,"Ready version: 1, 2019-03-23T19:27:27.28Z",0.375,fake news +148,Fact-Checking Facebook Politics Pages,Hyperpartisan Facebook pages and misleading information during the 2016 election,"### Context + +During the 2016 US presidential election, the phrase “fake news” found its way to the forefront in news articles, tweets, and fiery online debates the world over after misleading and untrue stories proliferated rapidly. [BuzzFeed News][1] analyzed over 1,000 stories from hyperpartisan political Facebook pages selected from the right, left, and mainstream media to determine the nature and popularity of false or misleading information they shared. + +### Content + +This dataset supports the original story [“Hyperpartisan Facebook Pages Are Publishing False And Misleading Information At An Alarming Rate”][2] published October 20th, 2016. Here are more details on the methodology used for collecting and labeling the dataset (reproduced from the story): + +**More on Our Methodology and Data Limitations** + +“Each of our raters was given a rotating selection of pages from each category on different days. In some cases, we found that pages would repost the same link or video within 24 hours, which caused Facebook to assign it the same URL. When this occurred, we did not log or rate the repeat post and instead kept the original date and rating. Each rater was given the same guide for how to review posts: + +* “*Mostly True*: The post and any related link or image are based on factual information and portray it accurately. This lets them interpret the event/info in their own way, so long as they do not misrepresent events, numbers, quotes, reactions, etc., or make information up. This rating does not allow for unsupported speculation or claims. + +* “*Mixture of True and False*: Some elements of the information are factually accurate, but some elements or claims are not. This rating should be used when speculation or unfounded claims are mixed with real events, numbers, quotes, etc., or when the headline of the link being shared makes a false claim but the text of the story is largely accurate. It should also only be used when the unsupported or false information is roughly equal to the accurate information in the post or link. Finally, use this rating for news articles that are based on unconfirmed information. + +* “*Mostly False*: Most or all of the information in the post or in the link being shared is inaccurate. This should also be used when the central claim being made is false. + +* “*No Factual Content*: This rating is used for posts that are pure opinion, comics, satire, or any other posts that do not make a factual claim. This is also the category to use for posts that are of the “Like this if you think...” variety. + +“In gathering the Facebook engagement data, the API did not return results for some posts. It did not return reaction count data for two posts, and two posts also did not return comment count data. There were 70 posts for which the API did not return share count data. We also used CrowdTangle's API to check that we had entered all posts from all nine pages on the assigned days. In some cases, the API returned URLs that were no longer active. We were unable to rate these posts and are unsure if they were subsequently removed by the pages or if the URLs were returned in error.” + +### Acknowledgements + +This dataset was originally published on GitHub by BuzzFeed News here: https://github.com/BuzzFeedNews/2016-10-facebook-fact-check + +### Inspiration + +Here are some ideas for exploring the hyperpartisan echo chambers on Facebook: + +* How do left, mainstream, and right categories of Facebook pages differ in the stories they share? + +* Which types of stories receive the most engagement from their Facebook followers? Are videos or links more effective for engagement? + +* Can you replicate BuzzFeed’s findings that “the least accurate pages generated some of the highest numbers of shares, reactions, and comments on Facebook”? + + +#[Start a new kernel][3] + + + [1]: https://www.kaggle.com/buzzfeed + [2]: https://www.buzzfeed.com/craigsilverman/partisan-fb-pages-analysis?utm_term=.kq9kqJDZ2#.ia1QB2KJl. + [3]: https://www.kaggle.com/buzzfeed/fact-checking-facebook-politics-pages/kernels?modal=true",2017-06-05T19:09:40.407Z,mrisdal/fact-checking-facebook-politics-pages,0.04687,https://www.kaggle.com/mrisdal/fact-checking-facebook-politics-pages,4,633,Unknown,10,"Ready version: 1, 2017-06-05T19:09:40.407Z",0.7352941,fake news +149,AOSSIE: Fake News Detection datasets,,,2019-06-21T12:54:16.217Z,ad6398/aossie-fake-news-detection-datasets,210.153734,https://www.kaggle.com/ad6398/aossie-fake-news-detection-datasets,0,6,Unknown,2,"Ready version: 1, 2019-06-21T12:54:16.217Z",0.1764706,fake news +150,Boatos de WhatsApp e outros do BoatosOrg (pt + es),1900 boatos (pt) + 130 rumores (es) desmentidos por boatos.org,"### Contexto + +Boatos são compartilhados em milhares de grupos todos os dias no WhatsApp, enganando muitos brasileiros. Para tentar combater esses boatos, eu imaginei que possa ter algum padrão nesses textos, para tentar identificá-los automaticamente e combater esse problema usando Machine Learning. + +Para isso, eu precisava de datos, então criei esse dataset fazendo scrapping de todos os boatos falsos dos sites [boatos.org](http://www.boatos.org/) e [hablillas.org](http://hablillas.org/), que estão nesses CSVs para que você possa explorar à vontade. + +Se quiser saber mais sobre o que fiz com esses dados, dê uma olhada no projeto [Fake News Detector](https://fakenewsdetector.org/). + +### Conteúdo + +O dataset contém o texto do boato em si, o link desmentindo o boato e a data que ele foi dementido pelo boatos.org, ou pelo hablillas.org para os rumores em espanhol. + +O código usado para fazer scrapping desses dados está no [repositório do github](https://github.com/fake-news-detector/scrappers). + +### Ideias para explorar + +- Existe algum padrão de escrita nos boatos? +- Boatos costumam ter mais emojis que conversas comuns? +- Quem são as pessoas que mais aparecem nos boatos? Dilma? Temer? Pabllo Vittar? +- Olhando as datas, estão surgindo boatos cada vez mais rápido? +- Podemos identificar e bloquear um boato no whatsapp antes que ele se espalhe? + +### Agradecimentos + +Muito obrigado à equipe do boatos.org que me permitiu publicar este dataset para experimentos fututos",2018-10-24T22:31:23.51Z,rogeriochaves/boatos-de-whatsapp-boatosorg,0.444433,https://www.kaggle.com/rogeriochaves/boatos-de-whatsapp-boatosorg,1,66,CC0: Public Domain,1,"Ready version: 4, 2018-10-24T22:31:23.51Z",0.647058845,fake news +151,Predict Pakistan Elections 2018,Help Us Predict the Next Winner,"### Context + +Here comes the July 25th 2018 and Pakistan will see the 13th election (1954, 1962, 1970, 1977, 1985, 1988, 1990, 1993, 1997, 2002, 2008 and 2013) since independence. It’s middle of the week (Wednesday) with an expected temperature of 27-33 degree Celsius with almost no chances of rain anywhere in the country. + +We predict the historic voters’ turn out in this election of 57-61%. Historically the average turn out is 45% since 1977 (lowest 35% in 1997, highest 55% in 1977 and 53% in last elections). Pakistan ranked 164th out of 169 nations in voters’ turn out; Australia being the first with 94.5% turn out. + +Voters’ participation in the country is very diverse, historically Musakhel and Kohlu yield less than 25% whereas Layyah and Khanewal yield more than 60% and everything else is in between. Punjab has the highest and Balochistan has the lowest voters’ turnout. + +The contest will bring 3,675 candidates for 272 national assembly seats, that is 13 candidates on average per seat. PTI has unleashed 244 candidates ([highest in number][1] by any political party). Islamabad will see [76 candidates][2] just for 3 seats fighting to rule the capital that guarantees the psychological edge. + +There a quite few interesting facts about these elections, for example we will see the highest number of Lotas (candidates who often change their party affiliation) ever. PTI believes to win the election no matter what may come while the survey pundits predicts the PML(N) [lead of at least 13%][3] over PTI. + +The history of elections and the charges of corruption, voters’ fraud, ghost votes, interferences by deep state or violence go hand by hand. There is (almost) no country in the world without the fear or accusations of such incidents in their elections. +We are releasing the complete National Assembly Elections’ Results dataset for 2002, 2008 and 2013 elections in CSV files for public and calling all data scientists, international observers and journalists out there to help us achieve our inspirations. + +### Content + +Three CSV files for complete election results for the national assembly of Pakistan for 2002, 2008 and 2013. +The file contains Seat, Constituency, Candidates Name, Party Affiliation, Votes, TotalValidVotes, TotalRejectedVotes, TotalVotes, TotalRegisteredVoters and Turnout variables for each seat. + + +### Acknowledgements + +The dataset should be referenced as “Zeeshan-ul-hassan Usmani, Sana Rasheed, Muhammad Usman, Muhammad Ilyas and Qazi Humayun, Pakistan Elections Complete Dataset (2002, 2008, 2013), Kaggle, July 7, 2018.” + +### Inspiration +Here is the list of ideas we are working on and like you to help with. Please post your kernels and analysis + +1. Map each NA constituency to a District. Get the list of Districts in Pakistan. So we will know how many constituencies we have in each district and which ones? Please update the dataset version on this page. + +2. Find and Convert the current 2018 candidates list to Excel sheet and upload here + +3. Find out total no of candidates in 2018 elections, from each party, from each province, total no of parties and Avg. no of candidates per seat + +4. Calculate the voter’s turn out in each NA. Highest, lowest etc. Make a historical timeframe so we would know how many people voted in each NA in 2002, 2008 and 2013 + +5. Do analysis on invalid votes in each NA in all elections. Do we see any patterns here? + +6. Can we predict the effect of rain on voter’s turn out in a given constituency? + +7. Find out how many NEW candidates we have this time who have never contested any elections before? How many in each party? + +8. Can we make District Profiles with good visuals and heat-maps of which party would be leading in which district? + +9. Can we color the map of Pakistan (as we do in the US with Red and Blue) for each district? We can have a color or PML(N), PTI, PPP and MMA (only four major parties to start with) + +10. Can we find out Swing Districts and the Confirmed Districts for major parties? + +11. Are there any external datasets that we can join with this dataset to do some analysis? Please post the links or update the datasets here + +12. Make the Candidates’ profile so we know his party position in each election and whether he lost or won the last election(s). You can whatever values and information as you like + +13. Get the ***“Lota”*** Score for each candidate. So anyone with more than 2 would be a ***“Certified Lota”.*** These candidates are the ones who have changed their parties by x no of times, from independent to PPP, from PTI to PML etc. + +14. Get the “Confirmed Constituencies” where historically we have only one sided results. For example, PPP would always win from NA-XYZ or Zardari have never lost an election doesn’t matter where he ran from. Which party would definitely win which seats? + +15. Get the list of “Swing Constituencies” which historically are as random as anybody’s guess. For example, NA-XYZ voted for PTI in 2002, then went to PPP in 2008, then to PMLN in 2013 and so on. Once we have this list we can go further down and talk in detail the margins of win/loss in previous elections, who are the candidates (their profiles, district profiles, voter turnout etc.) and even results of bi-elections. But it is very important to get this list in first place. This is where can apply some models to do predict which way it will sway + +16. Make the “Party Potential” list. For Example, PML(N) with all its candidates, profiles etc. has the potential to win 86 seats, PTI 65, PPP 43 etc. Here we can predict which party would form the government in which province? + +17. Find out how many people voted so far in Pakistan in last 3 elections. Max, Min, Avg. Per Seat, Per Province? Can we hypothesize that that avg. no of voters in Punjab per seat (who go out and vote) is double than the avg. no of voters in KPK? Or voter turnout in Bunner is less than 25% while in Chakwal It is more than 65%? + +18. Popular Vote winner. Even if PML(N) lose, can we say that it will fetch max no of votes from the country by vote count only? Or is it true for PPP or PTI? + +19. Find “Fake Candidates” the people who are running but have no chance to win. Like no past elections or political history. These are the one who will withdraw 24 hours before the elections + +20. Find the “Independents” who will go to the highest bidder after winning + +21. Find anything interesting you can on candidates. Like is it true if candidates’ name start from M or A, he has twice the chances of winning than the candidates whose names start with other letters? + +22. Surprise Me! + + + [1]: https://gulfnews.com/news/asia/pakistan/pti-fields-highest-number-of-candidates-for-2018-elections-1.2244562 + [2]: https://www.geo.tv/latest/201359-general-election-76-candidates-to-contest-for-three-na-seats-in-islamabad + [3]: https://en.wikipedia.org/wiki/Pakistani_general_election,_2018",2018-07-30T07:32:41.157Z,zusmani/predict-pakistan-elections-2018,48.731676,https://www.kaggle.com/zusmani/predict-pakistan-elections-2018,5,1201,Data files © Original Authors,17,"Ready version: 15, 2018-07-30T07:32:41.157Z",0.7647059,fake news diff --git a/your-code/dataset_scraping.csv b/your-code/dataset_scraping.csv new file mode 100644 index 0000000..bc4c0fb --- /dev/null +++ b/your-code/dataset_scraping.csv @@ -0,0 +1,6801 @@ +name_model,owner,price,license,published_date,formats_available,list_categories,links_categories,list_tags,links_tags,description +3D Free Base Male Anatomy,niyoo," +Free +", - All Extended Uses,2019-07-21," + + +OBJ + +","['3D Model', 'characters', 'people', 'man']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man']","['characters', 'man', 'male', 'human', 'zbrush', 'ztl', 'obj', 'head', 'face', 'body', 'torso', 'people', 'free']","['https://www.turbosquid.com/Search/3D-Models/characters', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/ztl', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/face', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/torso', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/free']",Free model. You can use for base anatomy/proportion. ztl and obj files included. +3D model Minecraft Grass Block,Render at Night," +Free +", - Editorial Uses Only,2019-07-21," + + +OBJ + +","['3D Model', 'nature', 'plants', 'grasses', 'ornamental grass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/grasses', 'https://www.turbosquid.com/3d-model/ornamental-grass']","['minecraft', 'grass', 'block', 'cube']","['https://www.turbosquid.com/Search/3D-Models/minecraft', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/cube']", +Diving Helmet 3D model,NotJerd," +Free +", - All Extended Uses,2019-07-20," + + +OBJ + +","['3D Model', 'sports', 'outdoor sports', 'scuba', 'diving helmet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/outdoor-sports', 'https://www.turbosquid.com/3d-model/scuba', 'https://www.turbosquid.com/3d-model/diving-helmet']","['Helmet', 'Undersea']","['https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/undersea']",This is a helmet I made.CC0 License +3D Dominoes,Render at Night," +Free +", - All Extended Uses,2019-07-20," + + +OBJ + +","['3D Model', 'toys and games', 'games', 'dominos']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dominos']","['domino', 'dominoes', 'black', 'white', 'tile']","['https://www.turbosquid.com/Search/3D-Models/domino', 'https://www.turbosquid.com/Search/3D-Models/dominoes', 'https://www.turbosquid.com/Search/3D-Models/black', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/tile']","Models of 5 different dominoes.Polygons/Vertices (5 dominoes combined):- Low Poly: 5,324/5,398- High Poly: 85,696/85,706Available File variants:- BLEND (Modifiers not applied + Modifiers applied); Modifiers include Subdivison- OBJ (Low Poly + High Poly)*All photos were rendered in Blender with Cycles Render engine." +Prototyping Polygons 3D model,HyperChromatica," +Free +", - All Extended Uses,2019-07-20," + + +FBX 1.0 + +","['3D Model', 'symbols']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes']","['primitives', 'prototyping', 'blender', 'unity', 'geometric', 'simple']","['https://www.turbosquid.com/Search/3D-Models/primitives', 'https://www.turbosquid.com/Search/3D-Models/prototyping', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/geometric', 'https://www.turbosquid.com/Search/3D-Models/simple']","I was starting work on a new game in unity and needed placeholder objects, and found that there were no free packages on the unity asset store. After making some myself I decided to upload them to the Unity Asset Store, but as it turns out, there is a clause explicitly banning 3d primitives for prototyping . So I'm sharing them here." +3D counter and bar stools,ESalem," +Free +", - All Extended Uses,2019-07-20," + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'furnishings', 'cupboard', 'showcase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/cupboard', 'https://www.turbosquid.com/3d-model/showcase']","['counter', 'and', 'bar', 'stools', 'Are', 'same', 'specifications', 'as', 'the', 'real', 'Used', 'in', 'exhibitions', 'The', 'component', 'of', 'octanorm', 'system', 'The', 'wooden', 'materials']","['https://www.turbosquid.com/Search/3D-Models/counter', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/stools', 'https://www.turbosquid.com/Search/3D-Models/are', 'https://www.turbosquid.com/Search/3D-Models/same', 'https://www.turbosquid.com/Search/3D-Models/specifications', 'https://www.turbosquid.com/Search/3D-Models/as', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/real', 'https://www.turbosquid.com/Search/3D-Models/used', 'https://www.turbosquid.com/Search/3D-Models/in', 'https://www.turbosquid.com/Search/3D-Models/exhibitions', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/component', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/octanorm', 'https://www.turbosquid.com/Search/3D-Models/system', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/materials']",counter and bar stools Are the same specifications as the real materials Used in exhibitionsThe component of octanorm systemThe wooden materials are decorated in the same style as the real exhibits +3D model Cabin Shop,MarkoffIN," +Free +", - All Extended Uses,2019-07-20," + + +FBX + +","['3D Model', 'architecture', 'building', 'commercial building', 'restaurant', 'coffee shop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/restaurant-building', 'https://www.turbosquid.com/3d-model/coffee-shop']","['House', 'shop', 'store', 'stall', 'depot', 'trade', 'cabin.']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/store', 'https://www.turbosquid.com/Search/3D-Models/stall', 'https://www.turbosquid.com/Search/3D-Models/depot', 'https://www.turbosquid.com/Search/3D-Models/trade', 'https://www.turbosquid.com/Search/3D-Models/cabin.']",Small low poly shop cabin. +3D Viper sniper rifle,Young_Wizard," +Free +", - All Extended Uses,2019-07-20," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sniper rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/sniper-rifle']","['weapon', 'sci-fi', 'low-poly', 'game-ready', 'sniper-rifle', 'mass-effect']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/sci-fi', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/sniper-rifle', 'https://www.turbosquid.com/Search/3D-Models/mass-effect']","Game ready model, low poly can used as a game object or props object, all texture have 2 sets 4096x4096 and 2048x2048 ( normal, basecolor, metallic, roughness, AO) And same texture sets for unity ( normal, basecolor, metallic with roughness alpha, AO) Good work with unreal and unity. In .blend file 2.8 version all texture pack into this file and all texture set up for scene All texture pbr I model that model from concept of mass effect" +Atom model,Abdo Ashraf," +Free +", - All Extended Uses,2019-07-20,,"['3D Model', 'science', 'chemistry', 'atom']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/chemistry', 'https://www.turbosquid.com/3d-model/atom']","['atom', 'science', 'chemistry', 'chemical', 'scientific', 'nuclear', 'radiation', 'molecule', 'atomic', 'electron', 'nucleus', 'proton', 'neutron', 'models', 'various', 'orbit', 'other']","['https://www.turbosquid.com/Search/3D-Models/atom', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/chemistry', 'https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/scientific', 'https://www.turbosquid.com/Search/3D-Models/nuclear', 'https://www.turbosquid.com/Search/3D-Models/radiation', 'https://www.turbosquid.com/Search/3D-Models/molecule', 'https://www.turbosquid.com/Search/3D-Models/atomic', 'https://www.turbosquid.com/Search/3D-Models/electron', 'https://www.turbosquid.com/Search/3D-Models/nucleus', 'https://www.turbosquid.com/Search/3D-Models/proton', 'https://www.turbosquid.com/Search/3D-Models/neutron', 'https://www.turbosquid.com/Search/3D-Models/models', 'https://www.turbosquid.com/Search/3D-Models/various', 'https://www.turbosquid.com/Search/3D-Models/orbit', 'https://www.turbosquid.com/Search/3D-Models/other']","3D model for the atom. The whole project was made in Blender 3D. The renders and wireframe views in the photos of this product are with no Subdivision .. only smooth shading The Project has these formats: blend, fbx, obj, mtl" +3D Fan,Akumax Maxime," +Free +", - All Extended Uses,2019-07-19," + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'fan', 'box fan']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/fan', 'https://www.turbosquid.com/3d-model/box-fan']","['Fan', 'ventilateur']","['https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/ventilateur']",Vintage fan +Pouf Stool 3D model,folkvangr," +Free +", - All Extended Uses,2019-07-19,,[],[],"['leather', 'furniture', 'seat', 'decor', 'stool', 'other']","['https://www.turbosquid.com/Search/3D-Models/leather', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/other']","This model was created for an art challenge and employment program.Includes textures, PBR materials, HDRI lighting.Textures are from: texturehavenHDRI: hdrihaven" +Indoor test 3D model,folkvangr," +Free +", - All Extended Uses,2019-07-19,,[],[],"['indoors', 'room', 'furniture', 'seat', 'wood', 'chair', 'minimalist', 'comfort', 'contemporary', 'rig', 'architectural', 'other']","['https://www.turbosquid.com/Search/3D-Models/indoors', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/minimalist', 'https://www.turbosquid.com/Search/3D-Models/comfort', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/rig', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/other']","Indoors test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects and a rigged/animated character.Textures are from: texturehavenHDRI: hdrihaven" +3D model Apartment basic floor plan,folkvangr," +Free +", - All Extended Uses,2019-07-19,,[],[],"['flat', 'apartment', 'household', 'building', 'kitchen', 'bathroom', 'bedroom', 'living-room', 'floor', 'window']","['https://www.turbosquid.com/Search/3D-Models/flat', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/bathroom', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/living-room', 'https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/window']","This is a simple architecture test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects, unique glass material.Textures are from: texturehavenHDRI: hdrihaven" +3D Coffee Cup,OemThr," +Free +", - All Extended Uses,2019-07-19," + + +OBJ + + + + +FBX + + + + +Collada + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['coffee', 'dinner', 'breakfast', 'cup', 'plate', 'porcelain', 'bavaria', 'tea', 'home', 'furniture', 'furnishing', 'pot', 'ceramic', 'milk']","['https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/dinner', 'https://www.turbosquid.com/Search/3D-Models/breakfast', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/porcelain', 'https://www.turbosquid.com/Search/3D-Models/bavaria', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/furnishing', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/ceramic', 'https://www.turbosquid.com/Search/3D-Models/milk']",- Ceramic coffee cup with plate -This model consists of a high-detailed ceramic coffee cup with plate.Blender zip (.blend):- Version v2.80.74- 1 complete scene- Cycles render versionObj zip:- Object with simple materials- Subdivision (exported at Level 3)Collada zip:- Object with simple materials- No subdivision (exported at Level 0)Fbx zip:- Object with simple materials- Subdivision (exported at Level 3) +Man HeadSculpt 3D model,Vertici," +Free +", - All Extended Uses,2019-07-19,,[],[],"['Head', 'man', 'male', 'human']","['https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/human']",Just a sculpting/texturing practice I did. +blue low poly car model,Andres_R26," +Free +", - All Extended Uses,2019-07-19," + + +Other + +",[],[],"['low', 'poly', 'car', 'blue']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/blue']","free 3d obj and Maya please give me. feedback, was made with a lot of love" +Bath house architecture test 3D model,folkvangr," +Free +", - All Extended Uses,2019-07-18,,[],[],"['column', 'architecture', 'marble', 'bedrock', 'roman', 'bath', 'classic', 'architectural', 'other']","['https://www.turbosquid.com/Search/3D-Models/column', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/marble', 'https://www.turbosquid.com/Search/3D-Models/bedrock', 'https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/bath', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/other']","This is a simple architecture test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects, physics affected grass and fluid simulation.Textures are from: texturehavenHDRI: hdrihaven" +Motorola Moto G7 Plus Blue And Red 3D model,ES_3D," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-18," + + +3D Studio 2011 + + + + +FBX 2011 + + + + +OBJ 2011 + + + + +VRML 2011 + +","['3D Model', 'technology', 'phone', 'cellphone', 'smartphone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/phone', 'https://www.turbosquid.com/3d-model/cellphone', 'https://www.turbosquid.com/3d-model/smartphone']","['3d', 'model', '3ds', 'max', 'Motorola', 'Moto', 'G7', 'Plus', 'Blue', 'And', 'Red', 'electronic', 'phone', 'cellular', 'computer', 'pda', 'andriod', 'best', 'top', 'rated', 'vray', 'hdr', 'studio', 'download', 'ES_3D']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/motorola', 'https://www.turbosquid.com/Search/3D-Models/moto', 'https://www.turbosquid.com/Search/3D-Models/g7', 'https://www.turbosquid.com/Search/3D-Models/plus', 'https://www.turbosquid.com/Search/3D-Models/blue', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/red', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/phone', 'https://www.turbosquid.com/Search/3D-Models/cellular', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pda', 'https://www.turbosquid.com/Search/3D-Models/andriod', 'https://www.turbosquid.com/Search/3D-Models/best', 'https://www.turbosquid.com/Search/3D-Models/top', 'https://www.turbosquid.com/Search/3D-Models/rated', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/hdr', 'https://www.turbosquid.com/Search/3D-Models/studio', 'https://www.turbosquid.com/Search/3D-Models/download', 'https://www.turbosquid.com/Search/3D-Models/es_3d']","Detailed High definition model Xiaomi Redmi 7A Matte Gold.The main format is 3ds max 2011.max, also available in many formats.And click on my username ES_3D And See More Quality Models And Collections .Available in the following file formats:- 3ds Max with mental ray materials (.max)- 3ds Max with V-Ray materials (.max)- 3ds Max with Scanline materials (.max)- 3D Studio (.3ds)- FBX (.fbx)- Geometry: 3ds Max version (For Each)- In formats 3ds Max 2011 , 3ds , OBJ, FBX , VMRL , Mental ray, Default Scanline Renderer, - model exported to standard materials (textures), not contain V-Ray shaders.In these formats, shaders need to be edited for the new studio for the final rendering.- High quality textures,and high resolution renders.- fbx formats contains medium high-poly.- 3ds and obj format comes from low poly.- Every part of the model is named properly- Model is placed to 0,0,0 scene coordinates.- 3ds Max 2011 and all higher versions.- all textures included separately for all formats into each zipped folder.- Other formats may vary slightly depending on your software.- You can make the poly count higher by the MeshSmooth and TurboSmooth level.- Includes V-Ray materials and textures only in 3ds Max format.- A file without V-Ray shader is included with standard materials.- The .3ds and .obj formats are geometry with texture mapping coordinates. No materials attached.- Textures format JPEG.- No object missing,- 3ds Max files included Standard materials and V-Ray materials.- This 3d model objects have the correct names and stripped the texture paths.- NOTE: V-Ray is required for the V-Ray 3ds Max scene and Studio setup is not included.- I hope you will like all my products. Thanks for buying." +3D Lighting,w1050263," +Free +", - All Extended Uses,2019-07-18," + + +3D Studio + + + + +OBJ + + + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'home spotlight']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/spotlight-home']","['#lighting', '#light', 'bulb', '#firelight']","['https://www.turbosquid.com/Search/3D-Models/%23lighting', 'https://www.turbosquid.com/Search/3D-Models/%23light', 'https://www.turbosquid.com/Search/3D-Models/bulb', 'https://www.turbosquid.com/Search/3D-Models/%23firelight']", +office chair 3D,Esraa abdelsalam2711," +Free +", - All Extended Uses,2019-07-17," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'seating', 'chair', 'office chair', 'conference room chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/office-chair', 'https://www.turbosquid.com/3d-model/conference-room-chair']","['#chair', '#office', '#modern', '#3dsmax', '#3dmodeling', '#blue', '#smooth', '#lowvertices', '#render', '#vray', '#vraymtl', '#light']","['https://www.turbosquid.com/Search/3D-Models/%23chair', 'https://www.turbosquid.com/Search/3D-Models/%23office', 'https://www.turbosquid.com/Search/3D-Models/%23modern', 'https://www.turbosquid.com/Search/3D-Models/%233dsmax', 'https://www.turbosquid.com/Search/3D-Models/%233dmodeling', 'https://www.turbosquid.com/Search/3D-Models/%23blue', 'https://www.turbosquid.com/Search/3D-Models/%23smooth', 'https://www.turbosquid.com/Search/3D-Models/%23lowvertices', 'https://www.turbosquid.com/Search/3D-Models/%23render', 'https://www.turbosquid.com/Search/3D-Models/%23vray', 'https://www.turbosquid.com/Search/3D-Models/%23vraymtl', 'https://www.turbosquid.com/Search/3D-Models/%23light']","**office chair** with vray material ready to put in scene , with vray materials ready to render in the scene and with vray light polygons almost equal 344vertices almost equal 286" +3D model Free garden urn planter,wave design," +Free +", - All Extended Uses,2019-07-17," + + +OBJ + + + + +FBX + + + + +Collada + +","['3D Model', 'interior design', 'housewares', 'general decor', 'planter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/planter']","['Urn', 'Planter', 'Vase', 'Garden', 'pot', 'decor', 'Decoration', 'plant', 'Classic', 'Marble', 'concrete', 'grunge', 'Vintage', 'Antique', 'Outdoor']","['https://www.turbosquid.com/Search/3D-Models/urn', 'https://www.turbosquid.com/Search/3D-Models/planter', 'https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/marble', 'https://www.turbosquid.com/Search/3D-Models/concrete', 'https://www.turbosquid.com/Search/3D-Models/grunge', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/outdoor']","* This Urn is a high quality polygonal model with reel scale and placed in the center. It's suitable for high-quality close-up renders.* The model and the textures are properly named.* The model is correctly uv unwrapped with well hidden seams fully textured and properly named.* Three textures are included marble, concrete and grunge in png format.* Each texture is associate with a color, roughness and normal map in 4096 resolution.* The model is made with blender and rendered in eevee.* The model is ready for import into any project and ready to render as seen in previews.* No special plugin needed to open scene.Product dimensions:Height: 30cm Width: 32.7cm Length: 37.5cm File Formats:- blender- OBJ- FBX- COLLADA-Feel free to browse my other models by clicking on my user name.I hope it meets your expectations." +3D model Table,shara_d," +Free +", - All Extended Uses,2019-07-14," + + +FBX + + + + +Collada + + + + +OBJ + +","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['Table', 'Home', 'Decor', 'Kitchen', 'TableLegs', 'Unwrapped']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/tablelegs', 'https://www.turbosquid.com/Search/3D-Models/unwrapped']","OBJ, FBX, DAE files of an unwrapped 3D object with materials already on it. Feel free to change the material to whatever you like." +3D Metal Containers,Adrian Kulawik," +Free +", - All Extended Uses,2019-07-17," + + +OBJ 2019 + +","['3D Model', 'industrial', 'industrial container', 'cargo container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/cargo-container']","['metal', 'container', 'mars', 'kitbash', 'modular', 'procedural', 'art', 'design', 'pbr', 'materials', '3d', 'lightwave', '3ds', 'max', 'blender', 'modo', 'maya', 'arch', 'viz', 'game', 'ready', '4k', 'uv']","['https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/mars', 'https://www.turbosquid.com/Search/3D-Models/kitbash', 'https://www.turbosquid.com/Search/3D-Models/modular', 'https://www.turbosquid.com/Search/3D-Models/procedural', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/materials', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/lightwave', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/modo', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/arch', 'https://www.turbosquid.com/Search/3D-Models/viz', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/uv']",Metal Containers3D Model Ready for Games. PBR Materials.Textures in 4KUV Map.Formats:3Ds MaxLightWaveBlenderObj+MtlBest Regards.Adrian +3D coffee machine,w1050263," +Free +", - All Extended Uses,2019-07-17," + + +OBJ + + + + +3D Studio + + + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'appliance', 'commercial appliance', 'vending machine', 'coffee vending machine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/commercial-appliance', 'https://www.turbosquid.com/3d-model/vending-machine', 'https://www.turbosquid.com/3d-model/coffee-vending-machine']","['#coffee', '#machine', '#vending', 'machine']","['https://www.turbosquid.com/Search/3D-Models/%23coffee', 'https://www.turbosquid.com/Search/3D-Models/%23machine', 'https://www.turbosquid.com/Search/3D-Models/%23vending', 'https://www.turbosquid.com/Search/3D-Models/machine']","Saved as 3ds max 2015 version file.As you work in 3D, the input image source and HDRI are attached as additional files.I used a v-ray renderer.Thank you for your interest. thank you.-------------------------------------------------- -------------* coffee machine 2015.max (3ds max)* coffee machine.3DS* coffee machine.obj* coffee machine.fbx* source (image and HDRI folder) .zip" +3D sink,w1050263," +Free +", - All Extended Uses,2019-07-17," + + +3D Studio + + + + +OBJ + + + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'sink', 'kitchen sink']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/sink', 'https://www.turbosquid.com/3d-model/kitchen-sink']","['#sink', '#Kitchen', '#tap', '#faucet', '#bibcock']","['https://www.turbosquid.com/Search/3D-Models/%23sink', 'https://www.turbosquid.com/Search/3D-Models/%23kitchen', 'https://www.turbosquid.com/Search/3D-Models/%23tap', 'https://www.turbosquid.com/Search/3D-Models/%23faucet', 'https://www.turbosquid.com/Search/3D-Models/%23bibcock']",#sink #Kitchen #tap #faucet #bibcock +3D model building 002,vini3dmodels," +Free +", - All Extended Uses,2019-07-15," + + +FBX 2016 + + + + +OBJ 2016 + + + + +Other 2016 + +","['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']","['architecture', 'house', 'home', 'building', 'suburb', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/suburb', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","This is a simple house model. Except for the curtains, it was made with very few polygons and textures. It might have some tris in the topology, but almost all of the polygons are quads.The .obj and .mtl files were exported from 3dsmax-scanline with Cinema 4D presets.The .fbx file are ready to import in Unreal Engine, unless you want to make some aditional configuration in the export settings, such as checking the 'preserve edge orientation' etc.Please, rate my model! This is the only way I can know if I'm doing a great work." +table 3D model,w1050263," +Free +", - All Extended Uses,2019-07-15," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['table', 'Kitchen', 'cooktable', 'Breakfast', 'Lunch', 'Dinner']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/cooktable', 'https://www.turbosquid.com/Search/3D-Models/breakfast', 'https://www.turbosquid.com/Search/3D-Models/lunch', 'https://www.turbosquid.com/Search/3D-Models/dinner']","* Saved as 3ds max 2015 version file.Nowadays, it is difficult for a family to gather at the table to eat. My childhood past with my parents is like a new one.As you work in 3D, the input image source and HDRI are attached as additional files.I used a v-ray renderer.Thank you for your interest. thank you.-------------------------------------------------- -------------* table 2015.max (3ds max)* table.3DS* table.obj* table.fbx* table.mtl* source (image and HDRI folder) .zip" +3D CPU case fan,DevmanModels," +Free +", - All Extended Uses,2019-07-14," + + +Other + +","['3D Model', 'technology', 'computer equipment', 'computer components', 'cpu cooler']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-components', 'https://www.turbosquid.com/3d-model/cpu-cooler']","['3d', 'cpu', 'fan', 'Fan', 'Cooler', 'fan', 'Cpu', 'cooler']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/cpu', 'https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/cooler', 'https://www.turbosquid.com/Search/3D-Models/fan', 'https://www.turbosquid.com/Search/3D-Models/cpu', 'https://www.turbosquid.com/Search/3D-Models/cooler']",A CPU fan.Low poly and mid poly includedBlend file and obj file availableThumbnails also includedCompletely free for any use! +3D Canister,MarkoffIN," +Free +", - All Extended Uses,2019-07-13," + + +FBX + +","['3D Model', 'industrial', 'industrial container', 'fuel container', 'oil can']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/fuel-container', 'https://www.turbosquid.com/3d-model/oil-can']","['Canister', 'vessel', 'vial', 'container', 'fuel', 'green']","['https://www.turbosquid.com/Search/3D-Models/canister', 'https://www.turbosquid.com/Search/3D-Models/vessel', 'https://www.turbosquid.com/Search/3D-Models/vial', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/fuel', 'https://www.turbosquid.com/Search/3D-Models/green']",Low poly fuel canister. +3D Road Spikes,MarkoffIN," +Free +", - All Extended Uses,2019-07-13," + + +FBX + +","['3D Model', 'architecture', 'urban design', 'street elements', 'traffic barrier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/traffic-barrier']","['Spikes', 'Road', 'Obstacle', 'Hazard']","['https://www.turbosquid.com/Search/3D-Models/spikes', 'https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/obstacle', 'https://www.turbosquid.com/Search/3D-Models/hazard']",Low poly road obstacle with texture. +Chair 3D model,ferhatkose," +Free +", - Editorial Uses Only,2019-07-12,,"['3D Model', 'furnishings', 'seating', 'chair', 'office chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/office-chair']",['Chair'],['https://www.turbosquid.com/Search/3D-Models/chair'],Models:ChairFormats:max +3D Chemical Bottle,filburn," +Free +", - All Extended Uses,2019-07-12," + + +FBX + + + + +OBJ + + + + +STL + + + + +3D Studio + + + + +Windows Bitmap + +","['3D Model', 'food and drink', 'food container', 'bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food-container', 'https://www.turbosquid.com/3d-model/bottle']","['chemical', 'bottle', 'glass', 'hazard', 'label', 'lab', 'chemistry', 'liquid', 'pH', 'acid', 'container', 'science', 'flask', 'petri', 'dish']","['https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/hazard', 'https://www.turbosquid.com/Search/3D-Models/label', 'https://www.turbosquid.com/Search/3D-Models/lab', 'https://www.turbosquid.com/Search/3D-Models/chemistry', 'https://www.turbosquid.com/Search/3D-Models/liquid', 'https://www.turbosquid.com/Search/3D-Models/ph', 'https://www.turbosquid.com/Search/3D-Models/acid', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/flask', 'https://www.turbosquid.com/Search/3D-Models/petri', 'https://www.turbosquid.com/Search/3D-Models/dish']","Chemical bottle with generic hazards label. Used in lab environments or science experiment kits. Normally found in an industrial setting but could also be in a high school lab, college lab or even a meth lab." +Galaxy Plate Set model,MikaelaDWilliams," +Free +", - All Extended Uses,2019-07-12," + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'tableware', 'bowl']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/tableware', 'https://www.turbosquid.com/3d-model/bowl']","['Plates', 'Galaxy', 'Dinner', 'Food', 'Tableware']","['https://www.turbosquid.com/Search/3D-Models/plates', 'https://www.turbosquid.com/Search/3D-Models/galaxy', 'https://www.turbosquid.com/Search/3D-Models/dinner', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/tableware']",A simple plate and cup set decorated with gold trim and a glossy galaxy finish. +3D model japanese bridge,nahidhassan881," +Free +", - All Extended Uses,2019-07-12,,"['3D Model', 'architecture', 'urban design', 'infrastructure', 'bridge']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/infrastructure', 'https://www.turbosquid.com/3d-model/bridge']","['bridge', 'city', 'fantasy', 'future', 'highway']","['https://www.turbosquid.com/Search/3D-Models/bridge', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/highway']",this a japanese future bridge. because of my poor english i can't write description +3D Night sky,nahidhassan881," +Free +", - All Extended Uses,2019-07-12,,"['3D Model', 'nature', 'weather and atmosphere', 'sky']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/weather-and-atmosphere', 'https://www.turbosquid.com/3d-model/sky']","['environment', 'night', 'sky', 'cloud', 'Beautiful', 'Bridge']","['https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/night', 'https://www.turbosquid.com/Search/3D-Models/sky', 'https://www.turbosquid.com/Search/3D-Models/cloud', 'https://www.turbosquid.com/Search/3D-Models/beautiful', 'https://www.turbosquid.com/Search/3D-Models/bridge']",this is a sky environment . that come's with lot's of good staff +3D SpillFyter,filburn," +Free +", - Editorial Uses Only,2019-07-12," + + +FBX + + + + +OBJ + + + + +STL + + + + +3D Studio + + + + +Windows Bitmap + +","['3D Model', 'science', 'lab equipment', 'ph meter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/lab-equipment', 'https://www.turbosquid.com/3d-model/ph-meter']","['ph', 'science', 'experiment', 'lab', 'chemical', 'test', 'Litmus', 'hydrion', 'paper', 'strips', 'universal', 'indicator', 'potential', 'hydrogen', 'acid', 'hazmat', 'liquid', 'flouride', 'organic', 'solvent']","['https://www.turbosquid.com/Search/3D-Models/ph', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/experiment', 'https://www.turbosquid.com/Search/3D-Models/lab', 'https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/test', 'https://www.turbosquid.com/Search/3D-Models/litmus', 'https://www.turbosquid.com/Search/3D-Models/hydrion', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/strips', 'https://www.turbosquid.com/Search/3D-Models/universal', 'https://www.turbosquid.com/Search/3D-Models/indicator', 'https://www.turbosquid.com/Search/3D-Models/potential', 'https://www.turbosquid.com/Search/3D-Models/hydrogen', 'https://www.turbosquid.com/Search/3D-Models/acid', 'https://www.turbosquid.com/Search/3D-Models/hazmat', 'https://www.turbosquid.com/Search/3D-Models/liquid', 'https://www.turbosquid.com/Search/3D-Models/flouride', 'https://www.turbosquid.com/Search/3D-Models/organic', 'https://www.turbosquid.com/Search/3D-Models/solvent']",SpillFyter chemical test strips which is used in lab experiments to detect the acidity or alkalinity of a liquid as well as other information regarding a liquids chemical composition. Commonly used in any lab environment and can also be found in Hazmat safety kits. It may also be found in a nurses station in the event of an unintentional chemical exposure. +3D Umbridge,AzDm," +Free +", - Editorial Uses Only,2019-07-12," + + +FBX 2016 + +","['3D Model', 'characters', 'people', 'woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman']","['female', 'woman', 'umbridge', 'human']","['https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/umbridge', 'https://www.turbosquid.com/Search/3D-Models/human']",Umbrdige model +Traffic Light 3D model,w1050263," +Free +", - All Extended Uses,2019-07-11," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'architecture', 'urban design', 'street elements', 'stop light']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/traffic-light']","['#Traffic', 'Light', '#road', '#crosswalk', '#Red', '#Green', '#Electric', 'pole', '#city', '#signal', '#method', '#rule', '#Street', 'lamp']","['https://www.turbosquid.com/Search/3D-Models/%23traffic', 'https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/%23road', 'https://www.turbosquid.com/Search/3D-Models/%23crosswalk', 'https://www.turbosquid.com/Search/3D-Models/%23red', 'https://www.turbosquid.com/Search/3D-Models/%23green', 'https://www.turbosquid.com/Search/3D-Models/%23electric', 'https://www.turbosquid.com/Search/3D-Models/pole', 'https://www.turbosquid.com/Search/3D-Models/%23city', 'https://www.turbosquid.com/Search/3D-Models/%23signal', 'https://www.turbosquid.com/Search/3D-Models/%23method', 'https://www.turbosquid.com/Search/3D-Models/%23rule', 'https://www.turbosquid.com/Search/3D-Models/%23street', 'https://www.turbosquid.com/Search/3D-Models/lamp']",* Saved as 3ds max 2015 version file.It is a signal that we must obey while living the world. Traffic lights are a common sight when you walk the road or walk through the city.The image source and HDRI that I enter while working in 3D are attached as additional files.I used a v-ray renderer.Note The scanline version is not ready for rendering.Thank you for your interest. Thank you.--------------------------------------*Traffic Light 2015.max (3ds max)*Traffic Light.3DS*Traffic Light.OBJ*Traffic Light.FBX*Traffic Light_Image source (and HDRI folder).zip +3D model Barrier,MarkoffIN," +Free +", - All Extended Uses,2019-07-11," + + +FBX + +","['3D Model', 'architecture', 'urban design', 'street elements', 'crowd barrier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/crowd-barrier']","['Barrier', 'obstacle', 'hurdle', 'roadblock', 'bar', 'division', 'divider', 'fence', 'rail', 'striped', 'railing', 'obstruction', 'white', 'and', 'red.']","['https://www.turbosquid.com/Search/3D-Models/barrier', 'https://www.turbosquid.com/Search/3D-Models/obstacle', 'https://www.turbosquid.com/Search/3D-Models/hurdle', 'https://www.turbosquid.com/Search/3D-Models/roadblock', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/division', 'https://www.turbosquid.com/Search/3D-Models/divider', 'https://www.turbosquid.com/Search/3D-Models/fence', 'https://www.turbosquid.com/Search/3D-Models/rail', 'https://www.turbosquid.com/Search/3D-Models/striped', 'https://www.turbosquid.com/Search/3D-Models/railing', 'https://www.turbosquid.com/Search/3D-Models/obstruction', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/red.']",A simple white and red low poly barrier with texture. +3D [Animated]Lowpoly Trash Can model,wehbn," +Free +", - All Extended Uses,2019-07-11," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'industrial', 'industrial container', 'garbage container', 'dustbin', 'pedal trash bin']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/garbage-container', 'https://www.turbosquid.com/3d-model/dustbin', 'https://www.turbosquid.com/3d-model/pedal-trash-bin']","['trash', 'can', 'trashcan']","['https://www.turbosquid.com/Search/3D-Models/trash', 'https://www.turbosquid.com/Search/3D-Models/can', 'https://www.turbosquid.com/Search/3D-Models/trashcan']",- SPECS -Total Polygons: 1116Total Vertices: 637 +Kitchen Sink 3D model,Ukkka," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-11,,"['3D Model', 'interior design', 'fixtures', 'sink', 'kitchen sink']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/sink', 'https://www.turbosquid.com/3d-model/kitchen-sink']","['kitchen', 'sink', 'blanco', 'metra', '6s', 'compact', 'mixer', 'mida', 'household', 'kitchenware']","['https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/sink', 'https://www.turbosquid.com/Search/3D-Models/blanco', 'https://www.turbosquid.com/Search/3D-Models/metra', 'https://www.turbosquid.com/Search/3D-Models/6s', 'https://www.turbosquid.com/Search/3D-Models/compact', 'https://www.turbosquid.com/Search/3D-Models/mixer', 'https://www.turbosquid.com/Search/3D-Models/mida', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/kitchenware']",Kitchen sink Blanco Metra 6S Compact with mixer Blanco Mida from a cast stone (artificial granite) with the mixer Blanco MidaAll 9 colors. Sink size (WxDxH) 720x500x190 mm Mixer size (WxDxH) 50x190x320 mm Renderers VRay and Corona +3D School assets,Mr.Jarst," +Free +", - All Extended Uses,2019-07-11," + + +FBX + +","['3D Model', 'vehicles', 'bus', 'school bus']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/bus', 'https://www.turbosquid.com/3d-model/school-bus']","['Cinema', '4', 'd', 'Aset', 'a', 'laptop', '3d', 'school', 'desk', 'projector', 'board', 'book', 'shelving']","['https://www.turbosquid.com/Search/3D-Models/cinema', 'https://www.turbosquid.com/Search/3D-Models/4', 'https://www.turbosquid.com/Search/3D-Models/d', 'https://www.turbosquid.com/Search/3D-Models/aset', 'https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/school', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/projector', 'https://www.turbosquid.com/Search/3D-Models/board', 'https://www.turbosquid.com/Search/3D-Models/book', 'https://www.turbosquid.com/Search/3D-Models/shelving']","School assets includeSchool bus, fifteen books, bookshelf, school desk, teachers desk, teachers desk, projector board, projector, monitor, desk for chemistry classroom, schoolchildren of five colors, starter with first-aid kit, ordinary cabinet, columnar with glass, column, mat , keyboard, system unit, bookcase, blinds, window wall, wall, wall with door, wall with large door, food tray, dining table, showcase." +pH Test Strips 3D model,filburn," +Free +", - Editorial Uses Only,2019-07-09," + + +OBJ + + + + +FBX + + + + +3D Studio + + + + +Windows Bitmap + +","['3D Model', 'science', 'lab equipment', 'ph meter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/lab-equipment', 'https://www.turbosquid.com/3d-model/ph-meter']","['ph', 'science', 'experiment', 'lab', 'chemical', 'test', 'Litmus', 'hydrion', 'paper', 'strips', 'universal', 'indicator', 'mcolorphast', 'potential', 'hydrogen']","['https://www.turbosquid.com/Search/3D-Models/ph', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/experiment', 'https://www.turbosquid.com/Search/3D-Models/lab', 'https://www.turbosquid.com/Search/3D-Models/chemical', 'https://www.turbosquid.com/Search/3D-Models/test', 'https://www.turbosquid.com/Search/3D-Models/litmus', 'https://www.turbosquid.com/Search/3D-Models/hydrion', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/strips', 'https://www.turbosquid.com/Search/3D-Models/universal', 'https://www.turbosquid.com/Search/3D-Models/indicator', 'https://www.turbosquid.com/Search/3D-Models/mcolorphast', 'https://www.turbosquid.com/Search/3D-Models/potential', 'https://www.turbosquid.com/Search/3D-Models/hydrogen']",Litmus paper (or pH strips) which is used in lab experiments to detect the acidity or alkalinity of a liquid. Commonly used in any lab environment and can also be found in safety kits. It may also be found in a nurses station in the event of an unintentional exposure. +Audio connectors model,evilvoland," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-09," + + +Collada + + + + +FBX + + + + +OBJ + +","['3D Model', 'technology', 'electrical accessories', 'a/v connector', 'rca jack']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/electrical-accessories', 'https://www.turbosquid.com/3d-model/av-connector', 'https://www.turbosquid.com/3d-model/rca-jack']","['audio', 'jack', 'guitar', 'stereo', 'mono', 'connector', 'cable', 'chrome', 'TRS', 'mini-jack', 'input', 'output', 'adapter', 'plug', 'music', 'signal', 'interface', 'electronic', 'rca', 'RF']","['https://www.turbosquid.com/Search/3D-Models/audio', 'https://www.turbosquid.com/Search/3D-Models/jack', 'https://www.turbosquid.com/Search/3D-Models/guitar', 'https://www.turbosquid.com/Search/3D-Models/stereo', 'https://www.turbosquid.com/Search/3D-Models/mono', 'https://www.turbosquid.com/Search/3D-Models/connector', 'https://www.turbosquid.com/Search/3D-Models/cable', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/trs', 'https://www.turbosquid.com/Search/3D-Models/mini-jack', 'https://www.turbosquid.com/Search/3D-Models/input', 'https://www.turbosquid.com/Search/3D-Models/output', 'https://www.turbosquid.com/Search/3D-Models/adapter', 'https://www.turbosquid.com/Search/3D-Models/plug', 'https://www.turbosquid.com/Search/3D-Models/music', 'https://www.turbosquid.com/Search/3D-Models/signal', 'https://www.turbosquid.com/Search/3D-Models/interface', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/rca', 'https://www.turbosquid.com/Search/3D-Models/rf']","Big Jack (6,35mm), Mini Jack (3,5mm) and RCA connectors.Models have real size dimensions.Models do not have textures. Blend file contains simple materials.In the Blend file, cables are made of curves and can change bends.Polygons: 22430Vertices: 20558" +Game of thrones helmet 3D model,Waleed_K3452," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-09," + + +OBJ + + + + +Other + +","['3D Model', 'weaponry', 'armour', 'helmet', 'military helmet', 'combat helmet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/helmet', 'https://www.turbosquid.com/3d-model/military-helmet', 'https://www.turbosquid.com/3d-model/combat-helmet']","['game', 'of', 'thrones', 'helmet', 'history', 'head', 'metal', 'war', 'armor', 'weapon', 'shield']","['https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/thrones', 'https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/history', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/shield']","Game of thrones helmetformats : .obj , .ma Textures : Arnold Texture images , 2D texture image" +3D LowPoly trees,Nellecter," +Free +", - All Extended Uses,2019-07-09," + + +OBJ + + + + +Other + +","['3D Model', 'nature', 'tree', 'fantasy tree', 'cartoon tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/fantasy-tree', 'https://www.turbosquid.com/3d-model/cartoon-tree']","['tree', 'trees', 'plant', 'plants', 'nature', 'green', 'albero', 'alberi', 'natura', 'verde']","['https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/trees', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/plants', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/albero', 'https://www.turbosquid.com/Search/3D-Models/alberi', 'https://www.turbosquid.com/Search/3D-Models/natura', 'https://www.turbosquid.com/Search/3D-Models/verde']","Another small Low Poly assets I've created.You can use it to create beautiful low poly environment,Enjoy and please remember to rate it and leave a review.Thank you" +Low Poly Sword 08 model,akifotti," +Free +", - All Extended Uses,2019-07-08," + + +FBX 1.0 + + + + +Other 1.0 + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'fantasy sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/fantasy-sword']","['lowpoly', 'fantasy', 'medieval', 'sword', 'low', 'poly']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly']",Fantasy low poly sword! Mobile and game ready. +3D Stalagmites,wernie," +Free +", - All Extended Uses,2019-07-08," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'nature', 'landscapes', 'terrain', 'cave', 'stalagmite']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/ground', 'https://www.turbosquid.com/3d-model/cave', 'https://www.turbosquid.com/3d-model/stalagmite']","['Rock', 'Lava', 'Desert', 'Cave', 'Stalagmite', 'Environment']","['https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/lava', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/cave', 'https://www.turbosquid.com/Search/3D-Models/stalagmite', 'https://www.turbosquid.com/Search/3D-Models/environment']","Another model I made a long time ago in Sculptris. I lost the original textures, but I have included some 2048x2048 jpeg textures in 4 color options. Hope you find it useful.;P" +Thermometer model,epicentre," +Free +", - All Extended Uses,2019-07-08," + + +OBJ + + + + +FBX + + + + +Other + +","['3D Model', 'science', 'medicine', 'medical equipment', 'medical instruments', 'thermometer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/medicine-and-science', 'https://www.turbosquid.com/3d-model/medical-equipment', 'https://www.turbosquid.com/3d-model/medical-instruments', 'https://www.turbosquid.com/3d-model/thermometer']","['Thermometer', 'temperature', 'degree', 'heat', 'cold', 'celsius', 'scale', 'domestic', 'indoor', 'outdoor', 'glass', 'sauna']","['https://www.turbosquid.com/Search/3D-Models/thermometer', 'https://www.turbosquid.com/Search/3D-Models/temperature', 'https://www.turbosquid.com/Search/3D-Models/degree', 'https://www.turbosquid.com/Search/3D-Models/heat', 'https://www.turbosquid.com/Search/3D-Models/cold', 'https://www.turbosquid.com/Search/3D-Models/celsius', 'https://www.turbosquid.com/Search/3D-Models/scale', 'https://www.turbosquid.com/Search/3D-Models/domestic', 'https://www.turbosquid.com/Search/3D-Models/indoor', 'https://www.turbosquid.com/Search/3D-Models/outdoor', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/sauna']",Simple textured thermometer. Use it for free. Please rate it 5 if you dowload. +3D Rock model,4Engine," +Free +", - All Extended Uses,2019-07-08," + + +3D Studio + + + + +Other + + + + +FBX + + + + +OBJ + +","['3D Model', 'nature', 'landscapes', 'mineral', 'rock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/mineral', 'https://www.turbosquid.com/3d-model/rock']","['rock', 'nature', 'low-poly', 'game-ready', 'environment', 'stone', 'exterior', 'outdoors', 'realistic', 'mountain', 'cliff', 'landscape', 'ground', 'tileable']","['https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/outdoors', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/mountain', 'https://www.turbosquid.com/Search/3D-Models/cliff', 'https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/tileable']","Low poly model of the surface of the rock for the game engine. - Polycount (tris):Rock - 116,Rock-LOD1 - 58,Rock-LOD2 - 2. - Textures(.jpg, 4096x4096): Diffuse,Normal,Specular.The model was created in the program Blender 2.79. Native files are in archive BLEND. Also in the corresponding archives there are files for import: 3DS, FBX, OBJ. Textures can be found in archives TEXTURES and BONUS (additional textures that can be useful to someone in the work)." +Plant model,georgeg3g3g3," +Free +", - All Extended Uses,2019-07-07," + + +FBX + +","['3D Model', 'nature', 'plants']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants']","['Plant', 'flower', 'pot', 'leaves', 'leaf']","['https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/leaves', 'https://www.turbosquid.com/Search/3D-Models/leaf']",Modeled and textured in Blender 3D 2.8This plant is created and textured with realistic images.I hope you like it. +Defend Tower model,BekirFreelan," +Free +", - All Extended Uses,2019-07-07," + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'building', 'skyscraper', 'tower']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/skyscraper', 'https://www.turbosquid.com/3d-model/tower']","['model', 'free', '3d', 'game', 'asset', 'download', 'building']","['https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/download', 'https://www.turbosquid.com/Search/3D-Models/building']","Verts 16,805Faces 16,316Uv MappedNon Textures" +Simple Bar Stool 3D model,winzmuc," +Free +", - All Extended Uses,2019-07-07," + + +3D Studio + + + + +Collada 1.5 + + + + +DXF + + + + +FBX 7.3 + + + + +OBJ + + + + +STL + + + + +VRML 2 + +","['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool', 'https://www.turbosquid.com/3d-model/bar-stool']","['Bar', 'stool', 'barstool', 'wood', 'metal', 'leather', 'interior', 'restaurant', 'simple', 'legs', 'bars', 'seat', 'club']","['https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/barstool', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/leather', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/legs', 'https://www.turbosquid.com/Search/3D-Models/bars', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/club']",Just a simple bar stool LOW POLYFile is for Cinema4D but of course can be used in any other 3D software as well.Exchange files and a wood texture (Teak wood) for the legs are included. +Mars 3D Globe 1 3D,Kessler_Protus," +Free +", - All Extended Uses,2019-07-07,,"['3D Model', 'science', 'astronomy', 'planets', 'mars']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/astronomy', 'https://www.turbosquid.com/3d-model/planets', 'https://www.turbosquid.com/3d-model/mars']","['globe', 'tutorial', 'Mars', '3DGlobe', 'planet', 'blend', 'lowpoly', 'cartography', 'astrography', 'furniture', 'geography', 'map', 'mapping']","['https://www.turbosquid.com/Search/3D-Models/globe', 'https://www.turbosquid.com/Search/3D-Models/tutorial', 'https://www.turbosquid.com/Search/3D-Models/mars', 'https://www.turbosquid.com/Search/3D-Models/3dglobe', 'https://www.turbosquid.com/Search/3D-Models/planet', 'https://www.turbosquid.com/Search/3D-Models/blend', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/cartography', 'https://www.turbosquid.com/Search/3D-Models/astrography', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/geography', 'https://www.turbosquid.com/Search/3D-Models/map', 'https://www.turbosquid.com/Search/3D-Models/mapping']","Globe from my first tutorial.Map to 3D globe.The ultimate goal of the method is to combine several pieces of the map into one, without stitches and distortions. The globe itself is only an intermediate.The end result is a rendered map of any part of the globe." +3D LowPoly sawed-off shotgun,Nellecter," +Free +", - All Extended Uses,2019-07-06," + + +OBJ + + + + +Other + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/shotgun']","['lowpoly', 'low', 'poly', 'gun', 'rifle', 'western', 'weapon', 'free', 'mobile', 'sawed-off', 'shotgun']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/western', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/mobile', 'https://www.turbosquid.com/Search/3D-Models/sawed-off', 'https://www.turbosquid.com/Search/3D-Models/shotgun']",Just a Simple sawed-off shotgun i designed in order to use in a game i'm developing. It's rigged so you can easily create your reload animation.Really hope you'll like it...If you like it please rate it =)=)=) +3D Free Models,niyoo," +Free +", - All Extended Uses,2019-07-06,,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures']","['characters', 'female', 'anatomy', 'torso', 'head', 'face', 'people', 'creatures', 'free', 'zbrush', 'sculpting', 'ztl']","['https://www.turbosquid.com/Search/3D-Models/characters', 'https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/torso', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/face', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/creatures', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/sculpting', 'https://www.turbosquid.com/Search/3D-Models/ztl']",Some free stuff.Only ztl file included.Zbrush Version 2019.1.2 +3D model Creature Head,caliskanuzay," +Free +", - All Extended Uses,2019-07-05,,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures']","['creature', 'head', 'alien', 'cute', 'animal', 'monster', 'eyes', 'green', 'baby', 'character', 'cartoon']","['https://www.turbosquid.com/Search/3D-Models/creature', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/alien', 'https://www.turbosquid.com/Search/3D-Models/cute', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/eyes', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/baby', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/cartoon']","Model is including head, eyes and ear rings. Free to use.Hope you like it.Uzay.Instagram: caliskanuzayartArtstation: caliskanuzay" +Wooden Chair 3D model,moARTy," +Free +", - All Extended Uses,2019-07-05," + + +FBX + + + + +OBJ + +","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['chair', 'wooden', 'gameready', 'pbr', 'furniture', 'lowpoly', 'vray']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/vray']","Low Poly Wooden Chair---------------------------------Texture 2048*2048PBR_Metal_Rough_Textures( BaseColor,Metallic,Normal,Roughness)PBR _SpecGloss_Textures( Diffuse,Specular,Normal,Glossiness)Vray_Textures(Diffuse,Glossiness,ior,Normal,Reflection)---------------------------------Rendered in vray next---------------------------------Units: CM---------------------------------File Formats::3dsMax_20203dsMax_2018FBXOBJ---------------------------------" +Dragon Jaw Portal 3D model,wernie," +Free +", - All Extended Uses,2019-07-05," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'vehicles', 'spacecraft', 'science fiction spacecraft', 'stargate']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/science-fiction-spacecraft', 'https://www.turbosquid.com/3d-model/stargate']","['Rock', 'Dragon', 'Fantasy', 'Portal', 'Lava', 'Dark', 'Game']","['https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/dragon', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/portal', 'https://www.turbosquid.com/Search/3D-Models/lava', 'https://www.turbosquid.com/Search/3D-Models/dark', 'https://www.turbosquid.com/Search/3D-Models/game']","A model I made a while back in Sculptris that can be used as a portal or some other element to add interest to your scene. Model is available in various formats. Textures are available in .png and .jpeg and include Diffuse, Normal and Spec maps." +3D French Style Queen size Metal bars Bed Free model,artsnbytes," +Free +", - All Extended Uses,2019-07-03," + + +Other + + + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'furnishings', 'bed', 'bedroom set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bed', 'https://www.turbosquid.com/3d-model/bedroom-set']","['furniture', 'room', 'indoors', 'table', 'interior', 'bedroom', 'bed', 'queenside', 'kingsize', 'double', 'hotel', 'sleep', 'rest', 'apartment', 'condominium', 'lodge', 'French', 'style']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/indoors', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/queenside', 'https://www.turbosquid.com/Search/3D-Models/kingsize', 'https://www.turbosquid.com/Search/3D-Models/double', 'https://www.turbosquid.com/Search/3D-Models/hotel', 'https://www.turbosquid.com/Search/3D-Models/sleep', 'https://www.turbosquid.com/Search/3D-Models/rest', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/condominium', 'https://www.turbosquid.com/Search/3D-Models/lodge', 'https://www.turbosquid.com/Search/3D-Models/french', 'https://www.turbosquid.com/Search/3D-Models/style']","This is an Elegant French style Queen size bed with ancient metal bars and its 2 bedside tables. It has been made with Cinema4d R15. So 3DS, OBJ and FBX formats are just exports from the c4d software without visualization, then you may have to revamp / remap textures.All objects are separate (and primitive-based for c4d users), so you can modify / move them around as needed. Materials are included." +Ka-bar army combat knife 3D model,andriybobchuk," +Free +", - All Extended Uses,2019-07-03,,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'combat knife', 'ka-bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/combat-knife', 'https://www.turbosquid.com/3d-model/ka-bar']","['knife', 'ka-bar', 'combat', 'war', 'apocalypse', 'army', 'bladed', 'weapon', 'conflict', 'warfare']","['https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/ka-bar', 'https://www.turbosquid.com/Search/3D-Models/combat', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/apocalypse', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/bladed', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/conflict', 'https://www.turbosquid.com/Search/3D-Models/warfare']","Hi there, This asset contains AAA-quality KA-BAR knife model. The package provides with 2 variants of model: - HighPoly for AAA computer projects - LowPoly for small mobile gamesI did it so you'll be able to choose the one you need for your project. Besides, you can use it in any commercial purpose!Main features:- Game ready Unity prefab for both High/Low poly model- Realistic textures for blade & handle- 100% accurate scale & overall dimensions - Perfect polycount solution- Exact Ka-Bar design" +Cyberpunk Flying Car DeLorean 3D model,Chaosmonger Studio," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-07-03," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'vehicles', 'spacecraft', 'flying car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/flying-car']","['cyberpunk', 'car', 'flying', 'scifi', 'sci', 'fi', 'delorean', 'cars', 'led', 'engines', 'futuristic', 'future', 'science', 'fiction', 'vehicle', 'fly', 'antigravity', 'cyber', 'tech', 'concept', 'design']","['https://www.turbosquid.com/Search/3D-Models/cyberpunk', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/flying', 'https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/delorean', 'https://www.turbosquid.com/Search/3D-Models/cars', 'https://www.turbosquid.com/Search/3D-Models/led', 'https://www.turbosquid.com/Search/3D-Models/engines', 'https://www.turbosquid.com/Search/3D-Models/futuristic', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/fiction', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/fly', 'https://www.turbosquid.com/Search/3D-Models/antigravity', 'https://www.turbosquid.com/Search/3D-Models/cyber', 'https://www.turbosquid.com/Search/3D-Models/tech', 'https://www.turbosquid.com/Search/3D-Models/concept', 'https://www.turbosquid.com/Search/3D-Models/design']","High Quality Cyberpunk Flying DeLorean!Features:- Native and Optimized for Max 2017.- Maya conversion.- Clean FBX and OBJ interchange.- Clean topology.- Main Body Unwrapped with 4096x4096 map.- Clean naming (for meshes, textures, shaders).Notes:- Rendering Setting and Lightning not included." +Eric Rigged 001 3D,Renderpeople," +Free +", - All Extended Uses,2019-07-03," + + +FBX 2014 + +","['3D Model', 'characters', 'people', 'man', 'businessman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/businessman']","['human', '3d', 'people', 'realistic', 'photorealistic', 'scan', 'architectural', 'visualization', 'renderpeople', 'business', 'man', 'standing', 'white']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photorealistic', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/visualization', 'https://www.turbosquid.com/Search/3D-Models/renderpeople', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/standing', 'https://www.turbosquid.com/Search/3D-Models/white']","Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS:10-15k polycount (retopologized quads)8k high-resolution texturesDiffuse, Normal, Gloss, and Alpha mapsIncludes skinned skeletonReady-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter" +3D Claudia Rigged 002,Renderpeople," +Free +", - All Extended Uses,2019-07-03," + + +FBX 2014 + +","['3D Model', 'characters', 'people', 'woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman']","['human', 'people', 'realistic', 'photorealistic', '3d', 'scan', 'architectural', 'visualization', 'renderpeople', 'business', 'men', 'standing', 'white']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photorealistic', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/visualization', 'https://www.turbosquid.com/Search/3D-Models/renderpeople', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/men', 'https://www.turbosquid.com/Search/3D-Models/standing', 'https://www.turbosquid.com/Search/3D-Models/white']","Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS: 10-15k polycount (retopologized quads) 8k high-resolution textures Diffuse, Normal, Gloss, and Alpha maps Includes skinned skeleton Ready-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter" +Carla Rigged 001 3D,Renderpeople," +Free +", - All Extended Uses,2019-07-03," + + +FBX 2013 + +","['3D Model', 'characters', 'people', 'woman', 'businesswoman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman', 'https://www.turbosquid.com/3d-model/businesswoman']","['human', 'people', 'realistic', 'photorealistic', '3d', 'scan', 'architectural', 'visualization', 'renderpeople', 'business', 'women', 'standing']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photorealistic', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/architectural', 'https://www.turbosquid.com/Search/3D-Models/visualization', 'https://www.turbosquid.com/Search/3D-Models/renderpeople', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/women', 'https://www.turbosquid.com/Search/3D-Models/standing']","Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS: 10-15k polycount (retopologized quads) 8k high-resolution textures Diffuse, Normal, Gloss, and Alpha maps Includes skinned skeleton Ready-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter" +3D Linux Penguin model,Jose Torres Adelantado," +Free +", - Editorial Uses Only,2019-07-02," + + +OBJ + + + + +Collada + + + + +3D Studio + +","['3D Model', 'nature', 'animal', 'bird', 'aquatic bird', 'penguin', 'cartoon penguin']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/birds', 'https://www.turbosquid.com/3d-model/aquatic-bird', 'https://www.turbosquid.com/3d-model/penguin', 'https://www.turbosquid.com/3d-model/cartoon-penguin']","['penguin', 'penguins', 'animal', 'not', 'flying', 'bird', 'linux', 'pole', 'polar', 'animals', 'south', 'hemisphere', 'ice', 'free', 'without', 'cost']","['https://www.turbosquid.com/Search/3D-Models/penguin', 'https://www.turbosquid.com/Search/3D-Models/penguins', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/not', 'https://www.turbosquid.com/Search/3D-Models/flying', 'https://www.turbosquid.com/Search/3D-Models/bird', 'https://www.turbosquid.com/Search/3D-Models/linux', 'https://www.turbosquid.com/Search/3D-Models/pole', 'https://www.turbosquid.com/Search/3D-Models/polar', 'https://www.turbosquid.com/Search/3D-Models/animals', 'https://www.turbosquid.com/Search/3D-Models/south', 'https://www.turbosquid.com/Search/3D-Models/hemisphere', 'https://www.turbosquid.com/Search/3D-Models/ice', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/without', 'https://www.turbosquid.com/Search/3D-Models/cost']",Linux PenguinLinux Penguin is based on the Linux official logo.It was created with the open source software Blender. The 3D model keeps an UV open mapwith its respective texture. All its pieces are divided as different objects. It has possibility of being articulated through the Blender software. +building 001 model,vini3dmodels," +Free +", - All Extended Uses,2019-07-02,,"['3D Model', 'architecture', 'building', 'commercial building', 'office building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/office-building']","['office', 'architecture', 'background', 'brick', 'building']","['https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/background', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/building']",This 3D model resembles to a simple office building. It was made with few polygons and textures. All materials and objects are named properly. +3D Low Poly Nature,Nellecter," +Free +", - All Extended Uses,2019-07-02," + + +OBJ 1.0 + + + + +Other 1.0 + +","['3D Model', 'architecture', 'site components', 'fence', 'wooden fence']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fence', 'https://www.turbosquid.com/3d-model/wooden-fence']","['Lowpoly', 'nature', 'tree', 'rock', 'fence', 'log']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/fence', 'https://www.turbosquid.com/Search/3D-Models/log']","A small collection of lowpoly models i've used in a game i developed.Perfect for make a lowpoly nature environment.Material use a single image texure for all the models, perfect if you want to make a really light mobile game in term of size. Hope you'll like it.Nellecter" +Modern Table 3D model,3D.ERA," +Free +", - All Extended Uses,2019-07-02," + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other + + + + +STL + +","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['modern', 'table', 'furniture', 'realistic', 'room', 'living', 'interior', 'design', 'PBR', 'beautiful', 'tableware', 'bedroom', 'livingroom', 'house', 'houseware', 'elements']","['https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/beautiful', 'https://www.turbosquid.com/Search/3D-Models/tableware', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/livingroom', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/houseware', 'https://www.turbosquid.com/Search/3D-Models/elements']","Modern TableSuitable for realistic work PBR, real world movies and videos, Interiors and professional cartoons. It includes Materials.It is high poly design, and very high quality Modern Table Design with 83,845 vertices and 73,962 polygons.It's for free..Hope you like it." +pki 3D model,cilio01," +Free +", - All Extended Uses,2019-07-01,,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'bear', 'cartoon bear']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/bears', 'https://www.turbosquid.com/3d-model/cartoon-bear']",['comics'],['https://www.turbosquid.com/Search/3D-Models/comics'],comics +Glass Cup 3D,pchekurkov," +Free +", - All Extended Uses,2019-07-01,,"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'water glass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/water-glass']","['glass', 'cup', 'equipment', 'houseware', 'kitchen', 'household', 'other']","['https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/equipment', 'https://www.turbosquid.com/Search/3D-Models/houseware', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/other']",Simple hexagonal glass cup +3D Old Antique Standing Globe,MovART," +Free +", - All Extended Uses,2019-07-01," + + +FBX 2018 + + + + +OBJ 2018 + +","['3D Model', 'interior design', 'housewares', 'general decor', 'globe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/globe-decor']","['antique', 'old', 'retro', 'wood', 'wooden', 'decorative', 'vintage', 'globe', 'unity', 'unreal', 'game', 'pbr', 'presentation', 'worldmap', 'free', 'stanging', 'earth', 'orbit', 'exploration', 'geography']","['https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/decorative', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/globe', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/presentation', 'https://www.turbosquid.com/Search/3D-Models/worldmap', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/stanging', 'https://www.turbosquid.com/Search/3D-Models/earth', 'https://www.turbosquid.com/Search/3D-Models/orbit', 'https://www.turbosquid.com/Search/3D-Models/exploration', 'https://www.turbosquid.com/Search/3D-Models/geography']","**Standing Globe High Quality 3D Model ( Ready for Games AR/VR and Visualization)** **MODEL** Standing Globe is made from 1 polygonal objects... Model is not triangulated. Polycount:Poly - 9 528Verts - 9 464**MATERIALS**Materials are prepared for Unity and Marmoset renderers. Scanline and FBX has only basic materials and will NOT render the same as in preview images.OBJ file has no materials, but has UVW coordinates intact.**TEXTURES**Model has 1 sets of high quality PBR textures.Maps - Base_colour, Ambient_occlusion, Roughness,Metallic,Resolution - 2048 x 2048.Format - PNG. Textures are collected in one archive and are delivered in separate file.**SCENE**Model is scaled to accurate real world dimensions.Objects, materials and textures has meaningful and matching names.Transformations has been reset and model is placed at scene origin [0, 0, 0 XYZ].All texture paths are set to relative.**FILE FORMATS** Maya - Standart Renderer 3ds Max - Scanline RendererFBX OBJUnityPacakge**GENERAL**Modeled in Maya.                      Preview images are rendered with Marmoset Toolbag.Images are straight from rendering apps. No post processing were applied.Render scenes are not included.***Please contact me if you have questions or need assistance with the models." +Low Poly Dungeon Scene 3D model,zephyrextreme," +Free +", - All Extended Uses,2019-07-01," + + +FBX + +","['3D Model', 'interior design', 'interior', 'industrial spaces', 'dungeon']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/industrial-spaces', 'https://www.turbosquid.com/3d-model/dungeon']","['low', 'poly', 'dungeon', 'blender', '3d', 'free', 'download']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/dungeon', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/download']","Just made a little something, you can use it wherever you want! I'd like to see your stuff so do send me where you use it." +Hot Dog G06 3D model,OHOW," +Free +", - All Extended Uses,2019-06-30," + + +FBX + + + + +OBJ 1.0 + + + + +PNG 1.0 + +","['3D Model', 'food and drink', 'food', 'snack food and fast food', 'hot dog']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/snack-food-and-fast-food', 'https://www.turbosquid.com/3d-model/hot-dog']","['hotdog', 'game', 'lowpoly', 'pbr', 'unity', 'unreal', 'food']","['https://www.turbosquid.com/Search/3D-Models/hotdog', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/food']",Created with BlenderTexture Formats : 512 x 512File Formats : FBX / OBJ +3D Machine Gun Low Poly,vuoriov4," +Free +", - All Extended Uses,2019-06-30," + + +Other + + + + +PNG + + + + +OBJ + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'machine gun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/machine-gun']","['machine', 'gun']","['https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/gun']",Machine gun 3d model +Demon of the Foundry 3D model,Mr_Nousagi," +Free +", - Editorial Uses Only,2019-06-30," + + +STL + +","['3D Model', 'art', 'sculpture', 'statue', 'statuette', 'figurine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/statuette', 'https://www.turbosquid.com/3d-model/figurine']","['demon', 'monstre', 'monster', 'cratures', 'fantasy', '3dprint', 'statue', 'Jewelry', 'sculpture', 'people', 'portrait', 'baroque', 'gold', 'silver', 'decoration', 'print', 'art', 'nou']","['https://www.turbosquid.com/Search/3D-Models/demon', 'https://www.turbosquid.com/Search/3D-Models/monstre', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/cratures', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/3dprint', 'https://www.turbosquid.com/Search/3D-Models/statue', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/portrait', 'https://www.turbosquid.com/Search/3D-Models/baroque', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/nou']",Hi it's Mr.NousagiTo this day I propose a model of Demon of the Foundry for printing :) +3D model House Destroyed,InsectOnWorx," +Free +", - All Extended Uses,2019-06-29," + + +3D Studio 1 + +","['3D Model', 'architecture', 'building', 'destroyed building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/destroyed-building']","['House', 'Destroyed', 'Little', 'Wall', 'Designer']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/destroyed', 'https://www.turbosquid.com/Search/3D-Models/little', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/designer']","This is a little House, that I made for one of my Games. I hope somebody finds it useful, enjoy!" +3D Flat Screen Television,shara_d," +Free +", - All Extended Uses,2019-06-29," + + +FBX + + + + +OBJ + +","['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/flatscreen-television']","['television', '3DModel', 'Cheap', 'flatscreen', 'materials', 'unwrapped', 'electronics', 'video', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/3dmodel', 'https://www.turbosquid.com/Search/3D-Models/cheap', 'https://www.turbosquid.com/Search/3D-Models/flatscreen', 'https://www.turbosquid.com/Search/3D-Models/materials', 'https://www.turbosquid.com/Search/3D-Models/unwrapped', 'https://www.turbosquid.com/Search/3D-Models/electronics', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/furniture']",If you like the model please leave a rating and let me know what you did and/or did not like about it.Thank you for downloading! I hope you enjoy. +3D Surveyor,AdrienJ," +Free +", - All Extended Uses,2019-06-29,,"['3D Model', 'industrial', 'tools', 'forestry tools', 'survey level']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/forestry-tools', 'https://www.turbosquid.com/3d-model/survey-level']","['Surveyor', 'construction', 'building', 'architecture']","['https://www.turbosquid.com/Search/3D-Models/surveyor', 'https://www.turbosquid.com/Search/3D-Models/construction', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/architecture']",Mesh : 1Textures : 0Polygons : 860 Vertex : 1167 +3D Old anvil (low poly),wther," +Free +", - All Extended Uses,2019-06-29," + + +FBX + + + + +PNG + +","['3D Model', 'industrial', 'tools', 'industrial tools', 'anvil']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/industrial-tools', 'https://www.turbosquid.com/3d-model/anvil']","['anvil', 'iron', 'smith', 'metalwork', 'forge']","['https://www.turbosquid.com/Search/3D-Models/anvil', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/smith', 'https://www.turbosquid.com/Search/3D-Models/metalwork', 'https://www.turbosquid.com/Search/3D-Models/forge']",Game ready low poly 3D model of the anvil.512x512 normal map1024x1024 albedo +Turkish Tea Glass - RC model,RcAnimationStudios," +Free +", - All Extended Uses,2019-06-28," + + +3D Studio + + + + +FBX + + + + +Other + + + + +OBJ + + + + +Collada + + + + +STL + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup', 'teacup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup', 'https://www.turbosquid.com/3d-model/teacup']","['tea', 'glass', 'turkish', 'low', 'poly', 'game', 'ready', 'free', 'metal', 'traditional', 'drink', 'hot', 'unity', 'unreal', 'kitchen', 'table', 'spoon', 'home', '3d', 'pbr', 'vray']","['https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/turkish', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/hot', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/spoon', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/vray']","==============================Turkish Tea Glass - RC (Game Ready)All models have fully textured and was originally modeled in 3ds Max 2014Nice, High resolution!! 2048x2048 px (png 16) textures==============================Features:---- Each Model in folder separately , you can use each of them one by one* _ ( thumbnail is for show the set)-Low polygonal models, correctly scaled for an accurate representation of the original object.-Easily subdividable for more realism. It depends on you-Models resolutions are optimized for polygon efficiency.-No cleaning up necessary just drop your models into the scene and start rendering.-No special plugin needed to open scene.-Models does not include any backgrounds or scenes-All unwrapped UV s are non-overlapping-No lights or HDRI mapping-Display Unit Scale = Centimeters (cm)==============================Game Ready ( Unity or Unreal Engine ect. )MAPS INCLUDEDPBRBase ColorHeightMetallicNormalRoughnessUnityAlbedoMetallic SmoothnessNormalUnreal EngineBase ColorNormalOcclusion Roughness Metallic==============================File Formats:3ds Max 2014FBXOBJ (Multi Format)ColladaTextures (2048X2048 png)===============================Warning: Depending on which software package you are using, the exchange formats (.obj, .3ds and .fbx) may not match the preview images exactly. Due to the nature of these formats, there may be some textures that have to be loaded by hand and possibly triangulated geometry.==============================Rendered in Marmoset Toolbagand you can notice difference on thumbnails , because rendered in several different light setup and sceneThanks!Also check out my other models" +3D Water Bottle,Joshua Kolby," +Free +", - All Extended Uses,2019-06-27," + + +FBX + + + + +OBJ + + + + +STL + + + + +Other + +","['3D Model', 'food and drink', 'food container', 'bottle', 'water bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food-container', 'https://www.turbosquid.com/3d-model/bottle', 'https://www.turbosquid.com/3d-model/water-bottle']","['water', 'bottle', 'metal', 'blender']","['https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/blender']",The water bottle is free to use for whatever you need.If you have any questions contact support +Motorola One Vision Bronze gradient And Sapphire gradient 3D model,ES_3D," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-27," + + +3D Studio 2011 + + + + +FBX 2011 + + + + +OBJ 2011 + + + + +VRML 2011 + +","['3D Model', 'technology', 'phone', 'cellphone', 'smartphone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/phone', 'https://www.turbosquid.com/3d-model/cellphone', 'https://www.turbosquid.com/3d-model/smartphone']","['3d', 'model', '3ds', 'max', 'Motorola', 'One', 'Vision', 'Bronze', 'And', 'Sapphire', 'gradient', 'electronic', 'phone', 'cellular', 'computer', 'pda', 'andriod', 'best', 'top', 'rated', 'vray', 'studio']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/motorola', 'https://www.turbosquid.com/Search/3D-Models/one', 'https://www.turbosquid.com/Search/3D-Models/vision', 'https://www.turbosquid.com/Search/3D-Models/bronze', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/sapphire', 'https://www.turbosquid.com/Search/3D-Models/gradient', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/phone', 'https://www.turbosquid.com/Search/3D-Models/cellular', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pda', 'https://www.turbosquid.com/Search/3D-Models/andriod', 'https://www.turbosquid.com/Search/3D-Models/best', 'https://www.turbosquid.com/Search/3D-Models/top', 'https://www.turbosquid.com/Search/3D-Models/rated', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/studio']","Detailed High definition model of Motorola One Vision Bronze gradient And Sapphire gradient.The main format is 3ds max 2011.max, also available in many formats.And click on my username ES_3D And See More Quality Models And Collections .Available in the following file formats:- 3ds Max with mental ray materials (.max)- 3ds Max with V-Ray materials (.max)- 3ds Max with Scanline materials (.max)- 3D Studio (.3ds)- FBX (.fbx)- Geometry: 3ds Max version (For Each)- In formats 3ds Max 2011 , 3ds , OBJ, FBX , VMRL , Mental ray, Default Scanline Renderer, - model exported to standard materials (textures), not contain V-Ray shaders.In these formats, shaders need to be edited for the new studio for the final rendering.- High quality textures,and high resolution renders.- fbx formats contains medium high-poly.- 3ds and obj format comes from low poly.- Every part of the model is named properly- Model is placed to 0,0,0 scene coordinates.- 3ds Max 2011 and all higher versions.- all textures included separately for all formats into each zipped folder.- Other formats may vary slightly depending on your software.- You can make the poly count higher by the MeshSmooth and TurboSmooth level.- Includes V-Ray materials and textures only in 3ds Max format.- A file without V-Ray shader is included with standard materials.- The .3ds and .obj formats are geometry with texture mapping coordinates. No materials attached.- Textures format JPEG.- No object missing,- 3ds Max files included Standard materials and V-Ray materials.- This 3d model objects have the correct names and stripped the texture paths.- NOTE: V-Ray is required for the V-Ray 3ds Max scene and Studio setup is not included.- I hope you will like all my products. Thanks for buying" +AK-47 model,Maga Batukaev," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-27," + + +3D Studio 2014 + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'automatic rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/automatic-rifle']","['Riffle', 'AK', '74', 'AKS', '74M', 'AKM', 'kalashnikov', 'machinegun', 'gun', 'weapon', 'Russian', 'army', 'automatic', 'carbine', 'firearm', 'soviet', 'terrorist']","['https://www.turbosquid.com/Search/3D-Models/riffle', 'https://www.turbosquid.com/Search/3D-Models/ak', 'https://www.turbosquid.com/Search/3D-Models/74', 'https://www.turbosquid.com/Search/3D-Models/aks', 'https://www.turbosquid.com/Search/3D-Models/74m', 'https://www.turbosquid.com/Search/3D-Models/akm', 'https://www.turbosquid.com/Search/3D-Models/kalashnikov', 'https://www.turbosquid.com/Search/3D-Models/machinegun', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/russian', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/automatic', 'https://www.turbosquid.com/Search/3D-Models/carbine', 'https://www.turbosquid.com/Search/3D-Models/firearm', 'https://www.turbosquid.com/Search/3D-Models/soviet', 'https://www.turbosquid.com/Search/3D-Models/terrorist']","3ds Max 20113ds max 2014FBXOBJTexture size for body -4096x4096 (Albedo, Occlusion, Normal, Metalness and Roughness)The main and supporting renders are done using Marmoset 3.0" +Fence and Gate model,Joshua Kolby," +Free +", - All Extended Uses,2019-06-27," + + +Other + + + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'architecture', 'site components', 'fence', 'wrought iron fence']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fence', 'https://www.turbosquid.com/3d-model/wrought-iron-fence']","['fence', 'gate', 'blender', 'architecture', 'house', 'outside', 'nature']","['https://www.turbosquid.com/Search/3D-Models/fence', 'https://www.turbosquid.com/Search/3D-Models/gate', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/outside', 'https://www.turbosquid.com/Search/3D-Models/nature']",The Fence and Gate is good for games and simple architecture scenes.You can download the fence and gate separate if you need to.If you have any questions contact support. +Clarinet 3D model,Joshua Kolby," +Free +", - All Extended Uses,2019-06-27," + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'music', 'woodwind', 'clarinet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/musical-instrument', 'https://www.turbosquid.com/3d-model/woodwind', 'https://www.turbosquid.com/3d-model/clarinet']","['clarinet', 'musical', 'instrument', 'blender', 'woodwind', 'reed']","['https://www.turbosquid.com/Search/3D-Models/clarinet', 'https://www.turbosquid.com/Search/3D-Models/musical', 'https://www.turbosquid.com/Search/3D-Models/instrument', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/woodwind', 'https://www.turbosquid.com/Search/3D-Models/reed']",Clarinet- editable in blender- free to use in any sceneIf you have any questions contact support +Coffee Maker 3D model,Joshua Kolby," +Free +", - All Extended Uses,2019-06-26," + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'coffee maker']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/coffee-maker']","['coffee', 'maker', 'simple', 'lowpoly', 'cup', 'pot', 'blender', 'model']","['https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/maker', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/model']","Simple Coffee Maker-Cord and Cordless versions, download your preference.-Cord only editable in blender. If not using blender you probably want to download a NoCord version.-Game-ready. Low polygon count so it doesn't lag games.-Free to useIf you have any questions contact support." +Old Wood Chair 3D model,Marc Mons," +Free +", - All Extended Uses,2019-06-26," + + +FBX 2016 + + + + +OBJ 2016 + +","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['chair', 'bench', 'cartoon', 'art', 'videogame', 'town', 'city', 'eat', 'granite', 'stone', 'architecture', 'garden', 'decoration', 'toon', 'park', 'unity3d', 'seat', '3d', 'maya', 'obj', 'fbx', 'free', 'freechair']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/bench', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/videogame', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/eat', 'https://www.turbosquid.com/Search/3D-Models/granite', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/unity3d', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/freechair']","Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support." +3D Falling - male anatomy model,cvbtruong," +Free +", - All Extended Uses,2019-06-26," + + +OBJ + + + + +Other + +","['3D Model', 'art', 'sculpture', 'statue']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue']","['male', 'sculpture', 'anatomy', 'statue', 'classical', 'man', 'sculpt', 'abstract', 'anatomical']","['https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/statue', 'https://www.turbosquid.com/Search/3D-Models/classical', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/sculpt', 'https://www.turbosquid.com/Search/3D-Models/abstract', 'https://www.turbosquid.com/Search/3D-Models/anatomical']","Hi, This is the anatomy project I did when learning at DauPhaiGiaiPhau References are from Bodiesinmotion. Files include: - .obj files & textures. - Substance painter files. - Maya file with Redshift rendering setup. - Zbrush file with subdivisions. Free to download and use. Cheers, Truong Cg Artist" +Lowpoly Old Car model,Joshua Kolby," +Free +", - All Extended Uses,2019-06-25," + + +FBX 1.0 + + + + +OBJ 1.0 + + + + +STL 1.0 + +","['3D Model', 'vehicles', 'car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car']","['Lowpoly', 'Car', 'Old', 'Blender']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/blender']","This car is free to use in games and scenes, it is also very easy to edit the model to your liking. It is game ready for engines such as unity or unreal." +3D model Gas Cylinder,rahulwarrier96," +Free +", - All Extended Uses,2019-06-25," + + +FBX + +","['3D Model', 'industrial', 'industrial container', 'fuel container', 'gas cylinder', 'home propane tank']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/fuel-container', 'https://www.turbosquid.com/3d-model/gas-cylinder', 'https://www.turbosquid.com/3d-model/home-propane-tank']","['gas', 'cylinder']","['https://www.turbosquid.com/Search/3D-Models/gas', 'https://www.turbosquid.com/Search/3D-Models/cylinder']",3d model of a gas cylinder +3D Submarines of the project 671,CoFate," +Free +", - All Extended Uses,2019-06-25," + + +FBX + + + + +3D Studio + +","['3D Model', 'vehicles', 'vessel', 'military vessel', 'submarine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/military-vessel', 'https://www.turbosquid.com/3d-model/submarine']","['of', 'the', 'project', '671', 'Submarines']","['https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/project', 'https://www.turbosquid.com/Search/3D-Models/671', 'https://www.turbosquid.com/Search/3D-Models/submarines']",The submarines of the project 671 'Yorsh' - a series of Soviet nuclear torpedo submarines.27911 Vertices27824 Polygons- forms and proportions of The 3D model most similar to the real object- detailed enough for close-up renders +3D Free Ghost model,A_Akhtar," +Free +", - All Extended Uses,2019-06-25," + + +FBX + + + + +OBJ + +","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'ghost']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/ghoul']","['free', 'ghost', '3d', 'scary', 'funny', 'carton', 'cartoonish', 'cloth', 'horror', 'phantom', 'fear', 'flying']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/ghost', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scary', 'https://www.turbosquid.com/Search/3D-Models/funny', 'https://www.turbosquid.com/Search/3D-Models/carton', 'https://www.turbosquid.com/Search/3D-Models/cartoonish', 'https://www.turbosquid.com/Search/3D-Models/cloth', 'https://www.turbosquid.com/Search/3D-Models/horror', 'https://www.turbosquid.com/Search/3D-Models/phantom', 'https://www.turbosquid.com/Search/3D-Models/fear', 'https://www.turbosquid.com/Search/3D-Models/flying']","Hello friends this is a free ghost model. I have got some premium quality models in my portfolio So, feel free to checkout my other models as well. Feel free to use this product in your projects and do not forget to provide your valuable feedback.-----------------| General Features |----------------- Relative texture paths- Subdividable and clean geometry- Real world scale- Units: cm- Comes with PBR textures- Completely UV mapped & UVs unwrapped- Native scene with all Vray settings- Model is fully textured with all materials applied.- Model does not include lights and cameras- Faces   = 4234 (subdivison level 0) & 16936 (subdivison level 1)- Vertices=4296 (subdivison level 0) & 17061 (subdivison level 1)-----------------| Textures |--------------Native file has 3 textures of 4096x4096 and Texture sets are also available:- PBR (Metalness)- PBR (Specular)- PNG Displacement Map-----------------| Requirements |----------------- Ghost-MB (V-ray).zip requires V-Ray 2.39- Rest of the files do not require any third party pluginIf you liked the product then dont forget to check out other models in my portfolio and provide your valuable feed back" +3D model Low Poly Fire Pit,Vertici," +Free +", - All Extended Uses,2019-06-24,,"['3D Model', 'architecture', 'site components', 'fireplace', 'fire pit']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fireplace', 'https://www.turbosquid.com/3d-model/fire-pit']","['Fire', 'campfire', 'camp', 'roast', 'pit']","['https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/campfire', 'https://www.turbosquid.com/Search/3D-Models/camp', 'https://www.turbosquid.com/Search/3D-Models/roast', 'https://www.turbosquid.com/Search/3D-Models/pit']",Low poly fire pit made in Blender 2.8All of the lighting is baked into the texture. +Sony Playstation 4 Low Poly Free 3D model 3D,cesarfrias31," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-24," + + +Other + + + + +FBX + +","['3D Model', 'technology', 'video devices', 'video games', 'game console']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/video-games', 'https://www.turbosquid.com/3d-model/game-console']","['playstation', 'play', 'ps4', 'video-game', 'video', 'game', 'ps4controller', 'controller', 'sony', 'playstation4', 'console', 'videoconsole', 'blender']","['https://www.turbosquid.com/Search/3D-Models/playstation', 'https://www.turbosquid.com/Search/3D-Models/play', 'https://www.turbosquid.com/Search/3D-Models/ps4', 'https://www.turbosquid.com/Search/3D-Models/video-game', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ps4controller', 'https://www.turbosquid.com/Search/3D-Models/controller', 'https://www.turbosquid.com/Search/3D-Models/sony', 'https://www.turbosquid.com/Search/3D-Models/playstation4', 'https://www.turbosquid.com/Search/3D-Models/console', 'https://www.turbosquid.com/Search/3D-Models/videoconsole', 'https://www.turbosquid.com/Search/3D-Models/blender']",Like it if you liked the model. Thank you. Features:                Low poly model                Optimized for the highest performance                Colors can be easily modified(Last Image for Example)                Original model optimized for Cycles Blender                Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview) +3D Hand Cartoon,Roger William," +Free +", - All Extended Uses,2019-06-22,,"['3D Model', 'science', 'anatomy', 'superficial anatomy', 'arms', 'hand', 'cartoon hand']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/superficial-anatomy', 'https://www.turbosquid.com/3d-model/arms', 'https://www.turbosquid.com/3d-model/hand', 'https://www.turbosquid.com/3d-model/cartoon-hand']","['Hand', 'cartoon', 'rig']","['https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/rig']","Simples Hand - Rig - Cartoon style, All Free" +School Chair and Desk model,Shermadini," +Free +", - All Extended Uses,2019-06-24," + + +Collada + + + + +FBX + + + + +OBJ + + + + +STL + + + + +Other Textures + +","['3D Model', 'furnishings', 'desk', 'school desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/school-desk']","['3d', 'wood', 'wooden', 'school', 'chair', 'desk', 'red', 'table', 'metal', 'furniture', 'interior', 'children', 'kids', 'other']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/school', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/red', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/children', 'https://www.turbosquid.com/Search/3D-Models/kids', 'https://www.turbosquid.com/Search/3D-Models/other']","3D School Chair and Desk modelAVAILABLE FILE FORMATS:- FBX- OBJ- DAE- STLThese are quick models I made for BlenderFiftyTwo challenge. I decided to share it with everyone for free, since the poly count isn't as low as it should be. It has 3,869 Verticis and 2,838 Faces. Wood Textures are included! Enjoy!" +3D Grail model,Reddler," +Free +", - All Extended Uses,2019-06-23," + + +OBJ + + + + +FBX + + + + +Other + +","['3D Model', 'symbols', 'religious objects', 'holy grail']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes', 'https://www.turbosquid.com/3d-model/religious-objects', 'https://www.turbosquid.com/3d-model/holy-grail']","['grail', 'holy', 'jesus', 'christ', 'christianity', 'christian', 'jew', 'jewish', 'judaism', 'catholic', 'moses', 'solomon', 'cup', 'drink', 'sacred', 'blood', 'last', 'supper', 'medieval', 'wine', 'goblet']","['https://www.turbosquid.com/Search/3D-Models/grail', 'https://www.turbosquid.com/Search/3D-Models/holy', 'https://www.turbosquid.com/Search/3D-Models/jesus', 'https://www.turbosquid.com/Search/3D-Models/christ', 'https://www.turbosquid.com/Search/3D-Models/christianity', 'https://www.turbosquid.com/Search/3D-Models/christian', 'https://www.turbosquid.com/Search/3D-Models/jew', 'https://www.turbosquid.com/Search/3D-Models/jewish', 'https://www.turbosquid.com/Search/3D-Models/judaism', 'https://www.turbosquid.com/Search/3D-Models/catholic', 'https://www.turbosquid.com/Search/3D-Models/moses', 'https://www.turbosquid.com/Search/3D-Models/solomon', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/sacred', 'https://www.turbosquid.com/Search/3D-Models/blood', 'https://www.turbosquid.com/Search/3D-Models/last', 'https://www.turbosquid.com/Search/3D-Models/supper', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/wine', 'https://www.turbosquid.com/Search/3D-Models/goblet']","This is a Holy Grail from Christian Mythology. Used to hold Jesus' blood at the crucifixion and used at the last supper, perfect for religious and medieval themes.Contains 5 PBR 2K Textures.Base ColorHeightmapMetallicNormalRoughness14,590 Triangles7,431 VerticesNo N-Gons" +3D Telephone,rahulwarrier96," +Free +", - All Extended Uses,2019-06-22," + + +Other + +","['3D Model', 'technology', 'phone', 'office phone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/phone', 'https://www.turbosquid.com/3d-model/office-phone']","['phone', 'telephone', 'landline']","['https://www.turbosquid.com/Search/3D-Models/phone', 'https://www.turbosquid.com/Search/3D-Models/telephone', 'https://www.turbosquid.com/Search/3D-Models/landline']",3D model of landline telephone +3D Free Foot highpoly 3D model,patrickart90," +Free +", - All Extended Uses,2019-06-22," + + +OBJ + +","['3D Model', 'science', 'anatomy', 'superficial anatomy', 'legs', 'foot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/superficial-anatomy', 'https://www.turbosquid.com/3d-model/legs', 'https://www.turbosquid.com/3d-model/foot']","['foot', 'feet', 'leg', 'human', 'body', 'male', 'female', 'realistic', 'shape', 'anatomy', 'highpoly', 'sculpt', 'character', '3D', 'toes', 'toenail', 'heel', 'ankle', 'tool']","['https://www.turbosquid.com/Search/3D-Models/foot', 'https://www.turbosquid.com/Search/3D-Models/feet', 'https://www.turbosquid.com/Search/3D-Models/leg', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/shape', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/highpoly', 'https://www.turbosquid.com/Search/3D-Models/sculpt', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/toes', 'https://www.turbosquid.com/Search/3D-Models/toenail', 'https://www.turbosquid.com/Search/3D-Models/heel', 'https://www.turbosquid.com/Search/3D-Models/ankle', 'https://www.turbosquid.com/Search/3D-Models/tool']","Hi guys, check this out. Here is free sample of Foot with high poly 3D model.Available formats: OBJ (highpoly) -ztl (high poly)You can import this foot you like in zbrush and attached to your model, then dynamesh it! Or either way, u can manually add more detail to this foot 3D model as you like.Repacking or selling by other persons is strictly not allowed! Feel free to use this to speed up your process of creation. Thank you!Cheers!" +Fat Tony 3D model,Zerg3d," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-21," + + +OBJ + + + + +FBX + + + + +STL + +","['3D Model', 'characters', 'people', 'man', 'cartoon man', 'cartoon boss']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/cartoon-man', 'https://www.turbosquid.com/3d-model/cartoon-boss']","['human', 'character', 'anime', 'cartoon', 'man', 'Fat', 'Tony', 'Simpsons', 'mob', 'boss', 'sculptris', 'basemesh']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/anime', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/fat', 'https://www.turbosquid.com/Search/3D-Models/tony', 'https://www.turbosquid.com/Search/3D-Models/simpsons', 'https://www.turbosquid.com/Search/3D-Models/mob', 'https://www.turbosquid.com/Search/3D-Models/boss', 'https://www.turbosquid.com/Search/3D-Models/sculptris', 'https://www.turbosquid.com/Search/3D-Models/basemesh']","Fat Tony base mesh.File formats: .fbx, .obj, .stlGeometry: 914566 triangles, 457309 vertices" +House with Pool 3D model,gabryx82," +Free +", - All Extended Uses,2019-06-21,,"['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']","['House', 'Pool']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/pool']",A typical L.A house with pool +Decorative Sphere 3D model,outofourlives," +Free +", - All Extended Uses,2019-06-21," + + +3D Studio + + + + +Other abc + + + + +Collada + + + + +Other e3d + + + + +FBX 7.4 + + + + +OBJ + + + + +Other orbx + + + + +Other spp + + + + +STL + + + + +Other textures4K + + + + +Other textures8K + +","['3D Model', 'interior design', 'housewares', 'general decor', 'home decor']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/home-decor']","['gold', 'brass', 'decor', 'decoration', 'decorative', 'design', 'element', 'scifi', 'fantasy', 'sculpture', 'bathroom', 'vase', 'office', 'old', 'bedroom', 'art', 'lamp', 'pendant', 'jewel', 'props']","['https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/decorative', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/element', 'https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/bathroom', 'https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/pendant', 'https://www.turbosquid.com/Search/3D-Models/jewel', 'https://www.turbosquid.com/Search/3D-Models/props']","Decorative sphere with hexagonal holes.All preview images shown are rendered in Octane Render. Plus some extra screenshots at the end so you can see how the model looks in the UI of some of the exchange formats. Environments and lighting setups are not included, but let me know if you want them aswell. The phone is just for scale, and is not included. But if you want it too, check my profile.    Model Dimensions: 10.6 cm * 10.6 cm * 10.6 cm.    All geometry is subdivision ready (Rendered at Subdiv Lv. 1).    Fully unwrapped, non-overlapping UV's.    8K PBR Textures.    No N-gons, Isolated Vertices, or Complex Poles.    Water tight geometry, you can displace it by the Height map, if you want to print it with the bump detail.Files include:_SPP - Substance Painter Project file. You can edit the textures for all the formats._DAE - Collada exported from Substance Painter. Embeded textures are 4K jpg files (Metal/Rough PBR)._TEX - Textures exported from Substance Painter and used for all the files bellow. Unpack in the root folder. Textures are 4K 8bit png files (Spec/Gloss PBR). All files point to the 4K texture paths by default._TEX_8K - Textures exported from Substance Painter and used for all the files bellow. Unpack in the root folder. Textures are 8K 8bit png files (Spec/Gloss PBR). You dont need to download the 8K textures if you dont need as much detail.Polycount for all files bellow: 14,400._C4D_Octane - Cinema 4D project file with Octane shaders using the pbr textures. This is where all the renders come from. Screenshot attached._ORBX - Octane Standalone Package. Can be unpacked into OCS, or imported._FBX - Autodesk FBX. You may need to re-tweak the shaders abit, depending on the program you open it in, but all pbr textures should maintain link._C4D - Cinema 4D project file with Physical/Standard shaders, using the PBR textures in the texture pack. Screnshot attached._E3D - Ready to use in Video Copilot's Element 3D, plus an After Effects project file with the model already loaded. You may need to re-link the model/textures upon opening it for the first time, so just point to the root folder, where you extracted the pbr texture pack. Screnshot attached._OBJ - OBJ/MTL exported from Cinema 4D._MAX - 3ds Max project file with default shaders, using the PBR textures. May need adjustments.All files are zipped." +Heart Pendant with Beads 3D model,KhatriCad," +Free +", - All Extended Uses,2019-06-21," + + +STL + + + + +FBX + + + + +OBJ + +","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'necklace', 'pendant necklace', 'heart necklace']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/necklace', 'https://www.turbosquid.com/3d-model/pendant-necklace', 'https://www.turbosquid.com/3d-model/heart-necklace']","['3d', 'model', 'fashion', 'beauty', 'apparel', 'jewelry', 'stl', 'printable', 'print', 'pendant', 'heart', 'beads', 'gold', 'silver', 'indian', 'necklace', 'love', 'pendants']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/pendant', 'https://www.turbosquid.com/Search/3D-Models/heart', 'https://www.turbosquid.com/Search/3D-Models/beads', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/indian', 'https://www.turbosquid.com/Search/3D-Models/necklace', 'https://www.turbosquid.com/Search/3D-Models/love', 'https://www.turbosquid.com/Search/3D-Models/pendants']","Indian Style Heart pendant for wedding and Casual use. Preferred Metal: Gold and silver. Gemsize: 1.85mm Thickness: 1.00mmPictures Contains Model Weight If you Want to customize this model before purchasing, Increasing or decreasing Thickness andSize of the piece. Please contact me. i will be happy to obliged.*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review" +3D Barrel model,iShad," +Free +", - All Extended Uses,2019-06-21," + + +FBX + +","['3D Model', 'industrial', 'industrial container', 'barrel', 'steel barrel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/barrel', 'https://www.turbosquid.com/3d-model/steel-barrel']","['Barrel', 'FBX', 'Unreal', 'Blender', 'Substance']","['https://www.turbosquid.com/Search/3D-Models/barrel', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/substance']",Single Barrel made on blander and textured on substance painter.verts:336edges:620faces:285Mesh .fbx + uv + material for unreal +Free sample of 3 EARS with high poly and low poly 3D model 3D model,patrickart90," +Free +", - All Extended Uses,2019-06-21," + + +Other obj + + + + +Other fbx + +","['3D Model', 'science', 'anatomy', 'superficial anatomy', 'ear']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/superficial-anatomy', 'https://www.turbosquid.com/3d-model/ear']","['anatomy', 'character', 'human', 'tribe', 'native', 'ears', 'earring', 'girl', 'male', 'realistic', 'facial', 'face', 'head', 'person', '3d', 'game', 'shape', 'creation', 'tool']","['https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/tribe', 'https://www.turbosquid.com/Search/3D-Models/native', 'https://www.turbosquid.com/Search/3D-Models/ears', 'https://www.turbosquid.com/Search/3D-Models/earring', 'https://www.turbosquid.com/Search/3D-Models/girl', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/facial', 'https://www.turbosquid.com/Search/3D-Models/face', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/person', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/shape', 'https://www.turbosquid.com/Search/3D-Models/creation', 'https://www.turbosquid.com/Search/3D-Models/tool']","Hi guys, check this out. Here is free sample of 3 ears with high poly and low poly 3D model.Available formats: OBJ (3 separated high poly and low poly ears) -FBX (3 separated high poly and low poly ears)You can import these ears you like in zbrush and attached to your model, then dynamesh it! Or either way, u can manually connect the low poly mesh to your model as well.Repacking or selling by other persons is strictly not allowed!Feel free to use this collection of ears to speed up your process of creation. Thank you!Cheers!" +Waste Recycling Building 3D model,arch_3d," +Free +", - All Extended Uses,2019-06-20," + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building']","['waste', 'recycling', 'building', 'recycle', 'block', 'modern', 'house', 'trash', 'apartment', 'brick', 'architecture', 'exterior', 'simple', 'urban', 'city', 'American', 'LA', 'European', 'England']","['https://www.turbosquid.com/Search/3D-Models/waste', 'https://www.turbosquid.com/Search/3D-Models/recycling', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/recycle', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/trash', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/american', 'https://www.turbosquid.com/Search/3D-Models/la', 'https://www.turbosquid.com/Search/3D-Models/european', 'https://www.turbosquid.com/Search/3D-Models/england']","GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Waste Recycling Building.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 9 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 11911 polygons- 13725 verticesTEXTURE INFORMATION:-- 7 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 5 JPG file.- 1018x1024 - 1 JPG file.- 1024x1021 - 1 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 11 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included." +Hobs collection 3D,DDD_Artist," +Free +", - Editorial Uses Only,2019-06-20," + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'cooktop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/cooktop']","['cooktop', 'ceramic', 'glass', 'induction', 'hob', 'cooker', 'stove', 'heater', 'built-in', 'panel', 'plate', 'surface', 'top', 'zone', 'home', 'kitchen', 'interior', 'appliance', 'appliances', 'cooking', 'cook']","['https://www.turbosquid.com/Search/3D-Models/cooktop', 'https://www.turbosquid.com/Search/3D-Models/ceramic', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/induction', 'https://www.turbosquid.com/Search/3D-Models/hob', 'https://www.turbosquid.com/Search/3D-Models/cooker', 'https://www.turbosquid.com/Search/3D-Models/stove', 'https://www.turbosquid.com/Search/3D-Models/heater', 'https://www.turbosquid.com/Search/3D-Models/built-in', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/surface', 'https://www.turbosquid.com/Search/3D-Models/top', 'https://www.turbosquid.com/Search/3D-Models/zone', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/appliance', 'https://www.turbosquid.com/Search/3D-Models/appliances', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/cook']","This is a collection of medium-detailed 3d models of hobs, made using 3ds max, rendered via Corona renderer.Textures are 1024px by wide sideEnvironment/lights setup includedYou can get it for free now! And please, don't forget to check my other productsThanks!" +Building 14 3D model,arch_3d," +Free +", - All Extended Uses,2019-06-20," + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building']","['building', 'block', 'modern', 'house', 'home', 'apartment', 'brick', 'architecture', 'exterior', 'office', 'simple', 'urban', 'city', 'beach', 'American', 'LA', 'design', 'European', 'England']","['https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/beach', 'https://www.turbosquid.com/Search/3D-Models/american', 'https://www.turbosquid.com/Search/3D-Models/la', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/european', 'https://www.turbosquid.com/Search/3D-Models/england']","GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Building 14.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 8 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 25331 polygons- 33896 verticesTEXTURE INFORMATION:-- 4 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 4 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 9 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included." +3D model Cartoon Character_1,Xpro4b," +Free +", - All Extended Uses,2019-06-20,,"['3D Model', 'characters', 'people', 'man', 'cartoon man']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/cartoon-man']","['Character', 'low', 'poly', 'with', 'bones', 'game', 'controlled', 'cartoon', 'ready', 'for', 'animation']","['https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/with', 'https://www.turbosquid.com/Search/3D-Models/bones', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/controlled', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/animation']","FREE TO THE END OF THE WEEK !!!Low poly cartoon man model. Attention!!! All movements of the model and additional objects in the form of weapons in the photo are made as an example! Only a character model with bones and no animation will be present in the project!The project includes:- Model of low poly character (vert - 1082 edges -2147 faces - 1078) in format blend,FBX, OBJ.- Textures for the model with a resolution of 2048x2048 pixels in png format.Made UV scan without intersections. The name of the material corresponds to the name of the texture." +Building_1(1) model,tkarci1," +Free +", - All Extended Uses,2019-06-20," + + +3D Studio 2018 + + + + +FBX 2018 + + + + +Other 2018 + + + + +OBJ 2018 + +","['3D Model', 'architecture', 'building', 'commercial building', 'office building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/office-building']","['house', 'building', 'vray', '3ds', 'max', 'architehture']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/architehture']","High quality detailed exterior model. Modelled with 3ds Max 2018 and rendered with V-Ray 4.1 V-Ray Lighting, environment, all textures and materials are included.You can use this modern design in games or projects.Because the coating quality is high, rendering may take a long time, but I received the rendering in a short time.In addition, since the modeling is entirely mine, almost all of them are made as poly modeling.Changing the Colors of the Models is very easy.I tried to keep the price cheap.Thanks..." +Sc-fi Mixer 01 3D,BartalamBane," +Free +", - All Extended Uses,2019-06-20," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'technology', 'electrical accessories', 'induction coil']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/electrical-accessories', 'https://www.turbosquid.com/3d-model/induction-coil']","['SciFi', 'UE4', 'blender', 'industry', 'technology', 'gamedev', 'lowpoly', 'device', 'electronics', 'future', 'science', 'laboratory', 'cyberpunk', 'leveldesign', 'PBR']","['https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/ue4', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/industry', 'https://www.turbosquid.com/Search/3D-Models/technology', 'https://www.turbosquid.com/Search/3D-Models/gamedev', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/device', 'https://www.turbosquid.com/Search/3D-Models/electronics', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/laboratory', 'https://www.turbosquid.com/Search/3D-Models/cyberpunk', 'https://www.turbosquid.com/Search/3D-Models/leveldesign', 'https://www.turbosquid.com/Search/3D-Models/pbr']","3D Low Poly Model 'Sc-fi Mixer 01' for Game Engines.This 'Sc-fi Mixer 01' can be used as an element of the environment at your game level, or for other purposes.The model was tested on the game engine UE4.- Model format:1. FBX2. Obj3. Blender" +3D Gladius model,woxec," +Free +", - All Extended Uses,2019-06-19," + + +OBJ + + + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/gladius']","['low', 'poly', 'pbr', 'melee', 'weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/gladius']","This is a high quality low poly ancient Gladius. Modeled in 3ds max and textured in Substance Painter.FBX,MAX, OBJ files are provided.TEXTURES2048 and 2048 resolutions are provided.Base color Height Metallic AO Normal RoughnessUnity3D-Albedo -Normal -MetallicUE4-Base Color -Normal -OcclusionRoughnessMetallic" +Game-ready Spaceship Free low-poly 3D model 3D,thomas simon mattia," +Free +", - Editorial Uses Only,2019-06-19," + + +3D Studio + +","['3D Model', 'vehicles', 'spacecraft', 'science fiction spacecraft', 'space battleship']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/science-fiction-spacecraft', 'https://www.turbosquid.com/3d-model/space-battleship']","['spaceship', 'spacecraft', 'space', 'starfighter', 'starship', 'sci-fi']","['https://www.turbosquid.com/Search/3D-Models/spaceship', 'https://www.turbosquid.com/Search/3D-Models/spacecraft', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/starfighter', 'https://www.turbosquid.com/Search/3D-Models/starship', 'https://www.turbosquid.com/Search/3D-Models/sci-fi']","I'm giving away this model I've put a big effort on for free, please rate and comment, it would help me a lotPBR Low-poly VR/AR Game-ready 3D model of a spaceshipA Corvette is a small starfighter swith light arms. Due to its high maneuverability it's great in atmoshere-level battlefields.The model is great for game development, VFX, AR/VR and other real-time applications.Works in Unity, Unreal Engine and suchIncludes: .fbx, .obj, .dae, .3ds, .ply" +Nelson Swag Leg Rectangular Dining Table 3D,3Dmitruk," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-19," + + +3D Studio + + + + +FBX 2009 + + + + +OBJ + +","['3D Model', 'furnishings', 'table', 'dining table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table']","['George', 'Nelson', 'Swag', 'desk', 'Scandinavian', 'Furniture', 'Danish', 'wooden', 'mid-century', 'midcentury', 'table', 'dinner', 'traditional', 'trendy', 'walnut', 'minimalism']","['https://www.turbosquid.com/Search/3D-Models/george', 'https://www.turbosquid.com/Search/3D-Models/nelson', 'https://www.turbosquid.com/Search/3D-Models/swag', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/scandinavian', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/danish', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/mid-century', 'https://www.turbosquid.com/Search/3D-Models/midcentury', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/dinner', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/trendy', 'https://www.turbosquid.com/Search/3D-Models/walnut', 'https://www.turbosquid.com/Search/3D-Models/minimalism']","Dimensions: 915 x 1370 x 750 mm;2 different table top materials are available.- Lighting setup is not included in the file!- No additional plugin is needed to open the model.- High quality models. Detailed enough for close-up renders.- The models is highly accurate and based on the manufacturers original dimensions and technical data.- In the archive you can find files in the format .max 2011, vray .fbx, .obj, .3ds- Geometry: Polygonal- Polygons: 23,088- Vertices: 23,184- Textures: Yes- Materials: Yes- Rigged: No- Animated: No- UV Mapped: Yes- Unwrapped UVs: Yes, non-overlapping" +3D Nelson Swag Leg Rectangular Work Table,3Dmitruk," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-19," + + +3D Studio + + + + +FBX 2009 + + + + +OBJ + +","['3D Model', 'furnishings', 'desk', 'writing desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/writing-desk']","['George', 'Nelson', 'Swag', 'desk', 'Scandinavian', 'Furniture', 'Danish', 'wooden', 'mid-century', 'midcentury', 'table', 'traditional', 'walnut', 'work', 'space']","['https://www.turbosquid.com/Search/3D-Models/george', 'https://www.turbosquid.com/Search/3D-Models/nelson', 'https://www.turbosquid.com/Search/3D-Models/swag', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/scandinavian', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/danish', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/mid-century', 'https://www.turbosquid.com/Search/3D-Models/midcentury', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/walnut', 'https://www.turbosquid.com/Search/3D-Models/work', 'https://www.turbosquid.com/Search/3D-Models/space']","Dimensions: 915 x 1370 x 750 mm;2 different table top materials are available.- Lighting setup is not included in the file!- No additional plugin is needed to open the model.- High quality models. Detailed enough for close-up renders.- The models is highly accurate and based on the manufacturers original dimensions and technical data.- In the archive you can find files in the format .max 2011, vray .fbx, .obj, .3ds- Geometry: Polygonal- Polygons: 14,806- Vertices: 14,876- Textures: Yes- Materials: Yes- Rigged: No- Animated: No- UV Mapped: Yes- Unwrapped UVs: Yes, non-overlapping" +3D Low Poly Fantasy Dagger 3D,Blitzerpop," +Free +", - All Extended Uses,2019-06-18," + + +FBX + + + + +OBJ + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'fantasy sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/fantasy-sword']","['dagger', 'knife', 'asset', 'lowpoly', 'game', 'enchanted', 'rune', 'water', 'elemental']","['https://www.turbosquid.com/Search/3D-Models/dagger', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/enchanted', 'https://www.turbosquid.com/Search/3D-Models/rune', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/elemental']",3D Dagger Game Ready Low Poly ModelPBR Textures 4096x4096 (Seperate for blade and the holder) - Hand Painted. (can be found under supporting items)1. Base color2. Roughness3. Normal4. Metallic5. Height6. EmissiveHigh poly .obj and .fbx file included.A very low poly model consisting of 426 polygons.Tested in Unity. +Fantasy Turtle Sculpture 3D model,Diktas," +Free +", - All Extended Uses,2019-06-18," + + +FBX + + + + +OBJ + +","['3D Model', 'art', 'sculpture', 'statue', 'animal statue']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/animal-statue']","['sculpting', 'turtle', 'dragon', 'fantasy', 'animal', 'reptile', 'underwater', '3d', 'model']","['https://www.turbosquid.com/Search/3D-Models/sculpting', 'https://www.turbosquid.com/Search/3D-Models/turtle', 'https://www.turbosquid.com/Search/3D-Models/dragon', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/reptile', 'https://www.turbosquid.com/Search/3D-Models/underwater', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model']",Simple Sculpting. Turtle with Dragon head and cave on the back. Sculpting with Autodesk Maya 2018. +3D Mega Man Star Force: Wave Scanner (REDESIGN),Erick Bueno da Silva," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-18,,"['3D Model', 'technology', 'video devices', 'video games', 'handheld game console']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/video-games', 'https://www.turbosquid.com/3d-model/handheld-game-console']","['Mega', 'Man', 'Star', 'Force', 'Ryuusei', 'no', 'Rockman', 'Wave', 'Scanner']","['https://www.turbosquid.com/Search/3D-Models/mega', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/star', 'https://www.turbosquid.com/Search/3D-Models/force', 'https://www.turbosquid.com/Search/3D-Models/ryuusei', 'https://www.turbosquid.com/Search/3D-Models/no', 'https://www.turbosquid.com/Search/3D-Models/rockman', 'https://www.turbosquid.com/Search/3D-Models/wave', 'https://www.turbosquid.com/Search/3D-Models/scanner']","////////////////////////////////////////////////////////////////////////////////////////////////////////////// This is the second terminal in the mega man starforce series. It is first seen as the terminal of gemini spark in the anime, later it becomes the primary terminal after the wave transer is destroyed. Unfortunately it never made a apeanrence in the second starforce as it used the Star Carrier istead. Takara released a wave scanner handheld game that you cound connect to the NDS and use phsical battle card thru the wave scanner scaning the bar codes, The wave scanner design are inconsitent in the anime so i decided to make a redesign. THEME=REALISM/FUTURISM /+/-//-X+///////////////////////////////////////////////////////////////////////////////////////////////////////////////" +Mosque model,arch_3d," +Free +", - All Extended Uses,2019-06-17," + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'building', 'religious building', 'mosque']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/religious-building', 'https://www.turbosquid.com/3d-model/mosque']","['3d', 'model', 'mosque', 'muslim', 'prayer', 'space', 'holy', 'arab', 'arabian', 'asian', 'building', 'modern', 'brick', 'architecture', 'exterior', 'simple', 'urban', 'city', 'design']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/mosque', 'https://www.turbosquid.com/Search/3D-Models/muslim', 'https://www.turbosquid.com/Search/3D-Models/prayer', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/holy', 'https://www.turbosquid.com/Search/3D-Models/arab', 'https://www.turbosquid.com/Search/3D-Models/arabian', 'https://www.turbosquid.com/Search/3D-Models/asian', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/design']","GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Mosque.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 9 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 34967 polygons- 34584 verticesTEXTURE INFORMATION:-- 3 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 3 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 7 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included." +3D Stair,Brombur," +Free +", - All Extended Uses,2019-06-17," + + +Other + + + + +Other 2016 + + + + +3D Studio 2016 + + + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'building components', 'stair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/stairs']","['stair', 'vray', 'architecture', 'wood', 'house']","['https://www.turbosquid.com/Search/3D-Models/stair', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/house']",Render VrayH- 3000 mmL- 3700 mmW-4000 mmArchives included:-3d max scene 2016 -3d max scene 2013 -OBJ -FBX -materials -3dsThanks for downloading my models. I will highly appreciate your opinion regarding the quality of my models. +Stylized Girl 2019 Free Edition 3D model,Rodesqa," +Free +", - All Extended Uses,2019-06-16," + + +Other + +","['3D Model', 'characters', 'people', 'woman', 'cartoon woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman', 'https://www.turbosquid.com/3d-model/cartoon-woman']","['Stylized', 'Female', 'Girl', 'High', 'poly', 'base', 'lowpoly', '3d', 'blender', 'Zbrush', 'maya', '3dsMax']","['https://www.turbosquid.com/Search/3D-Models/stylized', 'https://www.turbosquid.com/Search/3D-Models/female', 'https://www.turbosquid.com/Search/3D-Models/girl', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/base', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/3dsmax']","With this package, you get all the object files both high and low poly and you get the Zbrush file." +simple stylus/pen 3D,Minshu," +Free +", - All Extended Uses,2019-06-16," + + +FBX + +","['3D Model', 'office', 'office supplies', 'writing instrument', 'pen', 'stylus']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/writing-instrument', 'https://www.turbosquid.com/3d-model/pen', 'https://www.turbosquid.com/3d-model/stylus']","['stylus', 'pen', 'simple', 'apple', 'blender', 'editable', 'cycles', 'render', 'white']","['https://www.turbosquid.com/Search/3D-Models/stylus', 'https://www.turbosquid.com/Search/3D-Models/pen', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/apple', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/editable', 'https://www.turbosquid.com/Search/3D-Models/cycles', 'https://www.turbosquid.com/Search/3D-Models/render', 'https://www.turbosquid.com/Search/3D-Models/white']",.blend container material and easily +3D Wooden Crate,Shermadini," +Free +", - All Extended Uses,2019-06-16," + + +Other textures + + + + +Collada + + + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'interior design', 'housewares', 'box', 'wooden box']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/box', 'https://www.turbosquid.com/3d-model/wooden-box']","['wood', 'wooden', 'crate', 'box', 'industrial', 'cargo', 'storage', 'game', 'prop', 'low-poly', 'pbr', 'ue4', 'unity', 'unreal', 'exterior', 'container', 'other']","['https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/cargo', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/prop', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/ue4', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/other']","Wooden Crate/Box 3D model.AVAILABLE FILE FORMATS: -FBX -OBJ -Collada(DAE) -STLFREE low-poly wooden crate/box. Can be used for renderings with high detail or games. Was tested in Blender 2.8 as well as UE4. Includes Textures like: Albedo, Normal, Roughness, AO, Displacement. Has only 78 Polys and 80 Faces. You can check out more models like this by clicking on my name.IF YOU HAVE ANY PROBLEMS, CONTACT ME." +Gothic art Wall Corner Design 3D model,Toon coffer," +Free +", - All Extended Uses,2019-06-15," + + +FBX + +","['3D Model', 'interior design', 'finishes', 'molding', 'corner element']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/finishes', 'https://www.turbosquid.com/3d-model/molding', 'https://www.turbosquid.com/3d-model/corner-element']","['ornament', 'VIP', 'Gothic', 'art', 'wall', 'luxury', 'ornaments', 'decor']","['https://www.turbosquid.com/Search/3D-Models/ornament', 'https://www.turbosquid.com/Search/3D-Models/vip', 'https://www.turbosquid.com/Search/3D-Models/gothic', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/luxury', 'https://www.turbosquid.com/Search/3D-Models/ornaments', 'https://www.turbosquid.com/Search/3D-Models/decor']",this is free model for the all artist you can use this model but you cant sale this model because this is free open model ( you can download this model for practices not for sale )more information go and search on youtube ( toon coofer ) +RCA Plug 3D,cesarfrias31," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-13," + + +FBX + + + + +Other + +","['3D Model', 'technology', 'electrical accessories', 'a/v connector', 'rca jack']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/electrical-accessories', 'https://www.turbosquid.com/3d-model/av-connector', 'https://www.turbosquid.com/3d-model/rca-jack']","['electronics', 'video', 'audio', 'rca', 'plug', 'tv', 'television', 'conectors']","['https://www.turbosquid.com/Search/3D-Models/electronics', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/audio', 'https://www.turbosquid.com/Search/3D-Models/rca', 'https://www.turbosquid.com/Search/3D-Models/plug', 'https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/conectors']",Like it if you liked the model. Thank you. Features:                Low poly model                Optimized for the highest performance                Colors can be easily modified                Original model optimized for Cycles Blender                Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview) +3D KALININ,edikm1," +Free +", - All Extended Uses,2019-06-13," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'art', 'sculpture', 'statue', 'bust']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/bust']","['Mikhail', 'Kalinin', '1917', 'socialism', 'is', 'equality', 'independence', 'progress']","['https://www.turbosquid.com/Search/3D-Models/mikhail', 'https://www.turbosquid.com/Search/3D-Models/kalinin', 'https://www.turbosquid.com/Search/3D-Models/1917', 'https://www.turbosquid.com/Search/3D-Models/socialism', 'https://www.turbosquid.com/Search/3D-Models/is', 'https://www.turbosquid.com/Search/3D-Models/equality', 'https://www.turbosquid.com/Search/3D-Models/independence', 'https://www.turbosquid.com/Search/3D-Models/progress']","Mikhail Kalinin (November 19, 1875 - June 3, 1946)vertices - 21816 , faces - 43628,1.diff.jpg - 8192x81922.cavity .tiff - 8192x81923.object_normals.tiff - 8192x81924.tangent_normals .tiff - 8192x8192Feel free to leave your opinion in comments." +3D Atlantic bluefin tuna,mimi3d," +Free +", - All Extended Uses,2019-06-12," + + +FBX + + + + +Other + +","['3D Model', 'nature', 'animal', 'sea creatures', 'fish', 'tuna']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/sea-creatures', 'https://www.turbosquid.com/3d-model/fish-animal', 'https://www.turbosquid.com/3d-model/tuna']","['sea', 'ocean', 'marine', 'animal', 'fish', 'atlantic', 'bluefin']","['https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/ocean', 'https://www.turbosquid.com/Search/3D-Models/marine', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/fish', 'https://www.turbosquid.com/Search/3D-Models/atlantic', 'https://www.turbosquid.com/Search/3D-Models/bluefin']","This lowpoly model is using 3dmax 2016 the texture is 1024x1024 .TGAavailable in .FBX, .OBJ, .MAX(this is sample)" +Centaur model,ByrdRigs," +Free +", - Editorial Uses Only,2019-06-12,,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'centaur']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/centaur']","['Centaur', 'Rigged', 'Male', 'Human', 'Mythology', 'Creatures']","['https://www.turbosquid.com/Search/3D-Models/centaur', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/mythology', 'https://www.turbosquid.com/Search/3D-Models/creatures']",A centaur that was modeled by baqstudio. I rigged and changed some of the materials a little. All I ask is that you give credit to baqstudio for the model and ByrdRigs for the rig! Enjoy! +Canada Avro CF-105 (Rev) Arrow Solid Assembly Model ( Free) model,RodgerSaintJohn," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-12," + + +Other Step 203 + + + + +Other Sat 17 + + + + +AutoCAD drawing + + + + +DXF + +","['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter jet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-jet']","['Canada', 'Avro', 'CF105', 'Arrow', 'Aircraft', 'Airplane', 'Structure', 'Aeronautics', 'Aerodynamics', 'Engine', 'Propulsion', 'Interceptor', 'Fighter']","['https://www.turbosquid.com/Search/3D-Models/canada', 'https://www.turbosquid.com/Search/3D-Models/avro', 'https://www.turbosquid.com/Search/3D-Models/cf105', 'https://www.turbosquid.com/Search/3D-Models/arrow', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/airplane', 'https://www.turbosquid.com/Search/3D-Models/structure', 'https://www.turbosquid.com/Search/3D-Models/aeronautics', 'https://www.turbosquid.com/Search/3D-Models/aerodynamics', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/propulsion', 'https://www.turbosquid.com/Search/3D-Models/interceptor', 'https://www.turbosquid.com/Search/3D-Models/fighter']","The Canada Avro CF-105 Arrow Solid Assembly Model is defined by 23 sub assembly modules consisting of 200 part primitives.All of my models are developed specifically for use by conceptual designers, experimenters, educators, students and hobbyists. The models are constructed from scratch employing scaling of publicly released simple 3 view drawings and experienced based assumptions. Although general representation is very good - detail accuracy and accountability can be compromised by this approach" +3D Sovremenny Warship LOD1,ES3DStudios," +Free +", - All Extended Uses,2019-06-12," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +OBJ + +","['3D Model', 'vehicles', 'vessel', 'military vessel', 'destroyer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/military-vessel', 'https://www.turbosquid.com/3d-model/destroyer']","['Sovremenny', 'Warship', 'Game', 'Destroyer', 'Frigate', 'Russian', 'Russia', 'Navy', 'Naval', 'USSR', 'Soviet', 'Battle', 'Fleet', 'Warfare', 'War', 'LOD', 'Nastoychivyy', 'DDG', 'DD', 'Guided', 'Missile', 'Ship']","['https://www.turbosquid.com/Search/3D-Models/sovremenny', 'https://www.turbosquid.com/Search/3D-Models/warship', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/destroyer', 'https://www.turbosquid.com/Search/3D-Models/frigate', 'https://www.turbosquid.com/Search/3D-Models/russian', 'https://www.turbosquid.com/Search/3D-Models/russia', 'https://www.turbosquid.com/Search/3D-Models/navy', 'https://www.turbosquid.com/Search/3D-Models/naval', 'https://www.turbosquid.com/Search/3D-Models/ussr', 'https://www.turbosquid.com/Search/3D-Models/soviet', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/fleet', 'https://www.turbosquid.com/Search/3D-Models/warfare', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/lod', 'https://www.turbosquid.com/Search/3D-Models/nastoychivyy', 'https://www.turbosquid.com/Search/3D-Models/ddg', 'https://www.turbosquid.com/Search/3D-Models/dd', 'https://www.turbosquid.com/Search/3D-Models/guided', 'https://www.turbosquid.com/Search/3D-Models/missile', 'https://www.turbosquid.com/Search/3D-Models/ship']","Sovremenny Class Destroyer LOD1 (level of detail model) untextured. Higher detail fully textured versions of this asset are also available, please see TS I.D. 867321 Instructions on how to obtain the textures are included.Part of a huge collection available from ES3DStudios. Many more linked sets available from ES3DStudios in a range of formats. Click 'ES3DStudios' for full range. Renders created with 3ds Max mental ray.Native format is 3DSMax 2014. No 3rd party plugins required. This model is not intended for subdivision. Model built to real-world scale - units used are meters.-----------------" +Tobias Lion Maya rig 3D,cvbtruong," +Free +", - Editorial Uses Only,2019-06-12,,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'big cats', 'lion']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/big-cats', 'https://www.turbosquid.com/3d-model/lion']","['lion', 'realistic', 'game', 'unreal', 'engine', 'unity', 'big', 'cat', 'male']","['https://www.turbosquid.com/Search/3D-Models/lion', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/big', 'https://www.turbosquid.com/Search/3D-Models/cat', 'https://www.turbosquid.com/Search/3D-Models/male']",Tobias Lion Maya rig.Modeled and textured by Tobias Frey.Rigged by Truong Cg Artist.Available for non-commercial use only. Software: Maya 2014 (or higher). Rigged using Advanced Skeleton.Happy animating!Truong Cg artistps: click on my username for more. Cheers. +Mug 3D model,Abscay," +Free +", - All Extended Uses,2019-06-11," + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['fbx', 'obj', 'blend']","['https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/blend']",mug normal +Tree Stump 3D model,Ideas Unlimited," +Free +", - All Extended Uses,2019-06-11," + + +OBJ + +","['3D Model', 'nature', 'plants', 'plant elements', 'tree trunk', 'tree stump']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/plant-elements', 'https://www.turbosquid.com/3d-model/trunk', 'https://www.turbosquid.com/3d-model/tree-stump']","['tree', 'stump', 'nature', 'scan', 'scanned', 'realistic', 'wood', 'woods', 'plant', 'old', 'forest', 'backgrounds', 'elements', 'bark', 'trunk', 'ground', 'environment', 'cracked', 'log', 'branch', 'landscape']","['https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/stump', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/scanned', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/woods', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/backgrounds', 'https://www.turbosquid.com/Search/3D-Models/elements', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/trunk', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/cracked', 'https://www.turbosquid.com/Search/3D-Models/log', 'https://www.turbosquid.com/Search/3D-Models/branch', 'https://www.turbosquid.com/Search/3D-Models/landscape']","Tree Stump 3D Model. Model recreated from 3D Scan Data and completed in Lightwave 3D and Cinema 4DHigh resolution, fully detailed and textured Tree Stump.Detailed enough for close-up renders. Comes with detailed textures.Originally modelled in Lightwave 3d. Final images rendered with Lightwave. This model has been created to real world scale giving very accurate detail and dimensions.Extreme care has been taken to keep polygon count to a minimum to ease render times. Lightwave and Cinema 4D version comes with scene files with object parented to null object.Main features:* This model is suitable for use in broadcast, high-res, advertising, design visualization etc. * The model is an accurate with the real world size and scale.* Model resolutions are optimized for polygon efficiency* No special plugins needed to open scene.* Created with Lightwave 3dFile formats:* Lightwave.lwo* Cinema 4D .C4D* .obj (Multi Format)Notes:* Lightwave and Cinema 4D scene files are included.* Unit system is set to metric.* Model size 800mm* All textures and materials are included and assigned to their relevant objects* 4 textures are included:-Stump_C .png 4096 x 4096Stump _D .png 4096 x 4096Stump _N .png 4096 x 4096Stump _B .png 8192 x 8192Polycount:* 14789 faces and 14531 vertices* Quads: 13986* Triangles: 803* Points: 14531* Previews rendered in Lightwave 3d* Originally rendered in 2015.3 but is backwards compatible.Interested in other models, just click on my user name to see complete selection.Thank you" +Napkin with old napkin ring 3D model,Diza," +Free +", - All Extended Uses,2019-06-11," + + +OBJ + + + + +Other + + + + +FBX + + + + +3D Studio + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'napkin']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/napkin']","['napkin', 'ring', 'blackened', 'silver', 'classical', 'restaurant', 'eating', 'towel', 'dinning', 'set', 'hand', 'serviette', 'accessories', 'vray', 'max', 'detaile']","['https://www.turbosquid.com/Search/3D-Models/napkin', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/blackened', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/classical', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/eating', 'https://www.turbosquid.com/Search/3D-Models/towel', 'https://www.turbosquid.com/Search/3D-Models/dinning', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/serviette', 'https://www.turbosquid.com/Search/3D-Models/accessories', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/detaile']",Classical napkin with right.Model is built to real-world scaleUnits used: millimetersModel Dimensions: 210 mm x 330 mm x 85 mm +3D Asteroid small model,Mykhailo Ohorodnichuk," +Free +", - All Extended Uses,2019-06-10,,"['3D Model', 'science', 'astronomy', 'asteroid']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/astronomy', 'https://www.turbosquid.com/3d-model/asteroid']","['3D', 'model', 'Science', 'Astronomy', 'Asteroids', 'SGI', 'Animation', 'Space', 'Meteor', 'Traditional', 'Game', 'art', 'aerolite']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/astronomy', 'https://www.turbosquid.com/Search/3D-Models/asteroids', 'https://www.turbosquid.com/Search/3D-Models/sgi', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/meteor', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/aerolite']",This is pack of 6 small asteroids for your projectasteroid 1 - 704 facesasteroid 2 - 761 facesasteroid 3 - 700 facesasteroid 4 - 636 facesasteroid 5 - 716 facesasteroid 6 - 856 facesWith 2K color and normal textures +a monument to the terror in Russia 3D model,edikm1," +Free +", - All Extended Uses,2019-06-10," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'architecture', 'site components', 'landscape architecture', 'monument']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/monument']","['a', 'monument', 'to', 'the', 'terror', 'Russia', 'suppression', 'of', 'rebellious', 'slaves', 'in', 'Russia']","['https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/monument', 'https://www.turbosquid.com/Search/3D-Models/to', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/terror', 'https://www.turbosquid.com/Search/3D-Models/russia', 'https://www.turbosquid.com/Search/3D-Models/suppression', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/rebellious', 'https://www.turbosquid.com/Search/3D-Models/slaves', 'https://www.turbosquid.com/Search/3D-Models/in', 'https://www.turbosquid.com/Search/3D-Models/russia']","vertices - 27661 , faces - 55318,1.diff.jpg - 8192x81922.cavity .tiff - 8192x81923.object_normals.tiff - 8192x81924.tangent_normals .tiff - 8192x8192Feel free to leave your opinion in comments." +3D model Simple Cup,IMANSAHA," +Free +", - All Extended Uses,2019-06-09,,"['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['Simple', 'look', 'standard', 'cup', 'or', 'coffee', 'mug']","['https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/look', 'https://www.turbosquid.com/Search/3D-Models/standard', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/or', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/mug']",Model dimension :Length - 10 c.mWidth - 5 c.mThickness - 0.7 c.m +Knife model,Game mob," +Free +", - All Extended Uses,2019-06-08," + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'hunting knife']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/hunting-knife']","['free', 'Knife']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/knife']","Simple knife, one of my first project enjoy." +Chandelier-GameReady 3D model,Mimzz," +Free +", - All Extended Uses,2019-06-08," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp', 'chandelier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp', 'https://www.turbosquid.com/3d-model/chandelier']","['chandelier', 'gameasset']","['https://www.turbosquid.com/Search/3D-Models/chandelier', 'https://www.turbosquid.com/Search/3D-Models/gameasset']",A game ready chandelier that comes with ready-made textures. I used this for my personal project and I'm willing to give it away to other peoples needs. This took 5 days to make with many details added. +3D Marquise ring,KhatriCad," +Free +", - All Extended Uses,2019-06-08," + + +STL 5.0 + + + + +OBJ 5.0 + +","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'gold ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/gold-ring']","['3D', 'Model', 'and', 'beauty', 'apparel', 'jewelry', 'fashion', 'ring', 'sterling', 'STL', 'Printable', 'Print', 'Marquise', 'Rose', 'Petals']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/sterling', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/marquise', 'https://www.turbosquid.com/Search/3D-Models/rose', 'https://www.turbosquid.com/Search/3D-Models/petals']","Beautiful Leaf Petals Ring or Marquise shaped ring for gold and silver purpose.Thickness: 1.5mm Ringsize: 18mm Diameter USA ring Size: 8 Gem Size: 1.55 mmPictures Contains Model WeightIf you Want to customize this model before purchasing, Increasing or decreasing Thickness andSize of the piece. Please contact me. i will be happy to obliged.*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review" +3D Heart Shape Dual Ring,KhatriCad," +Free +", - All Extended Uses,2019-06-08," + + +STL 5.0 + + + + +OBJ 5.0 + +","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'fashion ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/fashion-ring']","['3D', 'Model', 'and', 'beauty', 'apparel', 'jewelry', 'fashion', 'ring', 'Heart', 'Shaped', 'Wedding', 'STL', 'Printable', 'Print']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/heart', 'https://www.turbosquid.com/Search/3D-Models/shaped', 'https://www.turbosquid.com/Search/3D-Models/wedding', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/print']","Heart Shape Dual Engagement ringGemsize: 1.65mm Thickness: 2.2mm (Idle for Gold, Silver and other Metal)i can reduce Thickness if requested.If you Want to customize this model before purchasing like Increasing and decreasing Thickness or Size of the piece. Please contact me. i will happy to obliged*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review" +3D Oval Shaped Earrings model,KhatriCad," +Free +", - All Extended Uses,2019-06-08," + + +STL 5.0 + + + + +OBJ + +","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'earrings']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/earrings']","['Jewelry', 'Earrings', 'Gold', 'Silver', 'Apparel', 'Indian', '3D', 'model', 'Fashion', 'Engagement', 'Ring', 'Style']","['https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/earrings', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/indian', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/engagement', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/style']",Pave Oval Shaped Indian Style Earrings Designed for Gold and Silver casting. Thickess is appropriate for Silver casting. Althrough if request i can change thickness and reduce it if anyone want less Weight Item for Gold.Thickness: 1.0mmGem size: 1.55 and 1.35mm Comes with 2 piecesIf you Want to customize this model before purchasing like Increasing and decreasing Thickness or Size of the piece. Please contact me. i will happy to obliged***All My STLS are Repaired In Appropriate Printing Software Before publish*** +Simple box model,andylights," +Free +", - All Extended Uses,2019-06-08,,"['3D Model', 'architecture', 'building components', 'balustrade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/balustrade']",['box'],['https://www.turbosquid.com/Search/3D-Models/box'],Just a simple box Its uselessMaybe not to you though +3D model Wicker armchair,YKPRO," +Free +", - All Extended Uses,2019-06-07," + + +FBX + + + + +OBJ + +","['3D Model', 'furnishings', 'seating', 'chair', 'dining chair', 'captains chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/dining-chair', 'https://www.turbosquid.com/3d-model/captains-chair']","['chair', 'seat', 'armchair', 'furniture', 'interior', 'wicher']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/wicher']",Wicker armchairCreated with 3d max 2018 (saved as 2015 version)Adapted for Corona render and VrayHigh quality of modelFile formats:max 3ds Max 2015fbxobj +3D deer model,oryx1234," +Free +", - All Extended Uses,2019-06-07," + + +OBJ 2018 + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'deer', 'cartoon reindeer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/deer', 'https://www.turbosquid.com/3d-model/cartoon-reindeer']","['deer', 'wild', 'animal', 'antelope', 'blender']","['https://www.turbosquid.com/Search/3D-Models/deer', 'https://www.turbosquid.com/Search/3D-Models/wild', 'https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/antelope', 'https://www.turbosquid.com/Search/3D-Models/blender']",This model has no texture or materials since i couldn't figure out any way to put them in. +F16C Falcon Watermark 3D,ES3DStudios," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-07," + + +Other Textures + + + + +3D Studio + + + + +Collada + + + + +AutoCAD drawing + + + + +FBX + + + + +OpenFlight + + + + +OBJ + + + + +VRML + + + + +DirectX + +","['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter jet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-jet']","['F16', 'F-16', 'F16C', 'F-16C', 'Viper', 'USAF', 'Game', 'LOD', 'Sim', 'US', 'Air', 'Force', 'Fighter', 'Jet', 'Warplane', 'Attack', 'HARM', 'JDAM', 'American', 'Falcon', 'Mod', 'Block', '50']","['https://www.turbosquid.com/Search/3D-Models/f16', 'https://www.turbosquid.com/Search/3D-Models/f-16', 'https://www.turbosquid.com/Search/3D-Models/f16c', 'https://www.turbosquid.com/Search/3D-Models/f-16c', 'https://www.turbosquid.com/Search/3D-Models/viper', 'https://www.turbosquid.com/Search/3D-Models/usaf', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/lod', 'https://www.turbosquid.com/Search/3D-Models/sim', 'https://www.turbosquid.com/Search/3D-Models/us', 'https://www.turbosquid.com/Search/3D-Models/air', 'https://www.turbosquid.com/Search/3D-Models/force', 'https://www.turbosquid.com/Search/3D-Models/fighter', 'https://www.turbosquid.com/Search/3D-Models/jet', 'https://www.turbosquid.com/Search/3D-Models/warplane', 'https://www.turbosquid.com/Search/3D-Models/attack', 'https://www.turbosquid.com/Search/3D-Models/harm', 'https://www.turbosquid.com/Search/3D-Models/jdam', 'https://www.turbosquid.com/Search/3D-Models/american', 'https://www.turbosquid.com/Search/3D-Models/falcon', 'https://www.turbosquid.com/Search/3D-Models/mod', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/50']","F16 Falcon low poly 3D model (free version) of the US Air Force. Single 512 square diffuse texture, with watermark. This asset is part of a huge related collection available from ES3DStudios.Texture Res: Single 512 x 512 diffuse map (with watermark).Please note: texture comes in its own zip download. (download this file with whatever format you require). Higher poly resolution versions of this model are also available - approx 10k polys (TS I.D 792387)This free version is provided as a sample and is not for commercial use.-----------" +3D spinny thing,Razeh," +Free +", - Editorial Uses Only,2019-06-06,,"['3D Model', 'toys and games', 'toys', 'spinning top', 'fidget spinner']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/toys', 'https://www.turbosquid.com/3d-model/spinning-top', 'https://www.turbosquid.com/3d-model/fidget-spinner']",['spin'],['https://www.turbosquid.com/Search/3D-Models/spin'],This is a 3d model of a fidget spinner. +TV-Low Poly 3D model,cesarfrias31," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-06-06," + + +FBX + + + + +Other + +","['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/flatscreen-television']","['TV', 'televisions', 'screen', 'display', 'video']","['https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/televisions', 'https://www.turbosquid.com/Search/3D-Models/screen', 'https://www.turbosquid.com/Search/3D-Models/display', 'https://www.turbosquid.com/Search/3D-Models/video']",Like it if you liked the model. Thank you. Features:                Low poly model                Optimized for the highest performance                Colors can be easily modified                Original model optimized for Cycles Blender                Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview) +3D model Bed 02,sandrarocko," +Free +", - Editorial Uses Only,2019-06-06," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'furnishings', 'bed', 'queen bed']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bed', 'https://www.turbosquid.com/3d-model/queen-bed']","['bed', 'bedroom', 'interior', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/furniture']","3D model of the Bed*The materials are available in the blend file format*Scene lighting and is included in .blend file*Renderer Cycles in Blender*All the objects of the model are named*X,Y,Z (0,0,0) *Subdivision level: 1/2*Wireframe on subdivision level: 1/2*For additional formats, all materials are included in 'supporting items'" +3D Black Hanging Lamp 3D Model model,cgaxis," +Free +", - All Extended Uses,2019-06-05," + + +Other + + + + +Other textures + + + + +OBJ + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['black', 'hanging', 'glass', 'decorative', 'lamp', 'lightsource', 'electric', 'lighting', 'power', 'lightbulb', 'interior']","['https://www.turbosquid.com/Search/3D-Models/black', 'https://www.turbosquid.com/Search/3D-Models/hanging', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/decorative', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/lightsource', 'https://www.turbosquid.com/Search/3D-Models/electric', 'https://www.turbosquid.com/Search/3D-Models/lighting', 'https://www.turbosquid.com/Search/3D-Models/power', 'https://www.turbosquid.com/Search/3D-Models/lightbulb', 'https://www.turbosquid.com/Search/3D-Models/interior']","Black hanging lamp 3d model with glass lightshade and decorative lightbulb. Compatible with 3ds max 2010 (V-Ray, Mental Ray, Corona) or higher, Cinema 4D R15 (V-Ray, Advanced Renderer), Unreal Engine, FBX and OBJ." +3D Sword,blurrypxl," +Free +", - All Extended Uses,2019-06-05,,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'longsword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/longsword']","['weapon', 'melee', 'two-handed', 'sword']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/two-handed', 'https://www.turbosquid.com/Search/3D-Models/sword']","This is my first upload, i dunno to descript it. I just hope you like it." +3D model WW2 Czech Hedgehog Anti Tank,The3DBadger," +Free +", - All Extended Uses,2019-06-05," + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'site components', 'military obstacle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/military-obstacle']","['ww2', 'czech', 'hedgehog', 'anti', 'tank', 'stopper', 'trap', 'the3dbadger', '3d', 'pbr', 'model', 'free']","['https://www.turbosquid.com/Search/3D-Models/ww2', 'https://www.turbosquid.com/Search/3D-Models/czech', 'https://www.turbosquid.com/Search/3D-Models/hedgehog', 'https://www.turbosquid.com/Search/3D-Models/anti', 'https://www.turbosquid.com/Search/3D-Models/tank', 'https://www.turbosquid.com/Search/3D-Models/stopper', 'https://www.turbosquid.com/Search/3D-Models/trap', 'https://www.turbosquid.com/Search/3D-Models/the3dbadger', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/free']","Ready to render PBR 3D model of a Czech hedgehog, created in Maya 2018.The Czech hedgehog is a static anti-tank obstacle defense made of metal angle beams or I-beams (that is, lengths with an L- or I-shaped cross section). The hedgehog is very effective in keeping light to medium tanks and vehicles from penetrating a line of defense; it maintains its function even when tipped over by a nearby explosion. Although Czech hedgehogs may provide some scant cover for infantry, infantry forces are generally much less effective against fortified defensive positions than mechanized units.ABOUT- This model was originally created to be used in modern render engines- High quality polygonal model built to accurate real-world scale- PBR textures- Game ready- Optimized, non-overlapping UVs- Optimized mesh for maximum texel density- Relative texture paths- Clean scene that opens without any errorsSPECIFICATIONS- This model was created using real-life reference and is modeled in a real-world scale using meters- The .mb/.ma scene contains 1 object with correct naming and pivots for easy-use/animation- Total faces - 1876- Total vertices - 1945- Correct smoothing groups, centered pivot at 0,0,0- 1 Group (CzechHedgehog_grp)- All parts can be seperated easily to make custom groups if needed- 2 Display layers - Mesh, cameras + lights- Contains some poles on flat surfaces, but does not affect the model's renders whatsoeverFILE FORMATS- .mb (maya, native)- .ma (maya, native)- .obj- .fbxRENDERS- All shown images are rendered using Marmoset ToolbagTEXTURES- All nescessary maps are included to make sure the model can render in any modern engine- 1x CzechHedgehog PBR 4K 4096x2096 .png (Diffuse, Metallic, Roughness, AO, Normal, Glossiness, IOR, Reflection, MetallicSmoothness)Thank you for your support.The3DBadger" +3D semi auto rifle model,desmundo," +Free +", - All Extended Uses,2019-06-04,,"['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/raygun']","['smei', 'automatic', 'rifle', 'gun', 'fantasy']","['https://www.turbosquid.com/Search/3D-Models/smei', 'https://www.turbosquid.com/Search/3D-Models/automatic', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/fantasy']",A semi automatic rifle I made for fun. +CUP 3D,lazaro322," +Free +", - All Extended Uses,2019-06-04," + + +3D Studio + + + + +Other + + + + +Collada 1.5 + + + + +DXF + + + + +FBX + + + + +OBJ + + + + +STL + + + + +VRML + + + + +DirectX + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['cup', 'mug', 'coffee', 'tea', 'drink', 'ceramic', 'glass', 'kitchen', 'editable', 'subdivide', 'low', 'poly', '3d', 'model', 'max', 'fbx', 'obj']","['https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/ceramic', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/editable', 'https://www.turbosquid.com/Search/3D-Models/subdivide', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/obj']",Mug. Model is 10 aprox------------------------------------------------------------------------------Native File Format: c4d +Polygonal island model,lazaro322," +Free +", - All Extended Uses,2019-06-04," + + +3D Studio + + + + +DXF + + + + +OBJ + + + + +DirectX + + + + +Collada 1.5 + +","['3D Model', 'nature', 'landscapes', 'island']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/island']","['landscape', 'nature', 'tree', 'cloud', 'horizon', 'natural', 'environment', 'low', 'poly', 'quality', 'lowpoly', 'island', 'stylized', 'sky', 'cartoon', 'real', 'time', 'game', 'engine', 'pine', '3d', 'floating']","['https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/cloud', 'https://www.turbosquid.com/Search/3D-Models/horizon', 'https://www.turbosquid.com/Search/3D-Models/natural', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/quality', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/island', 'https://www.turbosquid.com/Search/3D-Models/stylized', 'https://www.turbosquid.com/Search/3D-Models/sky', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/real', 'https://www.turbosquid.com/Search/3D-Models/time', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/pine', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/floating']","Isla poligonal con detalle medio, modelada en Cinema 4D" +3D Viking Helmet model,HeeHee23," +Free +", - All Extended Uses,2019-06-04," + + +Other 2016 + +","['3D Model', 'weaponry', 'armour', 'helmet', 'military helmet', 'medieval helmet', 'viking helmet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/helmet', 'https://www.turbosquid.com/3d-model/military-helmet', 'https://www.turbosquid.com/3d-model/medieval-helmet', 'https://www.turbosquid.com/3d-model/viking-helmet']",['#helmet'],['https://www.turbosquid.com/Search/3D-Models/%23helmet'],Viking Helmet +3D Backdrop treeline with alpha channel,Lewiw," +Free +", - All Extended Uses,2019-06-03,,"['3D Model', 'nature', 'landscapes', 'forest']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/forest']","['treeline', 'treelines', 'tree', 'alpha', 'channel', 'transparent', 'transparency', 'png', 'hdri', 'backdrop', 'image', 'picture', 'interior', 'exterior', 'background', 'outdoor']","['https://www.turbosquid.com/Search/3D-Models/treeline', 'https://www.turbosquid.com/Search/3D-Models/treelines', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/alpha', 'https://www.turbosquid.com/Search/3D-Models/channel', 'https://www.turbosquid.com/Search/3D-Models/transparent', 'https://www.turbosquid.com/Search/3D-Models/transparency', 'https://www.turbosquid.com/Search/3D-Models/png', 'https://www.turbosquid.com/Search/3D-Models/hdri', 'https://www.turbosquid.com/Search/3D-Models/backdrop', 'https://www.turbosquid.com/Search/3D-Models/image', 'https://www.turbosquid.com/Search/3D-Models/picture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/background', 'https://www.turbosquid.com/Search/3D-Models/outdoor']","WARNING! This is not a 3D model.(Easier to find with 3D model category.)This is a free pack of backdrop treelines. These are backdrop images for 3D scenes. They can be used eg. interior design, exterior scenes or anywhere to hide the edge of the plane. You can add life to your interior scene with these png images with alpha channel. These images react with the sun due to the alpha channels. This zip file cointains a blender file,a rendered image from the blender file and 7. Each of these images have different dimensions. The description information of the polygons and vertices, are fake. Lewiw" +"3D Realistic Machine Pistole (Gameready, rigged)",renedominick1999," +Free +", - All Extended Uses,2019-06-03," + + +FBX + + + + +Other png + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'assault rifle', 'p90']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/assault-rifle', 'https://www.turbosquid.com/3d-model/p90']","['Weapon', 'Gun', 'Machine', 'Pistol', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'scope', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/scope', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","HIgh-quality 3D model of a realist-looking Machine Pistol.Includes:-realworld-scaled, rigged Model of a Machine Pistol-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products." +"3D Realistic Pistol Model (gameready, rigged)",renedominick1999," +Free +", - Editorial Uses Only,2019-06-02," + + +FBX + + + + +Other png + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'semi-automatic pistol']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun', 'https://www.turbosquid.com/3d-model/semi-automatic-pistol']","['Weapon', 'Gun', 'PIstol', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'lowpoly', 'Glock', '18']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/glock', 'https://www.turbosquid.com/Search/3D-Models/18']","High-quality 3D model of a realist-looking Pistol.Includes:-realworld-scaled, rigged Model of a Pistol-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products." +"3D Realistic Silenced Sniper Rifle (Gameready, rigged) model",renedominick1999," +Free +", - All Extended Uses,2019-06-02," + + +FBX + + + + +Other png + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sniper rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/sniper-rifle']","['Weapon', 'Gun', 'Sniper', 'Rifle', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/sniper', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","High-quality 3D model of a realist-looking Sniper Rifle.Includes:-realworld-scaled, rigged Model of a Sniper Rifle-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products." +Door of the moon 3D model,DuDeHTM," +Free +", - All Extended Uses,2019-06-01," + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'site components', 'landscape architecture', 'monument']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/monument']","['door', 'relistic', 'low', 'poly', 'monument', 'rock', 'stone', 'old', 'architecture']","['https://www.turbosquid.com/Search/3D-Models/door', 'https://www.turbosquid.com/Search/3D-Models/relistic', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/monument', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/architecture']", +"Realistic Assault Rifle (Gameready, rigged) model",renedominick1999," +Free +", - All Extended Uses,2019-06-01," + + +FBX + + + + +Other png + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'assault rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/assault-rifle']","['Weapon', 'Gun', 'Assault', 'Rifle', 'Game', 'rigged', 'optimized', '4k', 'textures', 'uv', 'modern', 'lowpoly', 'G', '36']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/assault', 'https://www.turbosquid.com/Search/3D-Models/rifle', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/4k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/g', 'https://www.turbosquid.com/Search/3D-Models/36']","High-quality 3D model of a realist-looking Assault Rifle.Includes:-realworld-scaled, rigged Model of an Assault Rifle-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products." +3D Simple dirty bed,nestofgames," +Free +", - All Extended Uses,2019-06-01," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'bed', 'double bed']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bed', 'https://www.turbosquid.com/3d-model/double-bed']","['dirty', 'dust', 'horror', 'games', 'bed', 'bedroom', 'ue4', 'unity', 'maya', 'game', 'asset', 'old', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/dirty', 'https://www.turbosquid.com/Search/3D-Models/dust', 'https://www.turbosquid.com/Search/3D-Models/horror', 'https://www.turbosquid.com/Search/3D-Models/games', 'https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/ue4', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/furniture']","Old dirty bed for horror games.The pillows and blanket are separated from the bed, so you can arrange them as you like.2 variants of textures: a clean one and a dirty oneFile formats:.OBJ.FBX.ma2k texturesCreated in MayaTextured in Substance PainterTextures are compressed for a better performance of the game.Textures are optimized for Unreal Engine 4Base ColorNormalPacked Occlusion Roughness Metallic" +house in the beach 3D model,DuDeHTM," +Free +", - All Extended Uses,2019-06-01," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'architecture', 'building', 'residential building', 'house', 'fantasy house', 'cartoon house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house', 'https://www.turbosquid.com/3d-model/fantasy-house', 'https://www.turbosquid.com/3d-model/cartoon-house']","['house', 'wood', 'water', 'toon', 'casa', 'rock', 'lamp', 'window', 'door', 'grass', 'architecture']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/casa', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/window', 'https://www.turbosquid.com/Search/3D-Models/door', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/architecture']",enjoy +A log of wood 3D model,TdeX," +Free +", - All Extended Uses,2019-05-31," + + +OBJ + + + + +FBX + + + + +3D Studio + +","['3D Model', 'nature', 'plants', 'plant elements', 'log']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/plant-elements', 'https://www.turbosquid.com/3d-model/log']","['a', 'log', 'of', 'wood']","['https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/log', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/wood']","_________________________________________A LOG OF WOOD:Verts:5890Polygons:5888Tris:11776Made in blender version 2.79Model is UV unwrapedsupporting item is texture__________________________________________FILES:OBJ, FBX, 3DSThank you! and please rate it." +"3D Realistic Shotgun Model (gameready, rigged) model",renedominick1999," +Free +", - All Extended Uses,2019-05-31," + + +FBX 1.0 + + + + +Other + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/shotgun']","['Weapon', 'Gun', 'Shotgun', 'Game', 'rigged', 'optimized', '2k', 'textures', 'uv', 'modern', 'scope', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/shotgun', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/optimized', 'https://www.turbosquid.com/Search/3D-Models/2k', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/scope', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","HIgh-quality 3D model of a realist-looking Shotgun.Includes:-realworld-scaled, rigged Model of a Sniper Rifle-3 different 2k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products." +3D model teapot,Nand3d," +Free +", - All Extended Uses,2019-05-31,,"['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'teapot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/teapot']",['teapot'],['https://www.turbosquid.com/Search/3D-Models/teapot'],teapot +3D model Toasts 02,cgaustria," +Free +", - All Extended Uses,2019-05-31," + + +FBX 2015 + + + + +Other + + + + +OBJ 2015 + +","['3D Model', 'food and drink', 'food', 'baked goods', 'bread', 'toast']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/baked-goods', 'https://www.turbosquid.com/3d-model/bread', 'https://www.turbosquid.com/3d-model/toast']","['toast', 'toasts', 'obj', 'fbx', 'vray', '3d', 'model', 'breakfast', 'bakery', 'dark', 'lunch', 'meal', 'food', 'snack', 'french', 'baked', 'bun', 'cooking', 'bread', 'crusty', 'baguette', 'slice', 'lowpoly', 'game']","['https://www.turbosquid.com/Search/3D-Models/toast', 'https://www.turbosquid.com/Search/3D-Models/toasts', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/breakfast', 'https://www.turbosquid.com/Search/3D-Models/bakery', 'https://www.turbosquid.com/Search/3D-Models/dark', 'https://www.turbosquid.com/Search/3D-Models/lunch', 'https://www.turbosquid.com/Search/3D-Models/meal', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/snack', 'https://www.turbosquid.com/Search/3D-Models/french', 'https://www.turbosquid.com/Search/3D-Models/baked', 'https://www.turbosquid.com/Search/3D-Models/bun', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/bread', 'https://www.turbosquid.com/Search/3D-Models/crusty', 'https://www.turbosquid.com/Search/3D-Models/baguette', 'https://www.turbosquid.com/Search/3D-Models/slice', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/game']","High detailed 3D model from cleaned retopology scan data of a toasts in checkmate pro quality by Cgaustria.For free quality check.Thank you for purchasing Cgaustria models!If you like this model I would kindly ask you to rate it.Real world scale.Preview renders just rendered with diffuse and normal map, there is no post production.Retopologized and reunwrapped for easy editing.AVAILABLE 3D FILES for download:- 3ds Max 2015 with V-Ray (3.6) shaders, textures, cameras, lights, render settings- OBJ incl. mtl file- FBXINFORMATION about 3ds Max 2015 FileSCALE:- Model at world center and real scale:       Metric in centimeter        1 unit= 1 centimeterPOLYCOUNT:-polys: 7.822-100% quads       Textures:1. toasts02_diffuse.png - 4096x4096 px2. toasts02_displacement.png - 4096x4096 px3. toasts02_normals.png - 4096x4096 px" +3D model adjustable working table,4ivers," +Free +", - All Extended Uses,2019-05-31," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'furnishings', 'desk', 'office desk', 'drafting table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/office-desk', 'https://www.turbosquid.com/3d-model/drafting-table']","['workbench', 'factory', 'garage', 'workshop', 'tool', 'equpment', 'fabrication', 'craft', 'industrial', 'working', 'table', 'desk', 'worktop', 'craftsman', 'repair', 'v-ray']","['https://www.turbosquid.com/Search/3D-Models/workbench', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/garage', 'https://www.turbosquid.com/Search/3D-Models/workshop', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/equpment', 'https://www.turbosquid.com/Search/3D-Models/fabrication', 'https://www.turbosquid.com/Search/3D-Models/craft', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/working', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/worktop', 'https://www.turbosquid.com/Search/3D-Models/craftsman', 'https://www.turbosquid.com/Search/3D-Models/repair', 'https://www.turbosquid.com/Search/3D-Models/v-ray']","This adjustable working table high quality, photo real model. The model is accurate with the real world size and scale. The model is suitable for the layout of workshops and production rooms.Ready to RENDER. HDRI map includedHigh quality model for TurboSmoothOriginally created with 3ds Max 2013Model prepared for V-Ray 2.40.03Included in the scene - VRay plane Includes Formats FBX and OBJ (not smoothed)- Model is built to real-world scale- Units used: mm- No third-party renderer or plug-insGeometry:No smooth: -Polygons: 150172-Vertices: 148500Subdivision Level 1-Polygons: 1194928-Vertices: 597404" +Art Vase 3D,VectorInc," +Free +", - All Extended Uses,2019-05-30,,"['3D Model', 'interior design', 'housewares', 'general decor', 'vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase']","['Vase', 'Art', 'Decoration', 'Decor', 'Furnishing']","['https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/furnishing']",A vase I created for a scene a while back! I I hope you guys enjoy it! +Picnic Table model,thatsruddiculous," +Free +", - All Extended Uses,2019-05-29," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'table', 'picnic table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/picnic-table']","['picnic', 'table', 'park', 'exterior', 'furniture', 'wood', 'wooden', 'metal', 'public', 'bench']","['https://www.turbosquid.com/Search/3D-Models/picnic', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/public', 'https://www.turbosquid.com/Search/3D-Models/bench']","This is a low-poly, game ready, pbr, prop. This is a picnic table that is good for outdoor park scenes. The object sits on the ground plane at the origin (0,0,0). Includes fbx and obj file formats. All textures are 2048x2048 png files." +Garbage Bag 3D,thatsruddiculous," +Free +", - All Extended Uses,2019-05-29," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'industrial', 'industrial container', 'bag', 'garbage bag']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/bag', 'https://www.turbosquid.com/3d-model/garbage-bag']","['bag', 'garbage', 'trash', 'refuse', 'sack']","['https://www.turbosquid.com/Search/3D-Models/bag', 'https://www.turbosquid.com/Search/3D-Models/garbage', 'https://www.turbosquid.com/Search/3D-Models/trash', 'https://www.turbosquid.com/Search/3D-Models/refuse', 'https://www.turbosquid.com/Search/3D-Models/sack']","This is a low-poly, game ready, pbr, prop. This is a trash bag that is good for outdoor scenes next to dumpsters, or indoor a very messy or abandoned house. Includes fbx and obj file formats. All textures are 2048x2048 png files." +3D Wooden Crate,thatsruddiculous," +Free +", - All Extended Uses,2019-05-29," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'industrial', 'industrial container', 'crate']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/crate']","['crate', 'wooden', 'shipping', 'container', 'wood', 'box', 'ship', 'contain', 'cube']","['https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/shipping', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/ship', 'https://www.turbosquid.com/Search/3D-Models/contain', 'https://www.turbosquid.com/Search/3D-Models/cube']","This is a game-ready pbr wooden crate. It is very low poly and ready for any project. The object sits on the ground plane at the origin (0,0,0). All textures are 2048x2048 png format. Includes fbx and obj files." +3D LIVING ROOM PHOTO - SKETCHUP 2018 AND VRAY NEXT,DesignerHugoGonzales," +Free +", - All Extended Uses,2019-05-28,,"['3D Model', 'interior design', 'interior', 'residential spaces', 'living room']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/residential-spaces', 'https://www.turbosquid.com/3d-model/living-room']","['SKETCHUP', '2018', 'AND', 'VRAY', 'NEXT', 'READY', 'MODEL', 'LIVING', 'ROOM', 'PHOTO']","['https://www.turbosquid.com/Search/3D-Models/sketchup', 'https://www.turbosquid.com/Search/3D-Models/2018', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/next', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/photo']","LIVING ROOM IN SKETCHUP 2018, RENDER WITH VRAY NEXT" +Captain Marve - Victorie 3D model,bewolf56," +Free +", - Editorial Uses Only,2019-05-28," + + +FBX + +","['3D Model', 'characters', 'superhero']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/superhero']","['captain', 'marve', 'victorie', 'heaven', 'avengers', 'blonde', 'heroine', 'czech', 'model', 'superhero']","['https://www.turbosquid.com/Search/3D-Models/captain', 'https://www.turbosquid.com/Search/3D-Models/marve', 'https://www.turbosquid.com/Search/3D-Models/victorie', 'https://www.turbosquid.com/Search/3D-Models/heaven', 'https://www.turbosquid.com/Search/3D-Models/avengers', 'https://www.turbosquid.com/Search/3D-Models/blonde', 'https://www.turbosquid.com/Search/3D-Models/heroine', 'https://www.turbosquid.com/Search/3D-Models/czech', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/superhero']",Captain Marve from Avengers movie with Victorie Heaven czech model +Greek Sword 3D model,guitcho," +Free +", - All Extended Uses,2019-05-28," + + +FBX + + + + +OBJ + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/gladius']","['greek', 'armor', 'protection', 'soldier', 'warrior', 'roman', 'legionary', '3d', 'model', 'medieval', 'military', 'sword', 'knight', 'bladed', 'weapon', 'melee']","['https://www.turbosquid.com/Search/3D-Models/greek', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/protection', 'https://www.turbosquid.com/Search/3D-Models/soldier', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/legionary', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/bladed', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/melee']",sword of Greek inspiration:This model was created on the blender software and the PBR material addon. It's a highpoly model.Files Formates:-blender (.blend) -Fbx (.fbx) -Wavefront (.obj) -collada (.dae) -alembic (.abc) -3D Studio (.3ds) -Standford (.ply) -X3d Extensible 3D (.x3d) -Stl (.stl)Hope you like it.If you like my work do not hesitate to share my content and come see my other creations on my profile ! +3D asteroids pack model,Mykhailo Ohorodnichuk," +Free +", - All Extended Uses,2019-05-28,,"['3D Model', 'science', 'astronomy', 'asteroid']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/astronomy', 'https://www.turbosquid.com/3d-model/asteroid']","['3D', 'model', 'Science', 'Astronomy', 'Asteroids', 'SGI', 'Animation', 'Space', 'Meteor', 'Traditional', 'Game', 'art', 'aerolite']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/astronomy', 'https://www.turbosquid.com/Search/3D-Models/asteroids', 'https://www.turbosquid.com/Search/3D-Models/sgi', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/meteor', 'https://www.turbosquid.com/Search/3D-Models/traditional', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/aerolite']",This is pack of 4 asteroids for your projectasteroid 1 - 47432 facesasteroid 2 - 38084 facesasteroid 3 - 53392 facesasteroid 4 - 10084 facesvideo presentation of this pack you can found in my YoutUbe channel: Mykhailo Ohorodnichuk +Scissor 3D,Devansh Kaushik," +Free +", - All Extended Uses,2019-05-28," + + +Collada + + + + +FBX + + + + +3D Studio + +","['3D Model', 'industrial', 'tools', 'cutting tools', 'scissors']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cutting-tools', 'https://www.turbosquid.com/3d-model/scissors']","['blender', '3d', 'scissor', 'scissors', 'cycles', 'metal']","['https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scissor', 'https://www.turbosquid.com/Search/3D-Models/scissors', 'https://www.turbosquid.com/Search/3D-Models/cycles', 'https://www.turbosquid.com/Search/3D-Models/metal']","This is blender made 3D Scissor Model, that's free to use in your animations and games as well. The model is rigged and well topologised. The textures used are available as packed images which includes the skydome as well. Th material is derived from Principled BSDF Shader of Blender Cycles. Also the polish mask is available for distinguishing between the polished surfaces. At last, use this and give your views." +3D Food Photogrammetry Intro Pack,jdbensonCG," +Free +", - All Extended Uses,2019-05-28," + + +Other 001 + +","['3D Model', 'food and drink', 'food', 'vegetable', 'root vegetables', 'carrot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/vegetable', 'https://www.turbosquid.com/3d-model/root-vegetables', 'https://www.turbosquid.com/3d-model/carrot']","['photogrammetry', 'food', 'fruit', 'vegetable', 'bread', 'crumpet', 'scan', 'textures', 'lowpoly', 'grapefruit', 'apple', 'pineapple', 'pear', 'lemon', 'seeds', 'carrot', 'garlic', 'onion', 'potato']","['https://www.turbosquid.com/Search/3D-Models/photogrammetry', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/fruit', 'https://www.turbosquid.com/Search/3D-Models/vegetable', 'https://www.turbosquid.com/Search/3D-Models/bread', 'https://www.turbosquid.com/Search/3D-Models/crumpet', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/textures', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/grapefruit', 'https://www.turbosquid.com/Search/3D-Models/apple', 'https://www.turbosquid.com/Search/3D-Models/pineapple', 'https://www.turbosquid.com/Search/3D-Models/pear', 'https://www.turbosquid.com/Search/3D-Models/lemon', 'https://www.turbosquid.com/Search/3D-Models/seeds', 'https://www.turbosquid.com/Search/3D-Models/carrot', 'https://www.turbosquid.com/Search/3D-Models/garlic', 'https://www.turbosquid.com/Search/3D-Models/onion', 'https://www.turbosquid.com/Search/3D-Models/potato']","Small Intro Collection of Photogrammetry food. Includes 13 assets, that all come with textures for PBR rendering. Mesh has been retoplogized for low poly rendering including game engines. Archived pack into a single .rar each asset is .OBJ format.Looking to develop collections photogrammetry products aimed at small studios/freelancers. Scanned and modeled to a high quality. Future packs will contain more assets. Please get in touch if there are any assets you would like to be included." +3D Treasure Chest model,creativeslot144," +Free +", - All Extended Uses,2019-05-27," + + +OBJ 1.1 + + + + +FBX 1.1 + + + + +3D Studio 1.1 + +","['3D Model', 'furnishings', 'chest', 'wooden chest', 'treasure chest']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/chest', 'https://www.turbosquid.com/3d-model/wooden-chest', 'https://www.turbosquid.com/3d-model/treasure-chest']","['treasure', 'chest', 'toy', 'medieval', 'box', 'play', 'game', '3D', 'object', 'old', 'rust', 'metal', 'wood']","['https://www.turbosquid.com/Search/3D-Models/treasure', 'https://www.turbosquid.com/Search/3D-Models/chest', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/play', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/object', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/wood']","First 3D object i have made please sned message or comment on how it is. it is FREE. Treasure chest, Medieval (oldish) container put onto your horror/medieval game.Has Animation setup to open!!Also includes the wood texture and Three different metal/Rust materials for you to use. Use just one or All three.!Also has normal's." +3D model Metal Paper Clip,3d_ranensinha," +Free +", - All Extended Uses,2019-05-27," + + +FBX 2015 + + + + +OBJ + +","['3D Model', 'office', 'office supplies', 'paper clip']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/paper-clip']","['metal', 'clip', 'fastener', 'gemclip', 'paper', 'paperclip', 'clamp', 'collection', 'set', 'stationery', 'work', 'office', 'desk', 'props', 'realistic', 'photoreal']","['https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/clip', 'https://www.turbosquid.com/Search/3D-Models/fastener', 'https://www.turbosquid.com/Search/3D-Models/gemclip', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/paperclip', 'https://www.turbosquid.com/Search/3D-Models/clamp', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/stationery', 'https://www.turbosquid.com/Search/3D-Models/work', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/photoreal']","Its a high quality and photo real model of a Metal Paper Clip. This will add more value and enhance details to your rendering projects like medical presentation, cinematic, VFX shots etc and games. The model is applied with materials and textures, with very detailed design that allows for close-up renders. This model originally modeled in 3ds MAX 2015 and rendered with Vray 3.20.02 and converted formats are FBX and OBJ.--------------------------------------------Features:- Multiple formats added.- High quality polygonal model, correctly scaled for an accurate representation.-The model properly named, grouped and logically grouped so no confusion when importing several models into a scene also kept in properly named layer.- No cleaning up necessary, just drop your models into the scene or open the given scene and start rendering.- Models resolutions are optimized for polygon efficiency. (In 3ds Max, the Turbosmooth modifier or smoothing modifier in other respective application can be used to increase mesh resolution if necessary.)-All texture colors can be easily modified.-Model does not include any lights, backgrounds or scenes used in preview images but a separate version is added with light setup and HDRI as seen in preview images.--------------------------------------------Polygons: 4224Vertices: 4214--------------------------------------------File Formats:- 3ds Max 2015 Vray 3.20.02- obj- FBX--------------------------------------------Texture sizes areAll textures are 2048*2048--------------------------------------------Model dimension (Unit setup is CM)X- 0.9* Y- 3.02 * Z- 0.19-------------------------------------------Hope you like the model.Please RATE the product if you are satisfied.Also check out my other models, click on my user name to see complete gallery." +3D z chair,mohsen_ga," +Free +", - All Extended Uses,2019-05-25,,"['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool', 'https://www.turbosquid.com/3d-model/bar-stool']",['chair'],['https://www.turbosquid.com/Search/3D-Models/chair'],z-chair designed by Oleksii Karman. litewheight and unwrapped texture. +LPipe model,Huge Wild Cube," +Free +", - All Extended Uses,2019-05-25," + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'building components', 'plumbing equipment', 'plumbing pipe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/plumbing-equipment', 'https://www.turbosquid.com/3d-model/pipe-plumbing']","['pipe', 'props', 'set', 'collection', 'water', 'oil', 'gas', 'lowpoly', 'joint', 'link', 'tube', 'industry', 'factory', 'power', 'plant', 'machine', 'petrol', 'system', 'Sewage', 'pack', 'free']","['https://www.turbosquid.com/Search/3D-Models/pipe', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/gas', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/joint', 'https://www.turbosquid.com/Search/3D-Models/link', 'https://www.turbosquid.com/Search/3D-Models/tube', 'https://www.turbosquid.com/Search/3D-Models/industry', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/power', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/petrol', 'https://www.turbosquid.com/Search/3D-Models/system', 'https://www.turbosquid.com/Search/3D-Models/sewage', 'https://www.turbosquid.com/Search/3D-Models/pack', 'https://www.turbosquid.com/Search/3D-Models/free']",This is a free sample from 'Pipe pack vol.1'. Go to my profile and check out the rest. +office set 3D model,desmundo," +Free +", - All Extended Uses,2019-05-24," + + +OBJ + +","['3D Model', 'furnishings', 'desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk']","['office', 'set', 'desk', 'mug', 'guest', 'rolling', 'chair', 'frame', 'picture', 'trophy']","['https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/guest', 'https://www.turbosquid.com/Search/3D-Models/rolling', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/frame', 'https://www.turbosquid.com/Search/3D-Models/picture', 'https://www.turbosquid.com/Search/3D-Models/trophy']","an office with items included such as an office chair with 2 guest chairs, a trophy, picture frame, a mug and exterior walls with a door and a floor." +Sexy Elf Bath model,Predteck," +Free +", - All Extended Uses,2019-05-24," + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'art', 'sculpture', 'statue', 'woman statue']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/statue', 'https://www.turbosquid.com/3d-model/woman-statue']","['woman', 'nude', 'naughty', 'erotic', 'wow', '3dprint']","['https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/nude', 'https://www.turbosquid.com/Search/3D-Models/naughty', 'https://www.turbosquid.com/Search/3D-Models/erotic', 'https://www.turbosquid.com/Search/3D-Models/wow', 'https://www.turbosquid.com/Search/3D-Models/3dprint']","3D Print concept.A sexy elf takes a bath. WoW style. Whole model. Included .ztl, .obj and .stl formats. Enjoy! ;)" +Deer Skull 3D model,leon017," +Free +", - All Extended Uses,2019-05-24," + + +3D Studio + + + + +FBX 2018 + + + + +OBJ + +","['3D Model', 'nature', 'animal', 'animal anatomy', 'animal skeleton', 'animal skull', 'deer skull']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/animal-anatomy', 'https://www.turbosquid.com/3d-model/animal-skeleton', 'https://www.turbosquid.com/3d-model/animal-skull', 'https://www.turbosquid.com/3d-model/deer-skull']","['deer', 'skull', 'bones', 'skeleton', 'wildlife', 'anatomy', 'dead', 'hunting', 'horns', 'moose', 'forest', 'nature']","['https://www.turbosquid.com/Search/3D-Models/deer', 'https://www.turbosquid.com/Search/3D-Models/skull', 'https://www.turbosquid.com/Search/3D-Models/bones', 'https://www.turbosquid.com/Search/3D-Models/skeleton', 'https://www.turbosquid.com/Search/3D-Models/wildlife', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/dead', 'https://www.turbosquid.com/Search/3D-Models/hunting', 'https://www.turbosquid.com/Search/3D-Models/horns', 'https://www.turbosquid.com/Search/3D-Models/moose', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/nature']","3D model of deer skull with diffuse, specular, normal, occlusion and displacement maps. 6160 polygons." +3D model Cartoon Low Poly Starfish Illustration,Anton Moek," +Free +", - All Extended Uses,2019-05-24," + + +3D Studio + + + + +FBX + + + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'nature', 'animal', 'sea creatures', 'sea star', 'cartoon starfish']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/sea-creatures', 'https://www.turbosquid.com/3d-model/sea-star', 'https://www.turbosquid.com/3d-model/cartoon-starfish']","['cartoon', 'low', 'poly', 'illustration', 'art', 'simple', 'free', 'download', 'starfish', 'lowpoly', 'low-poly', 'antonmoek', 'sea', 'seaweed', 'water', 'game', 'design', 'ar', 'vr', 'browser', 'cinema4d']","['https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/illustration', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/download', 'https://www.turbosquid.com/Search/3D-Models/starfish', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/antonmoek', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/seaweed', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/ar', 'https://www.turbosquid.com/Search/3D-Models/vr', 'https://www.turbosquid.com/Search/3D-Models/browser', 'https://www.turbosquid.com/Search/3D-Models/cinema4d']","- Cartoon Low Poly Starfish 3d Illustration- Created on Cinema 4d R17- 3814 Polygons- Procedural Textured- Game Ready, VR Ready" +3D model Realistic Glass Table,Bang Moron," +Free +", - All Extended Uses,2019-05-23," + + +Other + + + + +3D Studio + + + + +FBX + + + + +Collada + + + + +OBJ + +","['3D Model', 'furnishings', 'table', 'glass table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/glass-table']","['Furniture', 'Table', 'Glass', 'Realistic']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/realistic']",Free for u +3D Simple ring model,Diversantka," +Free +", - All Extended Uses,2019-05-23," + + +FBX 2012-2018 + + + + +OBJ 2014-2018 + +","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'diamond ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/diamond-ring']","['ring', 'gold', 'silver', 'diamond', 'brilliant', 'set', '3D', 'Model', 'fashion', 'and', 'beauty', 'jewelry', 'platinum', 'decorative']","['https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/diamond', 'https://www.turbosquid.com/Search/3D-Models/brilliant', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/platinum', 'https://www.turbosquid.com/Search/3D-Models/decorative']","A simple diamond ring.Three variants of precious metal and four colors of stones. The model is suitable for creating separate parts of the interior, as well as an independent element.To create a model used 3dsMax2018 version 20.0.0.966 compatible with 2014With anti-aliasing:points 43083polygons 52281physical volume 4072.0 mvirtual volume 5481.4 mThe scene contains 33 objects As part of the archive set of textures 6 PCs., including:blue diamond.jpggreen_diamond.jpgred diamond.jpgwhite diamond.jpgmetal.jpgand Files:preview1_Simple_ring_with_diamond.jpgpreview2_Simple_ring_with_diamond.jpgpreview3_Simple_ring_with_diamond.jpgGrid_Simple_ring_with_diamond.jpgSimple_ring_with_diamond_fbxSimple_ring_with_diamond_objSimple_ring_with_diamond_3D Max" +3D Dirty Horse Shoe,GetDeadEntertainment," +Free +", - All Extended Uses,2019-05-22," + + +FBX FBX + + + + +Other MTL + + + + +OBJ OBJ + + + + +Other PNG + +","['3D Model', 'industrial', 'agriculture', 'animal accessories', 'horse accessories', 'horseshoe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/agriculture', 'https://www.turbosquid.com/3d-model/animal-accessories', 'https://www.turbosquid.com/3d-model/horse-accessories', 'https://www.turbosquid.com/3d-model/horseshoe']","['horseshoe', 'horse', 'shoe', 'horse', 'luck', 'lucky', 'gamble', 'chance', 'medieval', 'decor', 'junk', 'steel', 'decoration', 'horse', 'props', 'props', 'ground', 'clutter', 'metal', 'horseshoes', 'iron', 'exteri']","['https://www.turbosquid.com/Search/3D-Models/horseshoe', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/shoe', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/luck', 'https://www.turbosquid.com/Search/3D-Models/lucky', 'https://www.turbosquid.com/Search/3D-Models/gamble', 'https://www.turbosquid.com/Search/3D-Models/chance', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/junk', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/clutter', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/horseshoes', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/exteri']","Dirty Horse Shoe 3D ModelPBR Textures 4096x4096All Renders were done in Marmoset Toolbag 3.07By The Creators at Get Dead Entertainment . :) Please Like, Follow and Rate!" +Realistic Plastic CupBoard 3D model,Bang Moron," +Free +", - All Extended Uses,2019-05-22," + + +Other + +","['3D Model', 'furnishings', 'cabinet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/cabinet']",['Cupboard'],['https://www.turbosquid.com/Search/3D-Models/cupboard'],Free for u +3D Table model,arch.melsayed," +Free +", - All Extended Uses,2019-05-22," + + +FBX + + + + +OBJ + + + + +STL + + + + +3D Studio + + + + +DXF + +","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['table', 'modern', 'wooden', 'interior', 'steel', 'living', 'reception', 'bed', 'room', 'metal']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/reception', 'https://www.turbosquid.com/Search/3D-Models/bed', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/metal']","-The table is a high quality model that will enhance details to any of your rendering projects. The model has a fully textured, detailed design that allows for close-up renders, and was originally modeled in 3ds Max 2011 and rendered with V-Ray.Features: -High quality polygonal model, correctly scaled for an accurate representation of the original object. -Models resolutions are optimized for polygon efficiency.-All colors can be easily modified. -Model is fully textured with all materials applied.-All textures and materials are included .-No special plugin needed to open scene. -Model does not include any backgrounds or scenes used in preview images.File Formats:-3ds Max 2011.-OBJ . -FBX . -3ds . -dxf . -stl-Hope you like it! Also check out my other models, just click on my user name to see complete gallery." + model,esmileonline," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-22," + + +Other + + + + +Collada + + + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'appliance', 'household appliance', 'cleaning appliance', 'vacuum cleaner', 'robot vacuum cleaner']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/cleaning-appliance', 'https://www.turbosquid.com/3d-model/vacuum-cleaner', 'https://www.turbosquid.com/3d-model/robot-vacuum-cleaner']","['robot', 'carpet', 'floor', 'cleaner', 'robot', 'carpet', 'floor', 'cleaner', 'vacuum', 'cleaner', 'home', 'appliance', 'smart', 'household', 'tools']","['https://www.turbosquid.com/Search/3D-Models/robot', 'https://www.turbosquid.com/Search/3D-Models/carpet', 'https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/cleaner', 'https://www.turbosquid.com/Search/3D-Models/robot', 'https://www.turbosquid.com/Search/3D-Models/carpet', 'https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/cleaner', 'https://www.turbosquid.com/Search/3D-Models/vacuum', 'https://www.turbosquid.com/Search/3D-Models/cleaner', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/appliance', 'https://www.turbosquid.com/Search/3D-Models/smart', 'https://www.turbosquid.com/Search/3D-Models/household', 'https://www.turbosquid.com/Search/3D-Models/tools']",obot carpet floor cleaner +Low Poly Beach Items Pack 3D,chroma3D," +Free +", - All Extended Uses,2019-05-22," + + +3D Studio + + + + +STL + + + + +Collada + + + + +FBX + + + + +OBJ + +","['3D Model', 'toys and games', 'toys', 'outdoor toys', 'paddle ball']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/toys', 'https://www.turbosquid.com/3d-model/outdoor-toys', 'https://www.turbosquid.com/3d-model/paddle-ball']","['low', 'poly', 'beach', 'items', 'pack', 'ball', 'summer', 'fun', 'racket', 'tennis', 'sports', 'equipment']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/beach', 'https://www.turbosquid.com/Search/3D-Models/items', 'https://www.turbosquid.com/Search/3D-Models/pack', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/summer', 'https://www.turbosquid.com/Search/3D-Models/fun', 'https://www.turbosquid.com/Search/3D-Models/racket', 'https://www.turbosquid.com/Search/3D-Models/tennis', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/equipment']","This is a low poly 3d beach assets pack. The low poly pack was modeled and prepared for low-poly style renderings, background, general CG visualization. Topology with quads and tris.You will get those 4 objects :2 Rackets 1 Racket Ball 1 beach BallVerts : 614 Faces: 606Simple diffuse colors.No ring, maps and no UVW mapping is available.The original file was created in blender. You will receive a 3DS, OBJ, FBX, blend, DAE, STL.All preview images were rendered with Blender Cycles. Product is ready to render out-of-the-box. Please note that the lights, cameras, and background is only included in the .blend file. The model is clean and alone in the other provided files, centered at origin and has real-world scale." +Basic Laptop With Lenovo Logo model,Efad Safi," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-22," + + +3D Studio 0.1 + + + + +Collada 0.1 + + + + +AutoCAD drawing 0.1 + + + + +DXF 0.1 + + + + +FBX 0.1 + + + + +Other 0.1 + + + + +OBJ 0.1 + +","['3D Model', 'technology', 'computer', 'laptop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer', 'https://www.turbosquid.com/3d-model/laptop']","['Laptop', 'ideapad', 'Computer', 'Pc', 'Computers', 'Poly', 'Laptops', 'Low', 'Lenovo', 'Laptops.']","['https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/ideapad', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pc', 'https://www.turbosquid.com/Search/3D-Models/computers', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/laptops', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/lenovo', 'https://www.turbosquid.com/Search/3D-Models/laptops.']","This is an extremely low poly & low size laptop. It has an Lenovo logo in it. Suitable for Interior decoration, game development etc." +Fantasy Medieval Weapon Pack 3D model,Tetrahedron," +Free +", - All Extended Uses,2019-05-22," + + +3D Studio 1.0 + + + + +Collada 1.0 + + + + +FBX 1.0 + + + + +OBJ 1.0 + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'broadsword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/broadsword']","['Sword', 'Weapon', 'Armor', 'melee']","['https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/melee']","-------------------------------------------------------------Presenting Fantasy Medieval Weapon Pack.-------------------------------------------------------------Two swords a Broadsword and a Longsword.Broadsword Polygons: 808. Verticies: 420.Longsword Polygons: 456. Verticies: 251.A default material from your Software of choice can be used. Set your own material glossiness and roughness etc.Does not require 3rd party renderers, plug-ins or scripts.They are designed to have minimal polygons so are not subdividable.Orign/Pivot point is placed in the centre of the handle.Real world scale of both swords is 0.89m oe 89cm in length.1024x1024px texture maps:Diffuse Color.Ambient Occlusion.Combined Diffuse and AO.Transparant UV Layout.Specular gloss." +Espresso Machine 3D model,alandell," +Free +", - All Extended Uses,2019-05-21,,"['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'coffee maker', 'espresso maker']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/coffee-maker', 'https://www.turbosquid.com/3d-model/espresso-maker']","['espresso', 'machine', 'coffee', 'cafe', 'barista', 'latte', 'mocha', 'cartoon', 'retro', 'coffeemaker']","['https://www.turbosquid.com/Search/3D-Models/espresso', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/cafe', 'https://www.turbosquid.com/Search/3D-Models/barista', 'https://www.turbosquid.com/Search/3D-Models/latte', 'https://www.turbosquid.com/Search/3D-Models/mocha', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/coffeemaker']",Cartoon-style espresso machine. +3D Tutorials - Project Files - Free Series 01,Project01 Design Studio," +Free +", - All Extended Uses,2019-05-21," + + +Other + +","['3D Model', 'holidays', 'holiday accessories', 'balloons']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/seasons-and-holidays', 'https://www.turbosquid.com/3d-model/holiday-accessories', 'https://www.turbosquid.com/3d-model/balloons']","['3ds', 'max', 'after', 'effects', 'vray', 'candle', 'soccer', 'volley', 'golf', 'ball', 'fire', 'smoke', 'liquid']","['https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/after', 'https://www.turbosquid.com/Search/3D-Models/effects', 'https://www.turbosquid.com/Search/3D-Models/vray', 'https://www.turbosquid.com/Search/3D-Models/candle', 'https://www.turbosquid.com/Search/3D-Models/soccer', 'https://www.turbosquid.com/Search/3D-Models/volley', 'https://www.turbosquid.com/Search/3D-Models/golf', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/smoke', 'https://www.turbosquid.com/Search/3D-Models/liquid']","Hello Everyone,We are providing you all Project Files of our Tutorial from YouTube Channel 'Project.01 Design School' for Free.So Hurry... & Grab the Opportunity.You can Find all Tutorials on YouTube using name 'Project01 Design School'.Thank you Team Project.01 Design School" +3D model bathroom design,iosebi," +Free +", - Editorial Uses Only,2019-05-21," + + +JPEG + +","['3D Model', 'interior design', 'interior', 'residential spaces', 'restroom']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/residential-spaces', 'https://www.turbosquid.com/3d-model/restroom']","['batch', 'design']","['https://www.turbosquid.com/Search/3D-Models/batch', 'https://www.turbosquid.com/Search/3D-Models/design']",bathrooms +Disco Ball 3D model,dimitriwittmann," +Free +", - All Extended Uses,2019-05-21," + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'stage light', 'strobe', 'discoball']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/stage-light', 'https://www.turbosquid.com/3d-model/strobe', 'https://www.turbosquid.com/3d-model/discoball']","['discoball', 'disco', 'ball', 'mirrorball']","['https://www.turbosquid.com/Search/3D-Models/discoball', 'https://www.turbosquid.com/Search/3D-Models/disco', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/mirrorball']",Low poly Discoball. The geometry is clean. Polygonal Quads only. +Starter Short Sword 3D,GetDeadEntertainment," +Free +", - All Extended Uses,2019-05-20," + + +Other PNG + + + + +FBX fbx + + + + +Other mtl + + + + +OBJ obj + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']","['sword', 'weapon', 'dagger', 'sharp', 'steel', 'military', 'bladed', 'weapon', 'knight', 'fantasy', 'medieval', 'starter', 'sword', 'war', 'crusader', 'worn', 'junk', 'warrior', 'warrior', 'army', 'old', 'dirty', 'mel']","['https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/dagger', 'https://www.turbosquid.com/Search/3D-Models/sharp', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/bladed', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/starter', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/crusader', 'https://www.turbosquid.com/Search/3D-Models/worn', 'https://www.turbosquid.com/Search/3D-Models/junk', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/dirty', 'https://www.turbosquid.com/Search/3D-Models/mel']",Worn Sword 3D ModelPRB Texture 4096x4096Renders were done in Marmoset Toolbag 3.06 +Gold Band Ring model,GetDeadEntertainment," +Free +", - All Extended Uses,2019-05-20," + + +FBX fbx + + + + +Other mtl + + + + +OBJ obj + + + + +Other PNG + +","['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring', 'gold ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring', 'https://www.turbosquid.com/3d-model/gold-ring']","['jewelry', 'gold', 'ring', 'wedding', 'fashion', 'ring', 'engagement', 'clothing', 'medieval', 'loot', 'character', 'treasure', 'sterling', 'fashion', 'and', 'beauty', 'apparel', 'jewellery', 'props', 'jewel']","['https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/wedding', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/engagement', 'https://www.turbosquid.com/Search/3D-Models/clothing', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/loot', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/treasure', 'https://www.turbosquid.com/Search/3D-Models/sterling', 'https://www.turbosquid.com/Search/3D-Models/fashion', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/beauty', 'https://www.turbosquid.com/Search/3D-Models/apparel', 'https://www.turbosquid.com/Search/3D-Models/jewellery', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/jewel']","Simple Gold band Ring 3D Model.PBR Texture in: 4096x4096 and 2048x2048All Preview Renders were done in Marmoset Toolbag 3.06.If you like it, please give us a like and a follow. :)" +3D Pen,Zky3d," +Free +", - All Extended Uses,2019-05-20,,"['3D Model', 'office', 'office supplies', 'writing instrument', 'pen', 'ballpoint pen']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/writing-instrument', 'https://www.turbosquid.com/3d-model/pen', 'https://www.turbosquid.com/3d-model/ballpoint-pen']","['Pencil', 'Blue', 'Pen', 'Lapicera', 'Lapiz', 'Marcador', 'Parker']","['https://www.turbosquid.com/Search/3D-Models/pencil', 'https://www.turbosquid.com/Search/3D-Models/blue', 'https://www.turbosquid.com/Search/3D-Models/pen', 'https://www.turbosquid.com/Search/3D-Models/lapicera', 'https://www.turbosquid.com/Search/3D-Models/lapiz', 'https://www.turbosquid.com/Search/3D-Models/marcador', 'https://www.turbosquid.com/Search/3D-Models/parker']",Pen made it in Cinema 4D. +3D Wooden Chess Set Complete,usman039," +Free +", - All Extended Uses,2019-05-20," + + +OBJ + + + + +Other + +","['3D Model', 'toys and games', 'games', 'chess', 'chess set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/chess', 'https://www.turbosquid.com/3d-model/chess-set']","['Chess', 'Pawn', 'Knight', 'Bishop', 'Rook', 'Queen', 'King', 'Board', 'Chessboard', 'White', 'Black', 'Wood', 'Wooden', '3DS', 'Max', 'Game', 'Boardgame', 'Checkmate', 'Check', 'Kasparov', 'Fischer']","['https://www.turbosquid.com/Search/3D-Models/chess', 'https://www.turbosquid.com/Search/3D-Models/pawn', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/bishop', 'https://www.turbosquid.com/Search/3D-Models/rook', 'https://www.turbosquid.com/Search/3D-Models/queen', 'https://www.turbosquid.com/Search/3D-Models/king', 'https://www.turbosquid.com/Search/3D-Models/board', 'https://www.turbosquid.com/Search/3D-Models/chessboard', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/black', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/boardgame', 'https://www.turbosquid.com/Search/3D-Models/checkmate', 'https://www.turbosquid.com/Search/3D-Models/check', 'https://www.turbosquid.com/Search/3D-Models/kasparov', 'https://www.turbosquid.com/Search/3D-Models/fischer']","A traditional chess set complete with real ash, oak and walnut textures. There has been many beautiful chess sets created for this wonderful game I hope this is one of them. Includes reflection mapping for subtle chess board effect and subtle shadows for even more effect." +3D model Monster Truck Wheels model,usman039," +Free +", - All Extended Uses,2019-05-20," + + +OBJ + + + + +Other + +","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel']","['monster', 'truck', 'wheel', 'tire', 'rim', 'concept', 'par', 'vehicle', 'offroad', 'allterrain', 'monstertruck']","['https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/rim', 'https://www.turbosquid.com/Search/3D-Models/concept', 'https://www.turbosquid.com/Search/3D-Models/par', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/offroad', 'https://www.turbosquid.com/Search/3D-Models/allterrain', 'https://www.turbosquid.com/Search/3D-Models/monstertruck']","Low poly Monster Truck wheel concept. Model Contains rubber wheel and rim.Modeled and rendered in AutoDesk Softimage.Formats: FBX," +Cream Starter 3D model,auxiliary_," +Free +", - All Extended Uses,2019-05-19," + + +Collada + + + + +STL + + + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'ordnance accessories', 'weapon foregrip']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/ordnance-accessories', 'https://www.turbosquid.com/3d-model/weapon-foregrip']","[""Jojo's"", 'Bizzare', 'Adventure']","['https://www.turbosquid.com/Search/3D-Models/jojo%27s', 'https://www.turbosquid.com/Search/3D-Models/bizzare', 'https://www.turbosquid.com/Search/3D-Models/adventure']","Cream Starter, the stand of Hot Pants from Jojo's Bizarre Adventure Part 7: Steel Ball run." +PHILIPS 3D model,iosebi," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-19,,"['3D Model', 'technology', 'computer', 'desktop computer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer', 'https://www.turbosquid.com/3d-model/desktop-computer']",['Computer'],['https://www.turbosquid.com/Search/3D-Models/computer'],Computer +Roman Pack 3D model,MSvenTorjusC1999," +Free +", - All Extended Uses,2019-05-19," + + +OBJ + + + + +Other + +","['3D Model', 'weaponry', 'weapons']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons']","['Roman', '3D', 'History', 'Weapons', 'Shield', 'Helmet', 'Tower', 'Spike', 'Wall', 'Sword', 'Pilum', 'Rack', 'Stand', 'Ballista', 'War']","['https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/history', 'https://www.turbosquid.com/Search/3D-Models/weapons', 'https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/tower', 'https://www.turbosquid.com/Search/3D-Models/spike', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/pilum', 'https://www.turbosquid.com/Search/3D-Models/rack', 'https://www.turbosquid.com/Search/3D-Models/stand', 'https://www.turbosquid.com/Search/3D-Models/ballista', 'https://www.turbosquid.com/Search/3D-Models/war']",This bundle contains 13 models for things I most associate with ancient Rome:Roman ShieldGladius (Roman Sword)Roman HelmetBallistaPilumPilum RackSpike WallsWatch TowerLong BowWeapon/Shield RackWooden Barbarian ShieldReenforced Barbarian ShieldBarbarian SwordAll the models have been textured to the best of my ability. The Models are stored in the 'Individual Models' folder and the textures/height maps/ normal maps etc in the 'Textures' folder. There is also a .obj file that shows all the models in one place for demonstration purposes. +3D Health Gun Free low-poly 3D model,cycodev," +Free +", - All Extended Uses,2019-05-18," + + +OBJ + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/raygun']","['health', 'gun', 'pick', 'up', 'medkit', 'meds', 'medic', 'game']","['https://www.turbosquid.com/Search/3D-Models/health', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/pick', 'https://www.turbosquid.com/Search/3D-Models/up', 'https://www.turbosquid.com/Search/3D-Models/medkit', 'https://www.turbosquid.com/Search/3D-Models/meds', 'https://www.turbosquid.com/Search/3D-Models/medic', 'https://www.turbosquid.com/Search/3D-Models/game']","Health Gun pickup made for consol/PC and mobile games. Model is low poly and all textures are on a single UV tile ready to be placed into the game engine.Features:Full UVed and textured model.Consol, PC and mobile Game Ready.1024x1024 resolution textures.works well with the Health Box pickup model (Check my models for this asset).Enjoy and also check out my other models!" +3D model Easy chair 02,Tjasablabla," +Free +", - All Extended Uses,2019-05-18," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['easychair', 'chair', 'furniture', 'wood', 'sofa']","['https://www.turbosquid.com/Search/3D-Models/easychair', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/sofa']",Wooden easy chair +3D classic wall panel,rasull," +Free +", - Editorial Uses Only,2019-05-18,,"['3D Model', 'interior design', 'housewares', 'general decor', 'picture frame']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/picture-frame']","['classic', 'panel', '3d', 'model', 'interior', 'design', 'free', 'wall']","['https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/wall']",classic wall panel you can use for your interior and exterior projects +3D model Atom Molecule,kiankh," +Free +", - All Extended Uses,2019-05-18," + + +FBX + + + + +OBJ + +","['3D Model', 'science', 'chemistry', 'atom']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/chemistry', 'https://www.turbosquid.com/3d-model/atom']","['molecule', 'science', 'atom', 'chart', 'of', 'the', 'elements']","['https://www.turbosquid.com/Search/3D-Models/molecule', 'https://www.turbosquid.com/Search/3D-Models/science', 'https://www.turbosquid.com/Search/3D-Models/atom', 'https://www.turbosquid.com/Search/3D-Models/chart', 'https://www.turbosquid.com/Search/3D-Models/of', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/elements']",Atom Molecule +3D cartoonish lowpoly grass patch model,usman039," +Free +", - All Extended Uses,2019-05-18," + + +FBX + +","['3D Model', 'nature', 'plants', 'grasses', 'ornamental grass', 'summer grass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/grasses', 'https://www.turbosquid.com/3d-model/ornamental-grass', 'https://www.turbosquid.com/3d-model/summer-grass']","['plant', 'dirt', 'rock', 'boulder', 'jag', 'jagged', 'desert', 'soil', 'sand', 'area', 'sandy', 'cross', 'grass', 'grassy', 'section', 'dune', 'dunes', 'deserts', 'landscape', 'land', 'terrain', 'part']","['https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/dirt', 'https://www.turbosquid.com/Search/3D-Models/rock', 'https://www.turbosquid.com/Search/3D-Models/boulder', 'https://www.turbosquid.com/Search/3D-Models/jag', 'https://www.turbosquid.com/Search/3D-Models/jagged', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/soil', 'https://www.turbosquid.com/Search/3D-Models/sand', 'https://www.turbosquid.com/Search/3D-Models/area', 'https://www.turbosquid.com/Search/3D-Models/sandy', 'https://www.turbosquid.com/Search/3D-Models/cross', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/grassy', 'https://www.turbosquid.com/Search/3D-Models/section', 'https://www.turbosquid.com/Search/3D-Models/dune', 'https://www.turbosquid.com/Search/3D-Models/dunes', 'https://www.turbosquid.com/Search/3D-Models/deserts', 'https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/land', 'https://www.turbosquid.com/Search/3D-Models/terrain', 'https://www.turbosquid.com/Search/3D-Models/part']","The model was originally created in Maya 3D 2018, then fully textured and rendered using arnold.Features: -All textures and materials are tailored and applied for high quality render results. -All objects have fully unwrapped UVs. -No extra plugins are needed for this model. Specifications:        -Model is included in fbx formats.                 -OBJ        -Model consists of 86864 Faces and 52600 Vertices.        -Model consists of quads only.        -All Textures are JPG format file." +mini bar 3D model,mehdaoui_saleh," +Free +", - All Extended Uses,2019-05-16," + + +FBX + + + + +OBJ + + + + +3D Studio + +","['3D Model', 'furnishings', 'bar counter', 'tiki bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/bar-counter', 'https://www.turbosquid.com/3d-model/tiki-bar']","['mini', 'bar']","['https://www.turbosquid.com/Search/3D-Models/mini', 'https://www.turbosquid.com/Search/3D-Models/bar']",a liitle wooden tiki bar +3D Glass,TdeX," +Free +", - All Extended Uses,2019-05-15," + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'wine glass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/wine-glass']","['Glass', 'wine', 'with', 'wine.']","['https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/wine', 'https://www.turbosquid.com/Search/3D-Models/with', 'https://www.turbosquid.com/Search/3D-Models/wine.']",WINE GLASS:2 glasses: with and without wine.No liquid modifier just materials: red glass and white.Object has 1026 polygons and 1088 verts.no texturesEnjoy it. +Pan Low Poly 3D model,diggy17," +Free +", - All Extended Uses,2019-05-14," + + +OBJ 2017 + + + + +FBX 2017 + +","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'pan', 'frying pan']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/pan', 'https://www.turbosquid.com/3d-model/frying-pan']","['Low', 'poly', 'pan', 'for', 'games']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/pan', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/games']","Made with 3DS MAX2017POLY:766VERTS:766Textured and unwrapped.No subdivide polys :201 ,verts:183" +Kettle 3D model,VIR7," +Free +", - All Extended Uses,2019-05-14," + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'kettle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/kettle']","['kettle', 'kitchen', 'kitchenware', 'tea', 'coffee']","['https://www.turbosquid.com/Search/3D-Models/kettle', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/kitchenware', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/coffee']",Simple kettleSubdivision readyClean geometryUnwrapped UV's +3D WIne Barrel model,TdeX," +Free +", - All Extended Uses,2019-05-14," + + +FBX + + + + +OBJ + +","['3D Model', 'industrial', 'industrial container', 'barrel', 'wooden barrel', 'wine barrel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/barrel', 'https://www.turbosquid.com/3d-model/wooden-barrel', 'https://www.turbosquid.com/3d-model/wine-barrel']","['Wine', 'Barrel', 'beer', 'wood', 'metal', 'liquid', 'old']","['https://www.turbosquid.com/Search/3D-Models/wine', 'https://www.turbosquid.com/Search/3D-Models/barrel', 'https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/liquid', 'https://www.turbosquid.com/Search/3D-Models/old']",WINE BARREL:Object made in blender (version: 2.79).Polygons and Verts:Verts: 1849Polygons: 1804Object is UV unwrapped.Files: OBJ FBX including textures. +3D model four pack of soda can,usman039," +Free +", - All Extended Uses,2019-05-14," + + +FBX + +","['3D Model', 'food and drink', 'beverages', 'soda', 'soda can']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/beverages', 'https://www.turbosquid.com/3d-model/soda', 'https://www.turbosquid.com/3d-model/soda-can']","['can', 'beer', 'cola', 'juice', 'drink', 'soda', 'beverage']","['https://www.turbosquid.com/Search/3D-Models/can', 'https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/cola', 'https://www.turbosquid.com/Search/3D-Models/juice', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/soda', 'https://www.turbosquid.com/Search/3D-Models/beverage']","Model are extremely detailed, suitable for photo realistic scenes and closeups alike. Model is high poly, and intended for photo real arnold scenes." +3D model Cardboard - Game Ready Free low-poly 3D model,Latannan," +Free +", - All Extended Uses,2019-05-13," + + +FBX + +","['3D Model', 'interior design', 'housewares', 'box', 'cardboard box']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/box', 'https://www.turbosquid.com/3d-model/cardboard-box']","['Cardboard', 'Box', 'Delivery', 'Warehouse', 'Package']","['https://www.turbosquid.com/Search/3D-Models/cardboard', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/delivery', 'https://www.turbosquid.com/Search/3D-Models/warehouse', 'https://www.turbosquid.com/Search/3D-Models/package']",Basic Game-Ready Mesh. Everything was done by me and you can do with it what you want.1024x1024 texture *.png double-sided Mesh texture is unbaked to give you the option to change the texture +3D model Shield,Drakulla," +Free +", - All Extended Uses,2019-05-13," + + +Collada + + + + +FBX + + + + +OBJ + +","['3D Model', 'weaponry', 'armour', 'shield']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/shield']","['shield', 'viking', 'antique', 'Medieval', 'Knight', 'Fantasy', 'Historic', 'Max', 'armour', 'armor', 'battle', 'war', 'free']","['https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/viking', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/historic', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/armour', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/free']","Lowpoly model of wooden shield in handpaint style- 340 polygons- 371 verticesCorrect geometryTexture size 2048x2048, PNG format" +3D Sport bottle,MusiritoKun," +Free +", - All Extended Uses,2019-05-13,,"['3D Model', 'sports', 'exercise equipment', 'sports bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/sports-bottle']","['sports', 'design', ""musirito's"", 'for', 'free', 'high', 'quality', 'bottle']","['https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/musirito%27s', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/quality', 'https://www.turbosquid.com/Search/3D-Models/bottle']",a sports bottle i designed it and modeled it by blender check it out and tell me your opinion took me few hours i added material and rendering . +M1911 3D,AJSGaming," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-12," + + +OBJ + + + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'semi-automatic pistol']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun', 'https://www.turbosquid.com/3d-model/semi-automatic-pistol']","['Gun', 'M1911', 'Pistol', 'Colt', 'Weapons', 'Weaponry', 'Arms', 'Armory', 'Handgun', 'military', 'old', 'marines']","['https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/m1911', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/colt', 'https://www.turbosquid.com/Search/3D-Models/weapons', 'https://www.turbosquid.com/Search/3D-Models/weaponry', 'https://www.turbosquid.com/Search/3D-Models/arms', 'https://www.turbosquid.com/Search/3D-Models/armory', 'https://www.turbosquid.com/Search/3D-Models/handgun', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/marines']","This is a high quality, realistic model of the Remington model 1911.It comes textured which was created in substance painter and UV unwrapped in blender, the UV maps are not perfect but allow the texture to cover the weapon well.High poly model contains over 700,000 vertsI have included the High poly and Low poly files.Each object in the model is its own object, meaning each object is UV unwrapped and texture to the best of my current ability. I think the model came out really well!Thank you for viewing my model!" +Ka-Bar high poly 3D model,XwarX _ Serob Tsarukyan," +Free +", - All Extended Uses,2019-05-12," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'combat knife', 'ka-bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/combat-knife', 'https://www.turbosquid.com/3d-model/ka-bar']","['KABAR', 'KA-BAR', 'knife', 'marines', 'war', 'fighting', 'combat', 'army', 'blade', 'weapon', '3d', '3dsmax', 'high', 'highpoly', '4k']","['https://www.turbosquid.com/Search/3D-Models/kabar', 'https://www.turbosquid.com/Search/3D-Models/ka-bar', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/marines', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/fighting', 'https://www.turbosquid.com/Search/3D-Models/combat', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/3dsmax', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/highpoly', 'https://www.turbosquid.com/Search/3D-Models/4k']","Model of the KA-BAR knife is a high quality, photo real model that will enhance detail and realism to any of your rendering projects. The model has a fully textured, detailed design that allows for close-up renders, and was originally modeled in 3ds Max 2018 and rendered with V-Ray. Fidelity is optimal up to a 4k render. Renders have no postprocessing.Hope you like it!Features:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- Model is fully textured with all materials applied.- No part-name confusion when importing several models into a scene.- No cleaning up necessaryjust drop your models into the scene and start rendering.- No special plugin needed to open scene.- Model does not include any backgrounds or scenes used in preview images.- Units: cmFile Formats:- 3ds Max 2018 V-Ray and standard materials scenes- 3ds Max 2017- 3ds Max 2016- 3ds Max 2015- OBJ (Multi Format)- 3DS (Multi Format)- FBX (Multi Format)Textures Formats:- (6 .png) 4096 x 4096DiffuseReflectionGlossinessiorNormalHeight- High quality polygonal model-Texturing Substance Painter - render with V-ray 3.60 in 3ds Max 2018- display unit scale : santimtric (cm)- system unit setup : 1 unit = 1 cm- OBJ (multi format) subdivision 0- FBX (multi format) subdivision 05122 polygons no TurboSmooth / 40934 TurboSmooth Lv15183 vertices no TurboSmooth / 20606 TurboSmooth Lv1" +3D Axe PBR Low-Poly 4K,GooPi," +Free +", - All Extended Uses,2019-05-12," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'industrial', 'tools', 'cutting tools', 'axe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cutting-tools', 'https://www.turbosquid.com/3d-model/axe']","['axe', 'ax', 'hatchet', 'cleaver', 'weapon', 'gun', 'weaponry', 'unity', 'unreal', 'engine', '4', 'cryengine', 'VR']","['https://www.turbosquid.com/Search/3D-Models/axe', 'https://www.turbosquid.com/Search/3D-Models/ax', 'https://www.turbosquid.com/Search/3D-Models/hatchet', 'https://www.turbosquid.com/Search/3D-Models/cleaver', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/weaponry', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/4', 'https://www.turbosquid.com/Search/3D-Models/cryengine', 'https://www.turbosquid.com/Search/3D-Models/vr']","Axe PBR Low-Poly 4KI invented it myself (Everything belongs to me)Check out my other work____________________________________Texture Sizes:All - 4096x4096(BaseColor, Roughness, Metalness,Normal)PNG* Geometry: Polygon mesh* Polygons:154* Vertices:82* Rigged - No* Animated - No* LOW-POLY - Yes* PBR - Yes* Number of Meshes: 1* Number of Textures:: 4* Materials - 1* UVW mapping - Non-overlapping* LODs: 0* Documentation:No* mportant/Additional Notes: No>Tegs:axeaxhatchetcleaverweapongunweaponryunityunreal engine 4cryengineVR" +Dining table round for 4 people 3D model,Danthree," +Free +", - All Extended Uses,2019-05-12," + + +OBJ + + + + +3D Studio + + + + +FBX + +","['3D Model', 'furnishings', 'table', 'dining table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table']","['table', 'kitchen', 'furniture', 'interior', 'design', 'modern', 'room', 'wood', 'living', 'restaurant', 'dining-table', 'metal']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/dining-table', 'https://www.turbosquid.com/Search/3D-Models/metal']",**Photorealistic 3D model round dining table is a perfect solution for any kitchen or dining room area that you might create as a part of your 3D visualization**High quality 3d model for interior design.Width x Height x Depth / 2200 mm x 1150 mm x 2300 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.*Your Danthree team */ 3d models modelled with love to every detail +Smart TV 3D model,Danthree," +Free +", - All Extended Uses,2019-05-12," + + +OBJ + + + + +3D Studio + + + + +FBX + +","['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/flatscreen-television']","['tv', 'electronic', 'technology', 'screen', 'video', 'lcd', 'hd', 'led', 'monitor', 'television', 'entertainment', 'laptop', 'omputer-equipment', 'ultra', 'uhd', 'interior', 'living']","['https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/technology', 'https://www.turbosquid.com/Search/3D-Models/screen', 'https://www.turbosquid.com/Search/3D-Models/video', 'https://www.turbosquid.com/Search/3D-Models/lcd', 'https://www.turbosquid.com/Search/3D-Models/hd', 'https://www.turbosquid.com/Search/3D-Models/led', 'https://www.turbosquid.com/Search/3D-Models/monitor', 'https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/entertainment', 'https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/omputer-equipment', 'https://www.turbosquid.com/Search/3D-Models/ultra', 'https://www.turbosquid.com/Search/3D-Models/uhd', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/living']",Photorealistic 3d TV for interior designHigh quality 3d model for interior design.Width x Height x Depth / 1100 mm x 675 mm x 170 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.Your Danthree team / 3d models modelled with love to every detail +3D model Classic table lamp round free,Danthree," +Free +", - All Extended Uses,2019-05-12," + + +OBJ + + + + +3D Studio + + + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['living', 'amp', 'table-lamp', 'tablelamp', 'furniture', 'interior', 'table', 'home', 'light', 'lighting', 'design']","['https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/amp', 'https://www.turbosquid.com/Search/3D-Models/table-lamp', 'https://www.turbosquid.com/Search/3D-Models/tablelamp', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/lighting', 'https://www.turbosquid.com/Search/3D-Models/design']",**Photorealistic round 3d table lamp for office and living area** High quality 3d model for interior design.Width x Height x Depth / 215 mm x 500 mm x 350 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.*Your Danthree team */ 3d models modelled with love to every detail +Medieval chest model,Young_Wizard," +Free +", - All Extended Uses,2019-05-11," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'chest', 'wooden chest']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/chest', 'https://www.turbosquid.com/3d-model/wooden-chest']","['chest', 'crate', 'storage', 'medieval', 'box', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/chest', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","Medieval chest all texture 2048x2048 (basecolor, metallic ,roughness, AO, normal) game ready model. Can use this for exterior and interior scene" +Optical puzzle model,3d_new," +Free +", - All Extended Uses,2019-05-11," + + +IGES 5.3 + + + + +FBX 2009 + + + + +STL 80 + +","['3D Model', 'toys and games', 'games', 'puzzle', 'puzzle cube']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/puzzle', 'https://www.turbosquid.com/3d-model/puzzle-cube']","['impossible', 'cuboid', 'visual', 'optical', 'illusion', '3D', 'trick', 'puzzle', 'conundrum', 'jigsaw', 'riddle']","['https://www.turbosquid.com/Search/3D-Models/impossible', 'https://www.turbosquid.com/Search/3D-Models/cuboid', 'https://www.turbosquid.com/Search/3D-Models/visual', 'https://www.turbosquid.com/Search/3D-Models/optical', 'https://www.turbosquid.com/Search/3D-Models/illusion', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/trick', 'https://www.turbosquid.com/Search/3D-Models/puzzle', 'https://www.turbosquid.com/Search/3D-Models/conundrum', 'https://www.turbosquid.com/Search/3D-Models/jigsaw', 'https://www.turbosquid.com/Search/3D-Models/riddle']","The model needs to be turned at a certain angle********************************* Hope you like it! Also check out my other models, just click on my user name to see complete gallery." +3D sofa model,aya2299," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-11," + + +Other 2015 + +","['3D Model', 'furnishings', 'seating', 'sofa']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/sofa']","['Sofa', 'livivg']","['https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/livivg']",Cadillac Sofa Rugiano +Game Container 3D model,SkilHardRU," +Free +", - All Extended Uses,2019-05-11," + + +FBX 16 + + + + +OBJ 16 + + + + +3D Studio Project png + +","['3D Model', 'vehicles', 'vehicle parts', 'spacecraft parts', 'sci fi container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/spacecraft-parts', 'https://www.turbosquid.com/3d-model/sci-fi-container']","['Sci-fi', 'props', 'crate', 'box', 'military', 'halway', 'panel', 'free', 'industrial', 'scifi', 'game', 'games', 'container', 'kargo', 'cargo']","['https://www.turbosquid.com/Search/3D-Models/sci-fi', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/halway', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/scifi', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/games', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/kargo', 'https://www.turbosquid.com/Search/3D-Models/cargo']","Game ContainerContainer Free. Hi friends, I share the free requisite for the game environment, I hope you will be pleased to receive a free model! And so what is in the archives.1) HighPoly model for baking2) LowPoly model for baking3) LowPoly model for texturing4) Game LowPoly model with real size" +3D model 3D city Bryzeziny Poland,ymcmbennie," +Free +", - All Extended Uses,2019-05-10,,"['3D Model', 'architecture', 'urban design', 'city']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/city']",['#architecture'],['https://www.turbosquid.com/Search/3D-Models/%23architecture'],Accurate part of city in lodz Piotkowska streetMasses of enviroment +Blue moon spacecraft 3D model,AdrienJ," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-10," + + +OBJ + + + + +Other + +","['3D Model', 'vehicles', 'spacecraft', 'lander']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/lander']","['""Blue', 'Moon""', 'jeff', 'besos', 'amazon', 'spacecraft', 'nasa']","['https://www.turbosquid.com/Search/3D-Models/%22blue', 'https://www.turbosquid.com/Search/3D-Models/moon%22', 'https://www.turbosquid.com/Search/3D-Models/jeff', 'https://www.turbosquid.com/Search/3D-Models/besos', 'https://www.turbosquid.com/Search/3D-Models/amazon', 'https://www.turbosquid.com/Search/3D-Models/spacecraft', 'https://www.turbosquid.com/Search/3D-Models/nasa']",3D Blue moon spacecraftIMPORTANT : Please note that the dimensions are approximate.Thank you. +Couch 3D model,tauan_bellintani," +Free +", - All Extended Uses,2019-05-09," + + +FBX + +","['3D Model', 'furnishings', 'seating', 'sofa', 'leather sofa']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/sofa', 'https://www.turbosquid.com/3d-model/leather-sofa']","['couch', 'old', 'antique', 'vintage', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/couch', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/furniture']",A nice couch :) +3D Audio Speaker model,AdrienJ," +Free +", - All Extended Uses,2019-05-09,,"['3D Model', 'technology', 'computer equipment', 'computer speakers']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-speakers']","['Audio', 'Speaker', 'Computer', 'PC']","['https://www.turbosquid.com/Search/3D-Models/audio', 'https://www.turbosquid.com/Search/3D-Models/speaker', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/pc']",Multi Media audio speakerPolygons : 1030Vertex : 8708 +Desk 3D,tauan_bellintani," +Free +", - All Extended Uses,2019-05-08," + + +Other + +","['3D Model', 'furnishings', 'desk', 'office desk', 'workstation']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/office-desk', 'https://www.turbosquid.com/3d-model/workstation']","['desk', 'wood', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/furniture']",A low poly deskto use in decorations. +Chair 3D model,tauan_bellintani," +Free +", - All Extended Uses,2019-05-08," + + +FBX + +","['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['chair', 'furniture', 'decoration', 'wood']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/wood']",A low poly chair to use in decorations. +3D Armchair model,tauan_bellintani," +Free +", - All Extended Uses,2019-05-08," + + +FBX + +","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['armchair', 'chair', 'furniture', 'house']","['https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/house']",A low poly armchair to use in decorations. +Nightstand 3D model,tauan_bellintani," +Free +", - All Extended Uses,2019-05-08,,"['3D Model', 'furnishings', 'night stand']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/night-stand']","['wood', 'nightstand', 'stand', 'furniture', 'bedroom']","['https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/nightstand', 'https://www.turbosquid.com/Search/3D-Models/stand', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/bedroom']",A low poly nightstand to use in decorations. +cube animatable 3D model,AdrienJ," +Free +", - Editorial Uses Only,2019-05-08,,"['3D Model', 'toys and games', 'games', 'puzzle', 'puzzle cube']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/puzzle', 'https://www.turbosquid.com/3d-model/puzzle-cube']","['children', 'entertainment', 'child', 'cube', 'game', 'geek']","['https://www.turbosquid.com/Search/3D-Models/children', 'https://www.turbosquid.com/Search/3D-Models/entertainment', 'https://www.turbosquid.com/Search/3D-Models/child', 'https://www.turbosquid.com/Search/3D-Models/cube', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/geek']",polygons 6359vertex 5895 +3D Cabinet-01 model,Fabline," +Free +", - All Extended Uses,2019-05-08," + + +AutoCAD drawing 2007 + + + + +FBX 2014 + + + + +Other + + + + +OBJ + +","['3D Model', 'furnishings', 'cabinet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/cabinet']","['furniture', 'cabinet']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/cabinet']","Previews were rendered with Autocad 2010 V-Ray 3.6.03 for 3ds Max 2017.Includes image file textures~~~~~~~~~~~~~~~~~~Hope you like it!Also check out my other models, just click on fabline to see complete gallery." +Fortnite Floss Dance Emote FREE 3D model,dumpgermanlucas," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-08," + + +FBX 2016 + + + + +Other + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'sloth']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/sloth']","['dance', 'sloth', '3d-animation', 'emote', 'free-model', 'floss', 'fortnite', 'flossdance', 'fortnite-animation', '3d', 'free', 'fortnite-floss-emotes', 'floss-dance']","['https://www.turbosquid.com/Search/3D-Models/dance', 'https://www.turbosquid.com/Search/3D-Models/sloth', 'https://www.turbosquid.com/Search/3D-Models/3d-animation', 'https://www.turbosquid.com/Search/3D-Models/emote', 'https://www.turbosquid.com/Search/3D-Models/free-model', 'https://www.turbosquid.com/Search/3D-Models/floss', 'https://www.turbosquid.com/Search/3D-Models/fortnite', 'https://www.turbosquid.com/Search/3D-Models/flossdance', 'https://www.turbosquid.com/Search/3D-Models/fortnite-animation', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/fortnite-floss-emotes', 'https://www.turbosquid.com/Search/3D-Models/floss-dance']",3D Sloth Floss Dance And Free for any Commercial Use. +3D Chateau de Cheverny,AdrienJ," +Free +", - All Extended Uses,2019-05-08," + + +Other + +","['3D Model', 'architecture', 'building', 'residential building', 'manor']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/manor']","['Chateau', 'castle', 'cheverny', 'france', 'tintin', 'moulinsart', '3d', 'French']","['https://www.turbosquid.com/Search/3D-Models/chateau', 'https://www.turbosquid.com/Search/3D-Models/castle', 'https://www.turbosquid.com/Search/3D-Models/cheverny', 'https://www.turbosquid.com/Search/3D-Models/france', 'https://www.turbosquid.com/Search/3D-Models/tintin', 'https://www.turbosquid.com/Search/3D-Models/moulinsart', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/french']","Chateau de cheverny / Chateau de moulinsartFrench castlePolygons :78971Vertex : 91968The castle of Cheverny is located in Sologne, on the commune of Cheverny, in the department of Loir-et-Cher and the region Centre-Val de Loire. It is one of the most frequented Loire castles with those of Blois and Chambord, very close. Classified as 'Historic Monuments', this castle is raised in the seventeenth century.He inspired Herge to create the Moulinsart castle, which is a replica of it." +3D High Poly Realistic Tree model,nahidhassan881," +Free +", - All Extended Uses,2019-05-08,,"['3D Model', 'nature', 'tree', 'deciduous tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/deciduous-tree']","['high', 'poly', 'realistic', 'tree']","['https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/tree']",this is a very high poly tree and also very realistic. this tree have pbr texture and proper transparent shader +Fantasy Dice 3D model,yoong5853," +Free +", - All Extended Uses,2019-05-07," + + +Collada 1 + + + + +FBX 1 + + + + +Other 1 + + + + +OBJ 1 + + + + +STL 1 + +","['3D Model', 'toys and games', 'games', 'dice']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dice']","['dice', 'poker', 'casino', 'clubs', 'spades', 'diamonds', 'hearts', 'ring', 'round', 'symbol', 'fantasy', 'gamble']","['https://www.turbosquid.com/Search/3D-Models/dice', 'https://www.turbosquid.com/Search/3D-Models/poker', 'https://www.turbosquid.com/Search/3D-Models/casino', 'https://www.turbosquid.com/Search/3D-Models/clubs', 'https://www.turbosquid.com/Search/3D-Models/spades', 'https://www.turbosquid.com/Search/3D-Models/diamonds', 'https://www.turbosquid.com/Search/3D-Models/hearts', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/symbol', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/gamble']",A Dice with a Poker Symbol Ring +Free 40mm grenade M433 3D,teodar23," +Free +", - All Extended Uses,2019-05-07," + + +Other + + + + +FBX + + + + +OBJ + +","['3D Model', 'weaponry', 'munitions', 'grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade']","['grenade', 'ammo', 'projectile', '40mm', 'realistic', 'props', 'low-poly', 'game-ready', 'military', 'modern', 'M433']","['https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/ammo', 'https://www.turbosquid.com/Search/3D-Models/projectile', 'https://www.turbosquid.com/Search/3D-Models/40mm', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/m433']","This is just a sample from the grenades pack.Built to specs (where available) and real dimensions. Very detailed and realistic but low poly and optimized. Triangle count is around 2000. Vertex Count: ~1500. Model in FBX and obj format. Textures are 1k (1024x1024). In the (paid) pack version all textures are 4k. Can be used as projectiles for weapons, attachments for characters or just as props. *Environment in the pictures is not included." +3D Alien game character,Muhannad Alobaidi," +Free +", - All Extended Uses,2019-05-07,,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'alien']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/alien']","['character', 'gameready', 'game', 'alien', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/alien', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']",game character created for a game project called Alien escape rigging ready low poly model +3D Pick PBR Low-Poly 4K model,GooPi," +Free +", - All Extended Uses,2019-05-07," + + +3D Studio + + + + +FBX 7.5 2016 + + + + +OBJ + + + + +STL + + + + +Shockwave 3D + +","['3D Model', 'industrial', 'tools', 'gardening tools', 'mattock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/gardening-tools', 'https://www.turbosquid.com/3d-model/mattock']","['pick', 'pickaxe', 'pickax', 'picker', 'weapon', 'gun', 'weaponry', 'unity', 'unreal', 'engine', '4', 'cryengine', 'VR']","['https://www.turbosquid.com/Search/3D-Models/pick', 'https://www.turbosquid.com/Search/3D-Models/pickaxe', 'https://www.turbosquid.com/Search/3D-Models/pickax', 'https://www.turbosquid.com/Search/3D-Models/picker', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/weaponry', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/4', 'https://www.turbosquid.com/Search/3D-Models/cryengine', 'https://www.turbosquid.com/Search/3D-Models/vr']","Pick PBR Low-Poly 4KI invented it myself (Everything belongs to me)Check out my other work____________________________________Texture Sizes:All - 4096x4096(BaseColor, Roughness, Metalness,Normal)PNG* Geometry: Polygon mesh* Polygons:276* Vertices:148* Rigged - No* Animated - No* LOW-POLY - Yes* PBR - Yes* Number of Meshes: 1* Number of Textures:: 4* Materials - 1* UVW mapping - Non-overlapping* LODs: 0* Documentation:No* mportant/Additional Notes: NoTegs:pickpickaxepickaxpickerweapongunweaponryunityunreal engine 4cryengineVR" +3D model picnic table,milkmanfromhell.net," +Free +", - All Extended Uses,2019-05-06," + + +OBJ + +","['3D Model', 'furnishings', 'table', 'picnic table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/picnic-table']","['picnic', 'table', '3d', 'game']","['https://www.turbosquid.com/Search/3D-Models/picnic', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/game']",Table picnic with relief UV map already done +3D Kitchen Hood model,kristoM5," +Free +", - All Extended Uses,2019-05-01," + + +3D Studio + + + + +AutoCAD drawing 2013 + + + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'interior design', 'appliance', 'household appliance', 'kitchen appliance', 'range hood']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/appliance', 'https://www.turbosquid.com/3d-model/household-appliance', 'https://www.turbosquid.com/3d-model/kitchen-appliance', 'https://www.turbosquid.com/3d-model/range-hood']","['kitchenhood', 'cooking', 'interior', 'furnishings', 'architecture', 'cooker', 'modern', 'steel', 'electric', 'equipment', 'oven', 'home', 'air', 'kitchen', 'hood']","['https://www.turbosquid.com/Search/3D-Models/kitchenhood', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/furnishings', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/cooker', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/electric', 'https://www.turbosquid.com/Search/3D-Models/equipment', 'https://www.turbosquid.com/Search/3D-Models/oven', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/air', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/hood']","Hello, I offer You a high quality 3D model of a kitchen hood. It is a part of a larger collection. Please check my other models. I am sure You will find a proper kitchen hood for Your scene. Regards" +China-Russia CR929 Aircraft (Speculative) Solid Assembly Model (Rev 2 Free) 3D model,RodgerSaintJohn," +Free +", - All Extended Uses,2019-05-05," + + +Other Step 203 + + + + +Other Sat + +","['3D Model', 'vehicles', 'aircraft', 'airplane', 'jet', 'airliner']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/jet', 'https://www.turbosquid.com/3d-model/airliner']","['China', 'Russia', 'CR929', 'Aircraft', 'Speculative', 'Solid', 'Assembly', 'Model', 'Airplane', 'Aeronautics', 'Aerodynamics', 'Propulsion', 'Engine', 'Structure']","['https://www.turbosquid.com/Search/3D-Models/china', 'https://www.turbosquid.com/Search/3D-Models/russia', 'https://www.turbosquid.com/Search/3D-Models/cr929', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/speculative', 'https://www.turbosquid.com/Search/3D-Models/solid', 'https://www.turbosquid.com/Search/3D-Models/assembly', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/airplane', 'https://www.turbosquid.com/Search/3D-Models/aeronautics', 'https://www.turbosquid.com/Search/3D-Models/aerodynamics', 'https://www.turbosquid.com/Search/3D-Models/propulsion', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/structure']","The China-Russia CR929Transport Aircraft Solid Assembly Model consists of 522 solid part primitives collected into 26 sub assembly modules. NOTE: This is a speculative model based on fragmentary information.All of my models are developed specifically for use by conceptual designers, experimenters, educators, students and hobbyists. The models are constructed from scratch employing scaling of publicly released simple 3 view drawings and experienced based assumptions. Although general representation is very good - detail accuracy and accountability can be compromised by this approach.Its FREE. Enjoy!" +Flash-Bang Grenade Zaria 3D model,MyNameIsVoo," +Free +", - All Extended Uses,2019-05-05," + + +3D Studio + + + + +AutoCAD drawing + + + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'weaponry', 'munitions', 'grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade']","['Grenade', 'Flash', 'Bang', 'Zaria', 'Military', 'Arms', 'Gun', 'Stun', 'Bomb', 'Weapon', 'War', 'Explosives', 'Defence', 'Swat', 'Unity', 'Game', 'Low', 'Detailed', 'High']","['https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/flash', 'https://www.turbosquid.com/Search/3D-Models/bang', 'https://www.turbosquid.com/Search/3D-Models/zaria', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/arms', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/stun', 'https://www.turbosquid.com/Search/3D-Models/bomb', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/explosives', 'https://www.turbosquid.com/Search/3D-Models/defence', 'https://www.turbosquid.com/Search/3D-Models/swat', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/detailed', 'https://www.turbosquid.com/Search/3D-Models/high']","Flash-Bang Grenade ZariaModel created in real world size. Units used - millimetersFeatures: - High-quality textures: 2048x2048- Textures complete - Diffuse(Albedo) map, Normal map, Specular map, AO- Optimized for games- LP and HP modelsRENDER: Marmoset Toolbag 2Quixel Suite 2Unity 5Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures." +PUBG PAN model,Sidrenders," +Free +", - Editorial Uses Only,2019-05-05," + + +OBJ 1 + + + + +FBX 1 + +","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cookware', 'pan', 'frying pan']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cookware', 'https://www.turbosquid.com/3d-model/pan', 'https://www.turbosquid.com/3d-model/frying-pan']","['pan', 'pubg', 'gameassest', 'assests', 'props', 'model', '3dmodel', 'blender', 'pubgfanart']","['https://www.turbosquid.com/Search/3D-Models/pan', 'https://www.turbosquid.com/Search/3D-Models/pubg', 'https://www.turbosquid.com/Search/3D-Models/gameassest', 'https://www.turbosquid.com/Search/3D-Models/assests', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/3dmodel', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/pubgfanart']","inspired from pubg...modelled in blender , textured in 3dcoat and rendered in marmoset toolbag3 ..available in fbx and obj format ...textures are in 2k sorry about that.. my laptop cant export 4k textures :(anyways i hope you love it ..have an amazing day:)and if you want any modification tell me :)AND PLZ PLZ PLZ PLZ PLZ PLZ RATE THIS MODEL PLZ PLZ" +3D small house,Tako_," +Free +", - All Extended Uses,2019-05-04,,"['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']",['house'],['https://www.turbosquid.com/Search/3D-Models/house'],small house +Desk 3D,Pereplonov," +Free +", - All Extended Uses,2019-05-03,,"['3D Model', 'furnishings', 'desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk']","['desktop', 'Neon', 'table', 'computer', 'table', 'computer', 'Desk']","['https://www.turbosquid.com/Search/3D-Models/desktop', 'https://www.turbosquid.com/Search/3D-Models/neon', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/desk']",Desk.Free model made using the graphical editor Cinema 4D. +Stone Floor model,4Engine," +Free +", - All Extended Uses,2019-05-03," + + +3D Studio + + + + +Other + + + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'finishes', 'flooring', 'tile']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/finishes', 'https://www.turbosquid.com/3d-model/flooring', 'https://www.turbosquid.com/3d-model/tile']","['floor', 'architecture', 'low-poly', 'game-ready', 'environment', 'stone', 'realistic', 'ancient', 'old', 'ground', 'debris', 'grass', 'tileable', 'tile']","['https://www.turbosquid.com/Search/3D-Models/floor', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game-ready', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/ground', 'https://www.turbosquid.com/Search/3D-Models/debris', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/tileable', 'https://www.turbosquid.com/Search/3D-Models/tile']","A set of textures and models of additional objects to create a stone floor.- Polycount (tris):StoneFloor-SlabOne - 146,StoneFloor-SlabOne-LOD1 - 68,StoneFloor-SlabOne-LOD2 - 10,StoneFloor_SlabTwo - 154,StoneFloor_SlabTwo_LOD1 - 74,StoneFloor_SlabTwo_LOD2 - 10,StoneFloor_Ground - 29,StoneFloor_Ground_LOD1 - 10,StoneFloor_Ground_LOD2 - 2,StoneFloor-GrassOne - 16,StoneFloor-GrassOne-LOD1 - 8,StoneFloor-GrassOne-LOD2 - 4,StoneFloor-GrassTwo - 16,StoneFloor-GrassTwo-LOD1 - 8,StoneFloor-GrassTwo-LOD2 - 4,StoneFloor-FragmentOne - 40,StoneFloor-FragmentOne-LOD1 - 20,StoneFloor-FragmentOne-LOD2 - 10,StoneFloor-FragmentTwo - 44,StoneFloor-FragmentTwo-LOD1 - 22,StoneFloor-FragmentTwo-LOD2 - 10,StoneFloor-FragmentThree - 54,StoneFloor-FragmentThree-LOD1 - 26,StoneFloor-FragmentThree-LOD2 - 10,StoneFloor-FragmentFour - 50,StoneFloor-FragmentFour-LOD1 - 24,StoneFloor-FragmentFour-LOD2 - 10,StoneFloor-FragmentFive - 52,StoneFloor-FragmentFive-LOD1 - 26,StoneFloor-FragmentFive-LOD2 - 10.-Textures(.jpg, .tga, 4096x4096, 2048x2048, 1024x1024):Diffuse,Normal,Specular.The models was created in the program Blender 2.79. Native files are in archive BLEND. Also in the corresponding archives there are files for import: 3DS, FBX, OBJ. Textures can be found in archives TEXTURES and BONUS (additional textures that can be useful to someone in the work)." +Cute bean monster 3D model,luiis98," +Free +", - All Extended Uses,2019-05-03," + + +OBJ + + + + +Other + +","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['cute', 'bean', 'monster', 'cutemonster', 'cartoon']","['https://www.turbosquid.com/Search/3D-Models/cute', 'https://www.turbosquid.com/Search/3D-Models/bean', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/cutemonster', 'https://www.turbosquid.com/Search/3D-Models/cartoon']",Simple 3D model of a Cute bean monster +Office Room 3D model,Dipro Mondal," +Free +", - All Extended Uses,2019-05-03," + + +3D Studio + + + + +OBJ + + + + +Other + + + + +FBX + +","['3D Model', 'furnishings', 'desk', 'office desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk', 'https://www.turbosquid.com/3d-model/office-desk']","['room', 'office', 'table', 'chair']","['https://www.turbosquid.com/Search/3D-Models/room', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/chair']",Office room design with basic elements +3D Cartoon Low Poly Tugboat Illustration,Anton Moek," +Free +", - All Extended Uses,2019-05-03," + + +3D Studio + + + + +FBX + + + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'vehicles', 'vessel', 'cartoon boat']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/cartoon-boat']","['cartoon', 'lowpoly', 'weter', 'boat', 'tug', 'sea', 'low', 'poly', 'free', 'illustration', 'unity', 'game', 'cinema4d', 'c4d', 'antonmoek', 'art', 'simple', 'toy', 'port', 'toon', 'ship', 'design']","['https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/weter', 'https://www.turbosquid.com/Search/3D-Models/boat', 'https://www.turbosquid.com/Search/3D-Models/tug', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/illustration', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/cinema4d', 'https://www.turbosquid.com/Search/3D-Models/c4d', 'https://www.turbosquid.com/Search/3D-Models/antonmoek', 'https://www.turbosquid.com/Search/3D-Models/art', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/port', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/ship', 'https://www.turbosquid.com/Search/3D-Models/design']",- Cartoon Lowpoly Tugboat Illustration Scene- Created on Cinema 4d R17 (Render Ready on native file)- 25 218 Polygons- Procedural textured- Game Ready +SCI-FI BG 3D model,kastaniga," +Free +", - All Extended Uses,2019-05-03," + + +3D Studio + + + + +Other + + + + +AutoCAD drawing 2010 + + + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'nature', 'landscapes', 'cartoon landscapes']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/cartoon-landscapes']","['3d', 'cg', 'blender', 'animation', 'evee']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/cg', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/evee']","This is science-fiction background for your production. This scene created with blender 2.8.Only blender version ready for rendering. Blender version displacement with height map.Other formats (3dsmax,maya) ready mesh with displacement." +3D Low Poly Truck,Finlay12345," +Free +", - All Extended Uses,2019-05-02," + + +OBJ 1 + + + + +Microsoft DirectDraw Surface 1 + + + + +PNG 1 + +","['3D Model', 'vehicles', 'car', 'fictional automobile', 'cartoon car', 'cartoon truck']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/fictional-automobile', 'https://www.turbosquid.com/3d-model/cartoon-car', 'https://www.turbosquid.com/3d-model/cartoon-truck']","['Fire', 'Truck', 'low', 'poly']","['https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly']",This is a basic low poly truck I made when when i was still learning blender. The truck is sound and has no errors in it. +3D dog tags,desmundo," +Free +", - All Extended Uses,2019-05-02," + + +OBJ + +","['3D Model', 'fashion and beauty', 'apparel', 'uniform', 'military uniform', 'dog tag']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/uniform', 'https://www.turbosquid.com/3d-model/military-uniform', 'https://www.turbosquid.com/3d-model/dog-tag']","['dog', 'tags', 'chain', 'necklace', 'army', 'astronaut']","['https://www.turbosquid.com/Search/3D-Models/dog', 'https://www.turbosquid.com/Search/3D-Models/tags', 'https://www.turbosquid.com/Search/3D-Models/chain', 'https://www.turbosquid.com/Search/3D-Models/necklace', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/astronaut']",a pair of 3D dog tags to be used as you please. +3D spacestation,desmundo," +Free +", - All Extended Uses,2019-05-02," + + +OBJ + +","['3D Model', 'vehicles', 'spacecraft', 'space station']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/spacecraft', 'https://www.turbosquid.com/3d-model/spacestation']","['space', 'station', 'spaceship']","['https://www.turbosquid.com/Search/3D-Models/space', 'https://www.turbosquid.com/Search/3D-Models/station', 'https://www.turbosquid.com/Search/3D-Models/spaceship']",a 3D space station to be used as you desire +Road bike 3D model,RokReef," +Free +", - All Extended Uses,2019-05-02," + + +OBJ + +","['3D Model', 'vehicles', 'pedaled vehicles', 'bicycle', 'road bicycle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/pedaled-vehicles', 'https://www.turbosquid.com/3d-model/bicycle', 'https://www.turbosquid.com/3d-model/road-bicycle']","['road', 'bike.', 'bicycle.']","['https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/bike.', 'https://www.turbosquid.com/Search/3D-Models/bicycle.']",Road bike. low model detail. reasonable for mid to far distance scene placement. +zelas armchair 3D model,liquidmodeling," +Free +", - All Extended Uses,2019-05-02," + + +OBJ + +","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['armchair', 'furniture', 'chair', 'interior', 'furnishings', 'free']","['https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/furnishings', 'https://www.turbosquid.com/Search/3D-Models/free']","High quality model. Detailed enough for close-up rendersFile formats: 3dmax * Corona OBJHope you like it! Also check out my other models, just click on my user name to see complete gallery" +The sleigh out of wood 3D,kidokrus," +Free +", - All Extended Uses,2019-05-02,,"['3D Model', 'vehicles', 'wagon', 'sledge']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/wagon', 'https://www.turbosquid.com/3d-model/sledge']","['sledge', 'sleigh', 'sled', 'toboggan', 'luge', 'winter', 'wintertime', 'tree', 'wood', 'timber', 'blender', 'wooden', 'woodwork', 'snow']","['https://www.turbosquid.com/Search/3D-Models/sledge', 'https://www.turbosquid.com/Search/3D-Models/sleigh', 'https://www.turbosquid.com/Search/3D-Models/sled', 'https://www.turbosquid.com/Search/3D-Models/toboggan', 'https://www.turbosquid.com/Search/3D-Models/luge', 'https://www.turbosquid.com/Search/3D-Models/winter', 'https://www.turbosquid.com/Search/3D-Models/wintertime', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/timber', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/woodwork', 'https://www.turbosquid.com/Search/3D-Models/snow']","My first model, which I want to sell. I make this about 10 hours. Wood texture 3000x3000. Red texture 2000x2000." +3D Royalty free model,dustinmeyer," +Free +", - All Extended Uses,2019-05-01,,"['3D Model', 'symbols', 'geometric shape', 'cube']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes', 'https://www.turbosquid.com/3d-model/geometric-shape', 'https://www.turbosquid.com/3d-model/cube-shape']","['cube', 'free']","['https://www.turbosquid.com/Search/3D-Models/cube', 'https://www.turbosquid.com/Search/3D-Models/free']","Royalty free cube, made fresh in blender 2.79 almost in every useable format!!" +3D Free Retro Street Lamp model,Marc Mons," +Free +", - All Extended Uses,2019-05-01," + + +OBJ 2016 + + + + +FBX 2016 + +","['3D Model', 'architecture', 'urban design', 'street elements', 'street light']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/street-light']","['lighting', 'street', 'house', 'residencel', 'history', 'ancient', 'retro', 'vintage', 'unity', 'set', 'road', 'toon', 'light', 'lamp', 'city', 'town', 'path', 'metal', 'iron', 'classic', 'fbx', 'maya']","['https://www.turbosquid.com/Search/3D-Models/lighting', 'https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/residencel', 'https://www.turbosquid.com/Search/3D-Models/history', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/path', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/maya']","Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support." +3D Silencer 5.56 model,MyNameIsVoo," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-30," + + +3D Studio + + + + +FBX + + + + +IGES + + + + +OBJ + + + + +STL + +","['3D Model', 'weaponry', 'weapons', 'ordnance accessories', 'silencer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/ordnance-accessories', 'https://www.turbosquid.com/3d-model/silencer']","['Silencer', 'Suppressors', 'Recon', 'Damper', 'Retarder', 'Acoustic', 'Absorber', 'Moderator', 'Exhaust', 'Muzzle', 'Realtime', 'Set', 'Mod', 'Attachment', '556', 'Weapon', 'Pistol', 'Gun', 'Army', 'Military']","['https://www.turbosquid.com/Search/3D-Models/silencer', 'https://www.turbosquid.com/Search/3D-Models/suppressors', 'https://www.turbosquid.com/Search/3D-Models/recon', 'https://www.turbosquid.com/Search/3D-Models/damper', 'https://www.turbosquid.com/Search/3D-Models/retarder', 'https://www.turbosquid.com/Search/3D-Models/acoustic', 'https://www.turbosquid.com/Search/3D-Models/absorber', 'https://www.turbosquid.com/Search/3D-Models/moderator', 'https://www.turbosquid.com/Search/3D-Models/exhaust', 'https://www.turbosquid.com/Search/3D-Models/muzzle', 'https://www.turbosquid.com/Search/3D-Models/realtime', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/mod', 'https://www.turbosquid.com/Search/3D-Models/attachment', 'https://www.turbosquid.com/Search/3D-Models/556', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/army', 'https://www.turbosquid.com/Search/3D-Models/military']","Silencer 5.56 Detailed- 3D ModelModel created in real world size. Units used - millimetersFeatures: - Included HP and LP models- High-quality textures: 2048x2048- Textures complete - Diffuse(Albedo) map, Normal map, Specular map - Complete 4 colors (Black, White, Aluminum and Aluminum-Yellow)LP model:- With Textures- Optimized for gamesHP model:- Without TexturesRENDER: Marmoset Toolbag 2Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures." +Battle Axe Breaker 3D model,sepandj," +Free +", - All Extended Uses,2019-05-01," + + +3D Studio + + + + +Other + + + + +Collada + + + + +AutoCAD drawing + + + + +DXF + + + + +FBX + + + + +OpenFlight + + + + +IGES + + + + +OBJ + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'battle axe', 'medieval axe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/battle-axe', 'https://www.turbosquid.com/3d-model/medieval-axe']","['battle', 'axe', 'fight', 'war', 'handle', 'wood', 'dirt', 'steel', 'iron', 'cast', 'smith', 'medieval', 'rust', 'melee', 'weapon', 'blade', 'waraxe']","['https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/axe', 'https://www.turbosquid.com/Search/3D-Models/fight', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/handle', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/dirt', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/cast', 'https://www.turbosquid.com/Search/3D-Models/smith', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/waraxe']","It's a battle axe I've created by 3Ds MAX and tried to keep it low-poly so it can be easily used in games. I have made some maps for it by substance painter for it (which I have included in material assets), but I was not satisfied with the results so I materialized it again with Corona Materials (the renders).- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**- **Please Rate and Comment What You Think.**" +3D Wheelbarrow with Sand model,elvair," +Free +", - All Extended Uses,2019-05-01," + + +Other Textures + + + + +Collada + + + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'industrial', 'tools', 'cart', 'wheelbarrow']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cart-tool', 'https://www.turbosquid.com/3d-model/wheelbarrow']","['Shovel', 'old', 'rusted', 'mud', 'wheel', 'barrow', 'wheelbarrow', 'construction', 'industrial', 'farming', 'tool', 'trolley', 'sand', 'gravel', 'rusty', 'rust', 'low', 'poly', 'game', 'dirt']","['https://www.turbosquid.com/Search/3D-Models/shovel', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/rusted', 'https://www.turbosquid.com/Search/3D-Models/mud', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/barrow', 'https://www.turbosquid.com/Search/3D-Models/wheelbarrow', 'https://www.turbosquid.com/Search/3D-Models/construction', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/farming', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/trolley', 'https://www.turbosquid.com/Search/3D-Models/sand', 'https://www.turbosquid.com/Search/3D-Models/gravel', 'https://www.turbosquid.com/Search/3D-Models/rusty', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/dirt']",Features:- Low poly.- Game ready.- All textures included and materials applied.- Easy to modify.- Grouped and nomed parts.- All formacts tested and working.- Optimized.- No plugins required.- Atlas texture size: 4096x4096. +3D Colt Navy 1851 model,Valerii Horlo," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-05-01," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'revolver']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun', 'https://www.turbosquid.com/3d-model/revolver']","['weapon', 'gun', 'revolver', 'colt', 'navy', 'game']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/revolver', 'https://www.turbosquid.com/Search/3D-Models/colt', 'https://www.turbosquid.com/Search/3D-Models/navy', 'https://www.turbosquid.com/Search/3D-Models/game']","This is a full gameready aset of revolver Colt Navy 1851. Made as close as possible to the original with realistic texture. This is a lowpoly model modeled in May 2018. The pbr texture is made in Sabstence Painter and completed in Photoshop. Rendered in Marmoset toolbag 3 Texture pack includes:-Base color(Albedo); -AO; -Normal Map; -Roughness; -Metallic.All textures are 2048x2048. If you need to change the color of the model or if you have any problems, I will be happy to help you anytime." +Water bottle model,AdrienJ," +Free +", - All Extended Uses,2019-05-01," + + +Other + +","['3D Model', 'food and drink', 'food container', 'bottle', 'water bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food-container', 'https://www.turbosquid.com/3d-model/bottle', 'https://www.turbosquid.com/3d-model/water-bottle']","['Water', 'bottle', 'drink', 'bar']","['https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/bar']",Low poly water bottlePolygons : 550Vertex : 597Rendering : vraySoftware : 3dsmax 2017Textures : 2 +Greanade RGD-5 3D,MyNameIsVoo," +Free +", - All Extended Uses,2019-05-01," + + +3D Studio + + + + +FBX + + + + +IGES + + + + +OBJ + + + + +STL + +","['3D Model', 'weaponry', 'munitions', 'grenade', 'rgd-5 grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade', 'https://www.turbosquid.com/3d-model/rgd-5-grenade']","['Grenade', 'rgd-5', 'fuse', 'explosion', 'danger', 'soviet', 'war', 'military', 'violence', 'bomb', 'hand', 'rgd5', 'rgd', 'frag', 'handgrenade', 'unity', 'game', 'free', 'low', 'weapon']","['https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/rgd-5', 'https://www.turbosquid.com/Search/3D-Models/fuse', 'https://www.turbosquid.com/Search/3D-Models/explosion', 'https://www.turbosquid.com/Search/3D-Models/danger', 'https://www.turbosquid.com/Search/3D-Models/soviet', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/violence', 'https://www.turbosquid.com/Search/3D-Models/bomb', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/rgd5', 'https://www.turbosquid.com/Search/3D-Models/rgd', 'https://www.turbosquid.com/Search/3D-Models/frag', 'https://www.turbosquid.com/Search/3D-Models/handgrenade', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/weapon']","Grenade RGD-5 DefenseModel created in real world size. Units used - millimetersFeatures: - High-quality textures: 2048x2048- Textures: 4 different colors(Yellow, Black, Green, Red)- Textures complete - Diffuse(Albedo) map, Normal map, Specular map, AO- Optimized for games- LP and HP modelsRENDER: Marmoset Toolbag 2Unity 5Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures." +pawn 3D model,desmundo," +Free +", - All Extended Uses,2019-04-30," + + +OBJ + +","['3D Model', 'toys and games', 'games', 'chess', 'chessmen', 'pawn']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/chess', 'https://www.turbosquid.com/3d-model/chessmen', 'https://www.turbosquid.com/3d-model/pawn']","['pawn', 'chess', 'piece']","['https://www.turbosquid.com/Search/3D-Models/pawn', 'https://www.turbosquid.com/Search/3D-Models/chess', 'https://www.turbosquid.com/Search/3D-Models/piece']",a 3D pawn chess piece +3D home model,desmundo," +Free +", - All Extended Uses,2019-04-30," + + +OBJ + +","['3D Model', 'architecture', 'building', 'residential building', 'house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house']","['house', 'home', 'two', 'story', 'go', 'inside', 'front', 'back', 'porch']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/home', 'https://www.turbosquid.com/Search/3D-Models/two', 'https://www.turbosquid.com/Search/3D-Models/story', 'https://www.turbosquid.com/Search/3D-Models/go', 'https://www.turbosquid.com/Search/3D-Models/inside', 'https://www.turbosquid.com/Search/3D-Models/front', 'https://www.turbosquid.com/Search/3D-Models/back', 'https://www.turbosquid.com/Search/3D-Models/porch']","a two story home with the ability to go inside with doors, front and back porches, and a stair case inside. all rooms can be entered." +3D mug model,desmundo," +Free +", - All Extended Uses,2019-04-30," + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup']","['mug', 'cup', 'drink', 'glass', 'beer', 'dish']","['https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/dish']",a mug to be used however you please +3D light post,desmundo," +Free +", - All Extended Uses,2019-04-30," + + +OBJ + +","['3D Model', 'architecture', 'urban design', 'street elements', 'street light']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/street-light']","['light', 'post', 'street', 'lamp']","['https://www.turbosquid.com/Search/3D-Models/light', 'https://www.turbosquid.com/Search/3D-Models/post', 'https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/lamp']",A street light or lamp with a mesh light included to be used how you wish. +3D Gaming Keyboard,AdrienJ," +Free +", - All Extended Uses,2019-04-28,,"['3D Model', 'technology', 'computer equipment', 'computer keyboard']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-keyboard']","['Gaming', 'Keyboard', 'Computer', 'Azerty']","['https://www.turbosquid.com/Search/3D-Models/gaming', 'https://www.turbosquid.com/Search/3D-Models/keyboard', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/azerty']",Gaming Keyboard (azerty)Polygons : 29712Vertex : 30783Rendering : vray +Eco-friendly Travel Cup model,Lance174," +Free +", - All Extended Uses,2019-04-28," + + +OBJ + + + + +Other + + + + +3D Studio + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup', 'paper coffee cup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup', 'https://www.turbosquid.com/3d-model/paper-coffee-cup']","['mug', 'travel', 'cup', 'glass', 'drink', 'tea', 'coffee', 'move', 'kitchen', 'objects', 'simple']","['https://www.turbosquid.com/Search/3D-Models/mug', 'https://www.turbosquid.com/Search/3D-Models/travel', 'https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/tea', 'https://www.turbosquid.com/Search/3D-Models/coffee', 'https://www.turbosquid.com/Search/3D-Models/move', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/objects', 'https://www.turbosquid.com/Search/3D-Models/simple']",Great simple travel mug which would suit any scenario and help Bring some eco-friendly life back.created from cork material.simple and easy to add. +Bunny Figurine model,Ablyr," +Free +", - All Extended Uses,2019-04-28,,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'rodent', 'rabbit', 'cartoon rabbit']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/rodent', 'https://www.turbosquid.com/3d-model/rabbit-animal', 'https://www.turbosquid.com/3d-model/cartoon-rabbit']","['Animal', 'Stylize', 'Figurines', 'Zbrush', 'Bunny', 'Rabbit']","['https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/stylize', 'https://www.turbosquid.com/Search/3D-Models/figurines', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/bunny', 'https://www.turbosquid.com/Search/3D-Models/rabbit']","Contains; ZTL,OBJ,STLZTL has textureRaw Zbrush poly 5.5M -Parts separate by subtools for easy modification." +3D model Lemon fruit tree,Indaneey_design," +Free +", - All Extended Uses,2019-04-27," + + +OBJ + + + + +3D Studio + + + + +FBX + +","['3D Model', 'nature', 'tree', 'fruit tree', 'citrus tree', 'lemon tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/fruit-tree', 'https://www.turbosquid.com/3d-model/citrus-tree', 'https://www.turbosquid.com/3d-model/lemon-tree']","['tree', 'lemon', 'fruit', 'orange', 'flower', 'bark', 'leaf', 'leaves', 'truck', 'branch', 'forest', 'bush', 'nature', 'garden']","['https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/lemon', 'https://www.turbosquid.com/Search/3D-Models/fruit', 'https://www.turbosquid.com/Search/3D-Models/orange', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/leaves', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/branch', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/bush', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/garden']","Lemon fruit treeFILES FORMAT: C4D FBX 3ds OBJ, MTLIf you are looking for animation of this model, I have looped wind animation of it.Please I really appreciate your review.if you have any issues please contact me. I treat support very seriously, please do not hesitate to contact me using the contact form on my profile!." +3D Wallet,Reddler," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-27," + + +OBJ + + + + +Other + + + + +FBX + +","['3D Model', 'fashion and beauty', 'apparel', 'fashion accessories', 'wallet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/fashion-accessories', 'https://www.turbosquid.com/3d-model/wallet']","['pokemon', 'pokeball', 'charizard', 'blastoise', 'venusaur', 'wallet', 'pouch', 'dollars', 'cartoon', 'toon', 'dollar', 'money', 'poke', 'ball', 'pocket', 'monsters']","['https://www.turbosquid.com/Search/3D-Models/pokemon', 'https://www.turbosquid.com/Search/3D-Models/pokeball', 'https://www.turbosquid.com/Search/3D-Models/charizard', 'https://www.turbosquid.com/Search/3D-Models/blastoise', 'https://www.turbosquid.com/Search/3D-Models/venusaur', 'https://www.turbosquid.com/Search/3D-Models/wallet', 'https://www.turbosquid.com/Search/3D-Models/pouch', 'https://www.turbosquid.com/Search/3D-Models/dollars', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/dollar', 'https://www.turbosquid.com/Search/3D-Models/money', 'https://www.turbosquid.com/Search/3D-Models/poke', 'https://www.turbosquid.com/Search/3D-Models/ball', 'https://www.turbosquid.com/Search/3D-Models/pocket', 'https://www.turbosquid.com/Search/3D-Models/monsters']","A Pokemon Wallet.Contains a Normal Map, Heightmap, Roughness, Diffuse, and Metallic as a PBR set.All textures are 2048x2048" +Battle Axe Cutter model,sepandj," +Free +", - All Extended Uses,2019-04-27," + + +3D Studio + + + + +Other + + + + +Collada + + + + +AutoCAD drawing + + + + +DXF + + + + +FBX + + + + +OpenFlight + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'battle axe', 'medieval axe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/battle-axe', 'https://www.turbosquid.com/3d-model/medieval-axe']","['axe', 'battle', 'war', 'melee', 'weapon', 'cut', 'cutter', 'medieval', 'old', 'vintage', 'rust', 'iron', 'steel', 'wood', 'sword', 'sharp', 'blade', 'kill', 'water', 'damage', 'scratch', 'hand', 'wooden', 'metal', 'shine']","['https://www.turbosquid.com/Search/3D-Models/axe', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/cut', 'https://www.turbosquid.com/Search/3D-Models/cutter', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/rust', 'https://www.turbosquid.com/Search/3D-Models/iron', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/sharp', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/kill', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/damage', 'https://www.turbosquid.com/Search/3D-Models/scratch', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/shine']","It's a battle axe I've created by 3Ds MAX and tried to keep it low-poly so it can be easily used in games. I have made some maps for it by substance painter for it (which I have included in material assets), but I was not satisfied with the results so I materialized it again with Corona Materials (the renders).- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**- **Please Rate and Comment What You Think.**" +3D model Modern Chair,Con To Art," +Free +", - All Extended Uses,2019-04-27,,"['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['chair', 'blender', 'blend', 'modern', 'pillow', 'pillows', 'uv', 'material', 'textured', 'free']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/blend', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/pillow', 'https://www.turbosquid.com/Search/3D-Models/pillows', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/material', 'https://www.turbosquid.com/Search/3D-Models/textured', 'https://www.turbosquid.com/Search/3D-Models/free']",A modern chair that is free to use. Already unwrapped and and textured it fits every living room.I would be very thankful if you post your renderings to the comments if you have used this chair! Always interested in what you can come up with!Have fun! +Loop Wind Coconut palm tree model,Indaneey_design," +Free +", - All Extended Uses,2019-04-26," + + +3D Studio + + + + +STL + + + + +OBJ + + + + +FBX + + + + +Other + +","['3D Model', 'nature', 'tree', 'palm tree', 'coconut palm']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/palm-tree', 'https://www.turbosquid.com/3d-model/coconut-palm']","['coconut', 'palm', 'tree', 'autumn', 'summer', 'bark', 'leaves', 'leaf', 'branches', 'plant', 'grass', 'vintage', 'winter', 'nature', 'forest', 'tropical', 'island', 'beach']","['https://www.turbosquid.com/Search/3D-Models/coconut', 'https://www.turbosquid.com/Search/3D-Models/palm', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/autumn', 'https://www.turbosquid.com/Search/3D-Models/summer', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/leaves', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/branches', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/grass', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/winter', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/tropical', 'https://www.turbosquid.com/Search/3D-Models/island', 'https://www.turbosquid.com/Search/3D-Models/beach']","This coconut Palm tree is a 3D model, with a looped wind animation.MAIN FEATURES: Looped wind animation ( C4D & FBX format ) Rigging ( C4D Only ) Bark texture (4k)FILES FORMAT: C4D ( animation ) FBX ( animation with PLA ) 3ds OBJ, MTL STLIf you want any kind of trees, I will make it for you in a low price.Please your review is very appreciated. Thank you!" +Collection of iron candlesticks 3D model,DTG Amusements," +Free +", - All Extended Uses,2019-04-26," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + +","['3D Model', 'interior design', 'housewares', 'general decor', 'candlestick holder']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/candlestick-holder']","['Candle', 'Candlestick']","['https://www.turbosquid.com/Search/3D-Models/candle', 'https://www.turbosquid.com/Search/3D-Models/candlestick']","Collection of iron candlesticksThis design is not animated. 123668 triangular polygonsPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ" +3D Tomahawk model,Roozbeh Edjbari," +Free +", - Editorial Uses Only,2019-04-25," + + +Other + + + + +FBX 2016 + + + + +OBJ 2016 + +","['3D Model', 'vehicles', 'motorcycle', 'racing motorcycle', 'superbike']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/motorcycle', 'https://www.turbosquid.com/3d-model/racing-motorcycle', 'https://www.turbosquid.com/3d-model/superbike']","['tomahawk', 'dodge', 'bike', 'motorcycle', 'vehicle', '3d', 'highpoly', 'subdiv', 'uv', 'texture']","['https://www.turbosquid.com/Search/3D-Models/tomahawk', 'https://www.turbosquid.com/Search/3D-Models/dodge', 'https://www.turbosquid.com/Search/3D-Models/bike', 'https://www.turbosquid.com/Search/3D-Models/motorcycle', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/highpoly', 'https://www.turbosquid.com/Search/3D-Models/subdiv', 'https://www.turbosquid.com/Search/3D-Models/uv', 'https://www.turbosquid.com/Search/3D-Models/texture']","Dodge Tomahawk This model is based on a real motorcycle concept created by Dodge in 2002. This model is for free. Enjoy!3D Model: QuadsTextures: Diffuse, Reflection, Glossiness, HeightThank you for downloading this itemIf you like it please rate it!" +sofa chair and pillow 3D model,SHREYASH_PRASHU," +Free +", - All Extended Uses,2019-04-25," + + +OBJ + + + + +Other + + + + +JPEG + +","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['pillow', 'sofa', 'chair']","['https://www.turbosquid.com/Search/3D-Models/pillow', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/chair']",sofa chair +3D Old TV model,YannickCossec," +Free +", - Editorial Uses Only,2019-04-25,,"['3D Model', 'technology', 'video devices', 'tv', 'retro tv']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/video-devices', 'https://www.turbosquid.com/3d-model/tv', 'https://www.turbosquid.com/3d-model/retro-tv']","['Old', 'TV', 'television', 'tele', 'display', 'screen', 'monitor']","['https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/tv', 'https://www.turbosquid.com/Search/3D-Models/television', 'https://www.turbosquid.com/Search/3D-Models/tele', 'https://www.turbosquid.com/Search/3D-Models/display', 'https://www.turbosquid.com/Search/3D-Models/screen', 'https://www.turbosquid.com/Search/3D-Models/monitor']","Here is an old TV, compatble with Maya and rendered with Arnold." +Particulate filter 3D model,AdrienJ," +Free +", - All Extended Uses,2019-04-24," + + +FBX 2014 + +","['3D Model', 'vehicles', 'vehicle parts', 'engine', 'construction engine']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/engine', 'https://www.turbosquid.com/3d-model/construction-engine']","['particulate', 'filter', 'construction', 'site', 'vehicle', 'digger']","['https://www.turbosquid.com/Search/3D-Models/particulate', 'https://www.turbosquid.com/Search/3D-Models/filter', 'https://www.turbosquid.com/Search/3D-Models/construction', 'https://www.turbosquid.com/Search/3D-Models/site', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/digger']","Height :                1,5mWidth :                1,5mLenght :                 0.5mSoftware :        3dsmax 2017Rendering :        VrayPolygons :         3281Vertex :                 3759" +Old American Car 3D model,Romooncle," +Free +", - All Extended Uses,2019-04-24,,"['3D Model', 'vehicles', 'car', 'wrecked car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/wrecked-car']","['car', 'amecan', 'wrecked', 'old', 'muscle', 'clasic', 'free', 'gameready', 'lowpoly', 'retro', 'transport', 'vihicle']","['https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/amecan', 'https://www.turbosquid.com/Search/3D-Models/wrecked', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/muscle', 'https://www.turbosquid.com/Search/3D-Models/clasic', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/vihicle']","Game ready lowpoly model.Poly: 14034Tris : 28054Verts: 155233 UV Parts: body, interior and details, chair.4 Textures for each part- Color (body, interior and details: 2048, chair: 1024)- Normal (body, interior and details: 2048, chair: 1024)- Roughness (body, interior and details: 2048, chair: 1024)- Metalness (body, interior and details: 2048, chair: 1024)Mirror overlapped UVFree model." +3D model Sword,Ellen11," +Free +", - All Extended Uses,2019-04-24," + + +OBJ + + + + +FBX + + + + +PNG + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']","['sword', 'weapon', 'metallic', 'knight', 'knife', 'military', 'blade']","['https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/metallic', 'https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/blade']",My first 3D model in TurboSquid! Just wanna share with you. Enjoy it for your game design or other 3D projects!Please feel free to leave me any feedback and questionsTexture resolution: 2048 x 1024 px.Rendered in MAYA with Arnold +3D Common Oak 3D Model 4.5m,cgaxis," +Free +", - All Extended Uses,2019-04-22," + + +FBX + + + + +Other textures + + + + +OBJ + + + + +Other + +","['3D Model', 'nature', 'tree', 'deciduous tree', 'oak tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/trees', 'https://www.turbosquid.com/3d-model/deciduous-tree', 'https://www.turbosquid.com/3d-model/oak-tree']","['common', 'oak', 'quercus', 'robur', 'tree', 'foilage', 'forest', 'park', 'deciduous', 'leaf', 'bark', 'autumn']","['https://www.turbosquid.com/Search/3D-Models/common', 'https://www.turbosquid.com/Search/3D-Models/oak', 'https://www.turbosquid.com/Search/3D-Models/quercus', 'https://www.turbosquid.com/Search/3D-Models/robur', 'https://www.turbosquid.com/Search/3D-Models/tree', 'https://www.turbosquid.com/Search/3D-Models/foilage', 'https://www.turbosquid.com/Search/3D-Models/forest', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/deciduous', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/bark', 'https://www.turbosquid.com/Search/3D-Models/autumn']","Common Oak 3d model (Quercus Robur) in autumn season. Height: 4.5m. Compatible with 3ds max 2010 (V-Ray, Mental Ray, Corona) or higher, Cinema 4D R15 (V-Ray, Advanced Renderer), Unreal Engine, FBX, OBJ and VRMESH." +Old wooden table model,Roarnya," +Free +", - All Extended Uses,2019-04-22," + + +OBJ 2018 + +","['3D Model', 'furnishings', 'table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table']","['Old', 'wooden', 'table', 'Low', 'polygon']","['https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/polygon']","Old wooden table : Low polygonModel and previews created in maya 2018 with arnoldFormats:ma. file ( No UV Mapped , No Textures )mb. file ( No UV Mapped , No Textures )OBJ file" +3D Sledge hammer,UniBlend," +Free +", - All Extended Uses,2019-04-22," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'industrial', 'tools', 'hand tools', 'hammer', 'sledgehammer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/hand-tools', 'https://www.turbosquid.com/3d-model/hammer', 'https://www.turbosquid.com/3d-model/sledgehammer']","['hammer', 'weapon', 'survival', 'game', 'low-poly', 'game', 'ready', 'unity', 'unreal', 'melee', 'tool', 'sledgehammer']","['https://www.turbosquid.com/Search/3D-Models/hammer', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/survival', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/sledgehammer']",FeatureThis pack contain two basic part of Sledge Hammer first is Head and second is Handel it also contain textures made with substance painter and this pack is freeTexture Map- Base Colour Map- Normal Map- Height Map- Metallic Map- Roughness Map +3D Catapult Toy model,Leo1233," +Free +", - All Extended Uses,2019-03-30," + + +STL + +","['3D Model', 'weaponry', 'weapons', 'projectile weapons', 'catapult']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/projectile-weapons', 'https://www.turbosquid.com/3d-model/catapult']","['Catapult', 'Medieval', 'Toy', 'Projectile']","['https://www.turbosquid.com/Search/3D-Models/catapult', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/projectile']","A 3 part functioning catapult. PLA recommended and supports recommended too but not required. Print time 1h 30 m. Great quality, recommend" +3D Garden chair model,AdrienJ," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-22,,"['3D Model', 'furnishings', 'seating', 'chair', 'outdoor chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/outdoor-chair']","['IKEA', 'chair', 'garden', 'architecture', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/ikea', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/furniture']",Native File Format: 3ds Max 2017Render Engine: V-RayUnits used: MetersPolygon Count: 2432Vertices Count: 2542 +Medieval tables model,DTG Amusements," +Free +", - All Extended Uses,2019-04-22," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + +","['3D Model', 'furnishings', 'table', 'dining table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table']","['Tables', 'Medieval']","['https://www.turbosquid.com/Search/3D-Models/tables', 'https://www.turbosquid.com/Search/3D-Models/medieval']","Medieval wooden tables. One with ornamental sides, one plain. This design is not animated. 122257 quadrilateral polygons107858 triangular polygons352372 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ" +3D retro car wheel model,Andrewsibirian," +Free +", - All Extended Uses,2019-04-22," + + +FBX + +","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'car wheel']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/car-wheel']","['car', 'part', 'tire', 'wheel']","['https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/part', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/wheel']", +Mouse 3D,Reddler," +Free +", - All Extended Uses,2019-04-21," + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'technology', 'computer equipment', 'computer mouse']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/computer-equipment', 'https://www.turbosquid.com/3d-model/computer-mouse']","['mouse', 'wheel', 'computer', 'desk', 'table', 'usb', 'laptop', 'electronic', 'electronics']","['https://www.turbosquid.com/Search/3D-Models/mouse', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/computer', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/usb', 'https://www.turbosquid.com/Search/3D-Models/laptop', 'https://www.turbosquid.com/Search/3D-Models/electronic', 'https://www.turbosquid.com/Search/3D-Models/electronics']","This is a computer mouse.The textures include a diffuse for all 3 materials, plus a height and specular for the main material." +3D Chair,Alex2641," +Free +", - All Extended Uses,2019-04-21,,"['3D Model', 'furnishings', 'seating', 'chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair']","['Chair', 'white']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/white']",Chair +3D Easter Eggs,Render at Night," +Free +", - All Extended Uses,2019-04-21," + + +OBJ + +","['3D Model', 'holidays', 'easter egg']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/seasons-and-holidays', 'https://www.turbosquid.com/3d-model/easter-egg']","['easter', 'eggs', 'textured', 'painted']","['https://www.turbosquid.com/Search/3D-Models/easter', 'https://www.turbosquid.com/Search/3D-Models/eggs', 'https://www.turbosquid.com/Search/3D-Models/textured', 'https://www.turbosquid.com/Search/3D-Models/painted']","Models of Easter Eggs. (The stated Faces and Vertices count is of all the Eggs combined after the Subdivision applied a.k.a. High Poly model)Available File variants:    BLEND (Subdivision not applied, can be chosen)    OBJ (Low Poly + High Poly)The textures of the eggs are already packed the the BLEND file and also available in their original form in the OBJ zip.*All photos were rendered in Blender with Cycles Render engine." +3D Dining Table and Chairs model,Spectra_7," +Free +", - All Extended Uses,2019-04-21," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'furnishings', 'table', 'dining table', 'dining room set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table', 'https://www.turbosquid.com/3d-model/dining-room-set']","['chair', 'and', 'chairs', 'wood', 'furniture', 'cloth', 'dining', 'table', 'set', 'furnishing', 'restaurant', 'bar', 'seat', 'cafe', 'home']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/chairs', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/cloth', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/set', 'https://www.turbosquid.com/Search/3D-Models/furnishing', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/cafe', 'https://www.turbosquid.com/Search/3D-Models/home']","A low-poly game ready dining table and chair set ready to put in your game. The chairs, table cloth are movable. You can move or remove them even in your game engine level.All textures in 2K i.e. 2048 x 2048 resolution textures.----------------------------------------------------Model Statistics:- Polys: 4610- Triangles: 9220- Vertices: 7122----------------------------------------------------Model Formats:- Blend- FBX- OBJ----------------------------------------------------Image Formats:- PNG----------------------------------------------------Model Names in Heirarchy:- Table- TableCloth- Chair_a- Chair_b- Chair_c- Chair_d- Chair_e- Chair_f----------------------------------------------------" +3D I-Zen II,COSEDIMARCO," +Free +", - All Extended Uses,2019-04-21," + + +Collada + + + + +OBJ + +","['3D Model', 'vehicles', 'car', 'fictional automobile']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/fictional-automobile']","['I-zenborg', 'carrier', 'monsters', 'anime', 'japan', 'dinosaurs']","['https://www.turbosquid.com/Search/3D-Models/i-zenborg', 'https://www.turbosquid.com/Search/3D-Models/carrier', 'https://www.turbosquid.com/Search/3D-Models/monsters', 'https://www.turbosquid.com/Search/3D-Models/anime', 'https://www.turbosquid.com/Search/3D-Models/japan', 'https://www.turbosquid.com/Search/3D-Models/dinosaurs']",Modelled with Sketchup****I-ZEN I is NOT included **** +Fantasy Sword 3D,Toon coffer," +Free +", - All Extended Uses,2019-04-21,,"['3D Model', 'weaponry', 'weapons']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons']","['fantasy', 'sword', 'blender', 'free', 'free', 'model', 'toon', 'coffer']","['https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/coffer']",fantasy sword this is free model made by Rishabh sahu this is only blend file +3D auto mirror retro model,Andrewsibirian," +Free +", - All Extended Uses,2019-04-20,,"['3D Model', 'vehicles', 'vehicle parts', 'automobile parts', 'car mirror', 'side-view mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/automobile-parts', 'https://www.turbosquid.com/3d-model/car-mirror', 'https://www.turbosquid.com/3d-model/side-view-mirror']","['mirror', 'retro', 'moskvich', 'car', 'parts']","['https://www.turbosquid.com/Search/3D-Models/mirror', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/moskvich', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/parts']",mirror from soviet retro car +3D Ashtray model,Manic Animatics," +Free +", - All Extended Uses,2019-04-20,,"['3D Model', 'science', 'smoking', 'ashtray']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/smoking', 'https://www.turbosquid.com/3d-model/ashtray']","['ashtray', 'ash', 'tray', 'Autodesk', 'Maya', 'Arnold', 'Manic', 'Animatics', 'cigarette']","['https://www.turbosquid.com/Search/3D-Models/ashtray', 'https://www.turbosquid.com/Search/3D-Models/ash', 'https://www.turbosquid.com/Search/3D-Models/tray', 'https://www.turbosquid.com/Search/3D-Models/autodesk', 'https://www.turbosquid.com/Search/3D-Models/maya', 'https://www.turbosquid.com/Search/3D-Models/arnold', 'https://www.turbosquid.com/Search/3D-Models/manic', 'https://www.turbosquid.com/Search/3D-Models/animatics', 'https://www.turbosquid.com/Search/3D-Models/cigarette']",A common ashtray modeled and textured in Autodesk Maya. +3D Table model,Ronak jain," +Free +", - All Extended Uses,2019-04-20," + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'desk']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/desk']","['Table', 'Furniture']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/furniture']",There is a 3d model of Table which supported .OBJ file +Knife 3D model,o4zloy," +Free +", - All Extended Uses,2019-04-19," + + +FBX 7.4 + + + + +OBJ + + + + +Collada + + + + +3D Studio + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'knife', 'combat knife']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/knife', 'https://www.turbosquid.com/3d-model/combat-knife']","['battle', 'knife', 'weapon', 'for', 'games']","['https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/games']","For lessons CG Masters made a knife, optimized for games (checked in Unity3d)---(Create folder Textures and upload texture files there)" +3D GIR,Reddler," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-18," + + +OBJ + + + + +Other + +","['3D Model', 'characters', 'movie and television character']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/movie-and-television-character']","['gir', 'cartoon', 'character', 'invader', 'zim', 'gaz', 'toon', 'robot', 'alien']","['https://www.turbosquid.com/Search/3D-Models/gir', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/invader', 'https://www.turbosquid.com/Search/3D-Models/zim', 'https://www.turbosquid.com/Search/3D-Models/gaz', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/robot', 'https://www.turbosquid.com/Search/3D-Models/alien']",This is a unrigged model of GIR. The face texture is within the zipped files. It also contains the posed version of Gir as in the presentation image. +3D Business Suit sexy,dreondei," +Free +", - All Extended Uses,2019-04-18," + + +FBX fbx tga + +","['3D Model', 'characters', 'people', 'woman', 'businesswoman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman', 'https://www.turbosquid.com/3d-model/businesswoman']","['Business', 'suit', 'woman', 'sexy', 'victorie', 'heaven', 'czech', 'blonde', 'girl']","['https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/suit', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/sexy', 'https://www.turbosquid.com/Search/3D-Models/victorie', 'https://www.turbosquid.com/Search/3D-Models/heaven', 'https://www.turbosquid.com/Search/3D-Models/czech', 'https://www.turbosquid.com/Search/3D-Models/blonde', 'https://www.turbosquid.com/Search/3D-Models/girl']","Business woman in sexy cleavage black suit, czech model Victorie Heaven.fbx, pose and textures included, lowpo with hd textures.Some bugs, like a hair fixed with diffuse or transparent map." +3D Ancient Roman gladius sword model,samize," +Free +", - All Extended Uses,2019-04-18," + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/gladius']","['Roman', 'sword', 'gladius', 'ancient', 'weapon', 'melee', 'historic']","['https://www.turbosquid.com/Search/3D-Models/roman', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/gladius', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/historic']","High quality low-poly realistic mesh of an ancient Roman gladius with detailed normal map and PBR textures.Ideal for real-time use, like games and VR.Correctly scaled.Two objects (sword and sheath) with single non-overlaping UV-map.Model has 1580 faces and 1573 vertices.Includes 4k textures for: base color, roughness, normal map, metallic and ambient occlusion." +3D Sci-fi bump stop,SkilHardRU," +Free +", - All Extended Uses,2019-04-18," + + +FBX 16 + + + + +OBJ 16 + +","['3D Model', 'architecture', 'urban design', 'infrastructure', 'railroad track', 'buffer stop']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/infrastructure', 'https://www.turbosquid.com/3d-model/railroad-track', 'https://www.turbosquid.com/3d-model/buffer-stop']","['sci', 'fi', 'props', 'bump', 'stop', 'znak', 'blok', 'spase', 'inveroment', 'ontainer', 'military', 'industrial', 'tool', 'wall']","['https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/bump', 'https://www.turbosquid.com/Search/3D-Models/stop', 'https://www.turbosquid.com/Search/3D-Models/znak', 'https://www.turbosquid.com/Search/3D-Models/blok', 'https://www.turbosquid.com/Search/3D-Models/spase', 'https://www.turbosquid.com/Search/3D-Models/inveroment', 'https://www.turbosquid.com/Search/3D-Models/ontainer', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/wall']","Sci-fi bump stopHello!! and again I, as always with trinkets !! this time I present to your attention a free props in the form of a Sci-fi block, for fencing, or for something else, it all depends on the ideas you are working on every day !! This props is suitable for visualizing or filling the scene as it contains a large number of polygons, low poly for game engines is supplied to this model, you just need to bake the normals, and put materials for your style for this everything is prepared !! Well, it remains to wish you good luck in this not easy business) P / S well, do not forget to support Lucas if you like what I do, thank you all and see you soon ... Low poly (poligon-2494 Vertex-1514)" +3D Kirito's Elucidator Sword ! model,MusiritoKun," +Free +", - Editorial Uses Only,2019-04-18,,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'fantasy sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/fantasy-sword']","['model', ""Kirito's"", 'Anime', 'sword', '3D']","['https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/kirito%27s', 'https://www.turbosquid.com/Search/3D-Models/anime', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/3d']",Kirito's Elucidator sword from Anime Sword art Online became 3D Check it out ! +3D Ancient Temple,Noctiluca_," +Free +", - All Extended Uses,2019-04-16," + + +Collada + + + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'architecture', 'archaeology', 'ancient ruins']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/archaeology', 'https://www.turbosquid.com/3d-model/ruins']","['Ancient', 'Pillar', 'Column', 'Temple', 'Hieroglyph', 'Sand', 'Desert', 'Game', 'Free', 'Ruins', 'Exterior', 'Environment', 'Antique', 'Old']","['https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/pillar', 'https://www.turbosquid.com/Search/3D-Models/column', 'https://www.turbosquid.com/Search/3D-Models/temple', 'https://www.turbosquid.com/Search/3D-Models/hieroglyph', 'https://www.turbosquid.com/Search/3D-Models/sand', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/ruins', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/environment', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/old']","One of the ancient ruins for the game environment,A small sandy damaged temple is covered with some hieroglyphs, - The asset consists of 1,904 vertices, - 4K textures, - 3 materials (pillars, wall, floor+ceiling) - 1 mesh, - Base color, Normal and Roughness maps." +3D BLENDER EEVEE Brandless Small 4 Door Hatchback model,denniswoo1993," +Free +", - All Extended Uses,2019-04-16,,"['3D Model', 'vehicles', 'car', 'hatchback']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/hatchback']","['street', 'retro', 'tire', 'exterior', 'suv', '2013', 'racing', '2015', 'render', 'vehicle', 'v12', 'logo', 'real', 'sportpack', 'motor', 'eevee', 'modern', 'transport', 'car', 'standard']","['https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/suv', 'https://www.turbosquid.com/Search/3D-Models/2013', 'https://www.turbosquid.com/Search/3D-Models/racing', 'https://www.turbosquid.com/Search/3D-Models/2015', 'https://www.turbosquid.com/Search/3D-Models/render', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/v12', 'https://www.turbosquid.com/Search/3D-Models/logo', 'https://www.turbosquid.com/Search/3D-Models/real', 'https://www.turbosquid.com/Search/3D-Models/sportpack', 'https://www.turbosquid.com/Search/3D-Models/motor', 'https://www.turbosquid.com/Search/3D-Models/eevee', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/standard']","Car Name: SHC MCE 1This car is rendered in realtime in Blender Eevee, to open the native Blender file, you will need Blender 2.8.The price of this car is calculated on it's combination of parts and options in relationship to other MCE cars. The lower priced MCE cars have the same building quality as the higher priced ones, but the overal look and used parts will be better on the higher priced MCE cars. This allows me to release cars at accessable prices, and release better looking ones at a higher price. (all options for this car are listed at the bottom of the description)This car is made with the SHC modular car creation tool.Custom designed parts im a high detailed brandless/generic car with real modern cars inspiration that can be used for renders, presentations, real time apps and video games without displaying or copying any real life car model.*Detailed exterior*Detailed interior (can be removed to lower polycount)*Detailed engine (can be removed to lower polycount)*Detailed underside*Materials and textures without shaders are available in the exported files.*The Studio, materials and camera/door animations are included in the Blender file that is used to create all realtime renders for this car. everything in this file is set up, you only have to move the camera and click ''render''. (roughness is generated with the default texture file)*The car is linked into several objects to make it more suitable for animations, opening doors, rigging and modifying / tuning / customizing.*The car is royalty free, so you are free to modify and use it in any (commercial) project as much as you want.*Objects: 43File formats: (all file formats are exported with blender 2.8 default settings) *abc *blend *dae *fbx *obj *stl[Options] Car Body: Small 4 door hatchbackEngine: (Engine block can be removed to simulate an electric car, the mechanical parts under the hood will remain) 4 cilinderSport pack: NoFront bumper: Tier 3Rear bumper: Tier 3Dashboard: Tier 2Exhaust: Tier 2Wheels: Tier 3Glass Roof: NoSeats: Comfort SeatsExecutive rear seats with table and screens: NoTrim Color: Glossy blackInterior Leather Color: WhiteTinted Rear Windows: NoWheel Color: Black" +Wheel_001 3D model,3dyer," +Free +", - All Extended Uses,2019-04-16," + + +FBX + +","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel', 'truck tire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel', 'https://www.turbosquid.com/3d-model/truck-tire']","['wheel', 'heavy', 'vehicle', 'car', 'transport', 'road', 'big', 'monster', 'truck', 'tire', 'rim']","['https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/heavy', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/road', 'https://www.turbosquid.com/Search/3D-Models/big', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/rim']","A model of a monster truck wheel. The model is subdivisional, consists of quads. The wheel has real world dimansions: 4m * 4m * 2m. 2k PBR textures. Rendered in Marmoset" +3D wheel model,Nittubawa," +Free +", - All Extended Uses,2019-04-16," + + +FBX 2019 + +","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel', 'truck tire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel', 'https://www.turbosquid.com/3d-model/truck-tire']","['truck', 'heavy', 'vehicle', 'wheel']","['https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/heavy', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/wheel']",wheel 3d model   made by maya 2019 rendered by arnold file format fbx 20193 material with textures textures are above 2048 pixel +Turtle Basic Model 3D,Behnam_aftab," +Free +", - All Extended Uses,2019-04-15," + + +OBJ + + + + +FBX + + + + +3D Studio + +","['3D Model', 'nature', 'animal', 'reptile', 'turtle', 'cartoon turtle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/reptile', 'https://www.turbosquid.com/3d-model/turtle', 'https://www.turbosquid.com/3d-model/cartoon-turtle']","['animal', 'turtle', 'creature', 'nature', 'reptile']","['https://www.turbosquid.com/Search/3D-Models/animal', 'https://www.turbosquid.com/Search/3D-Models/turtle', 'https://www.turbosquid.com/Search/3D-Models/creature', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/reptile']",This is Free Turtle Basic Model. I hope you like it.IF YOU LIKE THIS PRODUCT - RATE IT! THANKS! +3D Semi Truck,KozyDraconequus," +Free +", - All Extended Uses,2019-04-15," + + +OBJ + +","['3D Model', 'vehicles', 'large truck', 'semi-trailer truck', 'large goods vehicle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/large-truck', 'https://www.turbosquid.com/3d-model/semi-trailer-truck', 'https://www.turbosquid.com/3d-model/large-goods-vehicle']","['semi', 'truck', 'tractor', 'trailer', 'lorry', '18', 'wheeler', 'lights', 'high', 'poly', 'quality', 'textured']","['https://www.turbosquid.com/Search/3D-Models/semi', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/tractor', 'https://www.turbosquid.com/Search/3D-Models/trailer', 'https://www.turbosquid.com/Search/3D-Models/lorry', 'https://www.turbosquid.com/Search/3D-Models/18', 'https://www.turbosquid.com/Search/3D-Models/wheeler', 'https://www.turbosquid.com/Search/3D-Models/lights', 'https://www.turbosquid.com/Search/3D-Models/high', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/quality', 'https://www.turbosquid.com/Search/3D-Models/textured']","Semi truck modeled after various brands, textured, relatively high-polyTo use .mb, find in scenes > semi.mbTo open textures, set project to the folder itself, textures are in Textures folder if you need it.To use OBJ, download the .obj zipI will upload a few variants e.g Tanker, Cargo box, Flatbed soon. Stay tuned" +3D vintage truck,Nittubawa," +Free +", - All Extended Uses,2019-04-15," + + +FBX 2019 + +","['3D Model', 'vehicles', 'car', 'suv', 'pick-up truck']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/suv', 'https://www.turbosquid.com/3d-model/pick-up-truck']","['vintage', 'rusted', 'vehicle', 'cargo', 'truck']","['https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/rusted', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/cargo', 'https://www.turbosquid.com/Search/3D-Models/truck']",cargo truck   rusted truck   vintage truck 3d model file format fbx 2019made by maya 2019texture are under 1024 - 4094 pixellow poly game ready model   suitable for android gaming also +Elefhant 3D,Rakesh Kulthe," +Free +", - All Extended Uses,2019-04-14," + + +OBJ + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'elephant', 'cartoon elephant']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/elephant', 'https://www.turbosquid.com/3d-model/cartoon-elephant']",['Animals'],['https://www.turbosquid.com/Search/3D-Models/animals'],for game and any use +3D FREE 3-Gem Sampler Pack,derikjohnson," +Free +", - All Extended Uses,2019-04-14," + + +Other + +","['3D Model', 'nature', 'landscapes', 'mineral', 'gems']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/mineral', 'https://www.turbosquid.com/3d-model/gems']","['head', 'hand', 'wrist', 'ankle', 'body', 'armor', 'crown', 'sword', 'shield', 'bow', 'archer', 'hunt', 'dagger', 'goblet', 'plate', 'gold', 'diamond', 'wealth', 'jewelry', 'ring', 'bracelet', 'scepter']","['https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/wrist', 'https://www.turbosquid.com/Search/3D-Models/ankle', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/crown', 'https://www.turbosquid.com/Search/3D-Models/sword', 'https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/bow', 'https://www.turbosquid.com/Search/3D-Models/archer', 'https://www.turbosquid.com/Search/3D-Models/hunt', 'https://www.turbosquid.com/Search/3D-Models/dagger', 'https://www.turbosquid.com/Search/3D-Models/goblet', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/diamond', 'https://www.turbosquid.com/Search/3D-Models/wealth', 'https://www.turbosquid.com/Search/3D-Models/jewelry', 'https://www.turbosquid.com/Search/3D-Models/ring', 'https://www.turbosquid.com/Search/3D-Models/bracelet', 'https://www.turbosquid.com/Search/3D-Models/scepter']","3-Gem Custom Cut Colored Gemstones + Custom V-Ray Materials Sampler- Real World Cuts & Real World Materials Means Real-World Performance in Your 3D Creations- 3 Custom Cut Virtual Gemstones real world cuts designed for real material reflective index ranges. These are real world cuts (I am a gem cutter as well as a graphic/3D designer)if you design jewelry for real life, or the virtual worlds, these gemstones and materials are what you need to add real colored gemstones to your creations- NURBS Based Geometry in the Supplied Rhino Files (Rhino versions 5 & 6 included)Polygon Mesh Geometry in OBJ files OBJ mesh geometry was created from the Rhino NURBS originals and utilize the least number of polygons necessary to generate the gemstone's facet shapes- 20 Custom VRay Next Gemstone Materials includes an assorted grouping of 20 custom V-Ray gemstone materials from the following groups: quartz varieties (amethyst, citrine, rose de France, smokey quartz, praisolite, rock crystal, rose quartz), beryl varieties (aquamarine, emerald, morganite, green beryl, heliodore), topaz varieties (imperial pink, imperial orange, imperial red, imperial yellow, london blue, sky blue, swiss blue ), tourmaline varieties (indicolite, rubelite, green, paraiba), garnet varieties (pyrope, almandite, spessartite, demantoid), and cubic zirconia**- All of the materials included with this sample pack will work with any of the three custom cut virtual gemstonesNotes:- Scaling/resizing: ALWAYS USE UNIFORM SCALE when resizing a custom cut virtual gem each virtual gemstone has been optically designed for a specific primary material and range of secondary materials that optical performance only occurs when the facet angles are aligned correctly so to avoid loss of optical performance always use uniform scaleSize, Color and Optical Performance Guidelines:- Gemstone materials get their color primarily from the refraction fog color if you need to lighten or darken a custom cut virtual gemstone adjust the fog color and fog multiplier settings in the refraction section of the material (see the V-Ray Next manual for a complete description of how to make adjustments to the custom gemstone materials.- The same material will appear darker on larger stones, and lighter on smaller stones due to the amount of material the light rays have to travel through. If you have applied a material to a custom cut virtual gemstone and it appears too dark adjust the using a lighter colored version of the same gemstone.- In general, gemstones with a small number of facets, (the flat, highly-polished 'mirror' panels that cover the surface of the gemstone), are cut at smaller sizes, and gemstones with a high number of facets are typically cut larger (in the real world the smallest working size for facets is around 1 mm anything smaller is hard to do by hand. So if you want your gemstones to look realistic in your 3D creations, keep the relative sizes correct." +3D Bar Chair model,Vlad_3d," +Free +", - All Extended Uses,2019-04-14," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other + + + + +STL + +","['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool', 'https://www.turbosquid.com/3d-model/bar-stool']","['chair', 'furniture', 'seat', 'stool', 'interior', 'restaurant', 'bar', 'kitchen', 'hotel', 'alcohol', 'business', 'design']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/hotel', 'https://www.turbosquid.com/Search/3D-Models/alcohol', 'https://www.turbosquid.com/Search/3D-Models/business', 'https://www.turbosquid.com/Search/3D-Models/design']",Bar ChairHigh quality polygonal models. Real world scale: 335 x 362 x 968 mmWood texture included 1300x1300pxAll objects and materisls have meaningful namesFor good renders!File Formats:Blender 3D 2.79 (native)MAX 20153DSOBJFBXDAESTL +3D model Lowpoly PBR Knight Armour,soidev," +Free +", - All Extended Uses,2019-04-13," + + +Collada + + + + +FBX + + + + +Other Metallic + + + + +Other Specular + + + + +Other Unity + +","['3D Model', 'weaponry', 'armour', 'suit of armor', 'medieval suit of armor']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/suit-of-armor', 'https://www.turbosquid.com/3d-model/medieval-suit-of-armor']","['knight', 'fantasy', 'medieval', 'armor', 'warrior', 'armour', 'armored', 'plate', 'chainmain', 'helm', 'greathelm', 'lowpoly', 'gameready', 'pbr', 'battle', 'unity', 'unreal', 'collection', 'characters']","['https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/armor', 'https://www.turbosquid.com/Search/3D-Models/warrior', 'https://www.turbosquid.com/Search/3D-Models/armour', 'https://www.turbosquid.com/Search/3D-Models/armored', 'https://www.turbosquid.com/Search/3D-Models/plate', 'https://www.turbosquid.com/Search/3D-Models/chainmain', 'https://www.turbosquid.com/Search/3D-Models/helm', 'https://www.turbosquid.com/Search/3D-Models/greathelm', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/characters']","A set of Lowpoly PBR Fantasy Medival Armour. The model is rigged to the UE4 skeleton, but not animated. A .blend file with IK set up is included. Unity package with the model set up to a humanoid rig is also provided (The dynamic moving parts of the armour may be set up with whichever solution you use in your project). The pack inclused 3 4k texture variations: Clean, Battered and Worn. The model has two texture sets and is split into several parts: Body, Helmet, Chainmail Hood, Gloves, Spaulders, Frontguard, Sideguards, Kneeguards, Boots. Total polycount: 39,455 tris and 22,544 verts." +Hand Painted Low Poly Sword 3D,PriceMore," +Free +", - All Extended Uses,2019-04-13," + + +OBJ + + + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']","['handpainted', 'lowpoly', 'sword']","['https://www.turbosquid.com/Search/3D-Models/handpainted', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/sword']","Simple low poly sword with relatively swift silhouette and a diffuse only, hand painted texture that's a mix between stylized and realistic styles." +3D Low Poly Katana (Free),JoshuaCraytorFarinha," +Free +", - All Extended Uses,2019-04-13,,"['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'samurai sword', 'katana']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword', 'https://www.turbosquid.com/3d-model/samurai-sword', 'https://www.turbosquid.com/3d-model/katana']","['Katana', 'Free', 'Low', 'Poly', 'Game', 'Model']","['https://www.turbosquid.com/Search/3D-Models/katana', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/model']",Decided to re-upload for free. Enjoy! +Vases_Red_Glass 3D model,Pilot54," +Free +", - All Extended Uses,2019-04-12," + + +3D Studio 2015 + + + + +FBX 2015 + + + + +OBJ 2015 + +","['3D Model', 'interior design', 'housewares', 'general decor', 'vase', 'modern vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase', 'https://www.turbosquid.com/3d-model/modern-vase']","['beautiful', 'frosted', 'unusual', 'vintage', 'mirror', 'floral', 'for', 'flowers', 'value', 'red', 'glass', 'large', 'small', 'tall', 'wide', 'silver', 'trim', 'collection', 'cyl']","['https://www.turbosquid.com/Search/3D-Models/beautiful', 'https://www.turbosquid.com/Search/3D-Models/frosted', 'https://www.turbosquid.com/Search/3D-Models/unusual', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/mirror', 'https://www.turbosquid.com/Search/3D-Models/floral', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/flowers', 'https://www.turbosquid.com/Search/3D-Models/value', 'https://www.turbosquid.com/Search/3D-Models/red', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/large', 'https://www.turbosquid.com/Search/3D-Models/small', 'https://www.turbosquid.com/Search/3D-Models/tall', 'https://www.turbosquid.com/Search/3D-Models/wide', 'https://www.turbosquid.com/Search/3D-Models/silver', 'https://www.turbosquid.com/Search/3D-Models/trim', 'https://www.turbosquid.com/Search/3D-Models/collection', 'https://www.turbosquid.com/Search/3D-Models/cyl']",Vases from red glass with a relief mirror internal surface. +Classic Plants Pot 3D model,Marc Mons," +Free +", - All Extended Uses,2019-04-12," + + +OBJ 2016 + + + + +FBX 2016 + +","['3D Model', 'interior design', 'housewares', 'general decor', 'planter', 'flower pot']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/planter', 'https://www.turbosquid.com/3d-model/flower-pot']","['plant', 'free', 'pot', 'herb', 'food', 'green', 'herbal', 'fresh', 'rosmarinus', 'officinalis', 'potted', 'spice', 'aromatic', 'leaf', 'culinary', 'vegetable', 'cuisine', 'bush', 'natural', 'flowerpot', '3d']","['https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/herb', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/herbal', 'https://www.turbosquid.com/Search/3D-Models/fresh', 'https://www.turbosquid.com/Search/3D-Models/rosmarinus', 'https://www.turbosquid.com/Search/3D-Models/officinalis', 'https://www.turbosquid.com/Search/3D-Models/potted', 'https://www.turbosquid.com/Search/3D-Models/spice', 'https://www.turbosquid.com/Search/3D-Models/aromatic', 'https://www.turbosquid.com/Search/3D-Models/leaf', 'https://www.turbosquid.com/Search/3D-Models/culinary', 'https://www.turbosquid.com/Search/3D-Models/vegetable', 'https://www.turbosquid.com/Search/3D-Models/cuisine', 'https://www.turbosquid.com/Search/3D-Models/bush', 'https://www.turbosquid.com/Search/3D-Models/natural', 'https://www.turbosquid.com/Search/3D-Models/flowerpot', 'https://www.turbosquid.com/Search/3D-Models/3d']","Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema 4d and 3dmax.These formats with basic materials and textures.Thanks for your support." +Sofa001 3D,alimucahidtural," +Free +", - All Extended Uses,2019-04-11,,"['3D Model', 'furnishings', 'seating', 'sofa']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/sofa']","['sofa', 'furniture']","['https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/furniture']",sofa furniture +cobertura de garagem 3D model,manuella pires," +Free +", - All Extended Uses,2019-04-11," + + +OBJ + + + + +JPEG 100 + +","['3D Model', 'architecture', 'site components', 'outdoor structure', 'gazebo', 'pergola']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/outdoor-structure', 'https://www.turbosquid.com/3d-model/gazebo', 'https://www.turbosquid.com/3d-model/pergola']","['cobertura', 'para', 'carro']","['https://www.turbosquid.com/Search/3D-Models/cobertura', 'https://www.turbosquid.com/Search/3D-Models/para', 'https://www.turbosquid.com/Search/3D-Models/carro']",cobertura para carro sem textuta +3D Balcony,juanmrgt," +Free +", - All Extended Uses,2019-04-11," + + +OBJ + +","['3D Model', 'architecture', 'building components', 'building deck']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/house-deck']","['balcony', 'architecture', 'deco', 'classical', 'element']","['https://www.turbosquid.com/Search/3D-Models/balcony', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/deco', 'https://www.turbosquid.com/Search/3D-Models/classical', 'https://www.turbosquid.com/Search/3D-Models/element']","Classic balcony, architectural element useful for use in various architectural projects" +Fleur-de-lis Medieval Shield emblem 3D model 3D model,bodisatva5," +Free +", - All Extended Uses,2019-04-10," + + +Other + + + + +STL + +","['3D Model', 'weaponry', 'armour', 'shield', 'kite shield']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/armour', 'https://www.turbosquid.com/3d-model/shield', 'https://www.turbosquid.com/3d-model/kite-shield']","['Medieval', 'shield', 'armour', 'body', 'helmet', 'guns', 'melee', 'lis', 'flower']","['https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/shield', 'https://www.turbosquid.com/Search/3D-Models/armour', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/helmet', 'https://www.turbosquid.com/Search/3D-Models/guns', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/lis', 'https://www.turbosquid.com/Search/3D-Models/flower']",Medieval Shield with Fleur-de-lis emblem 3D modelblend file with procedural materials OBJ 3MF file for 3D printing +3D Cup model,sneakychineseman," +Free +", - All Extended Uses,2019-04-10," + + +FBX + + + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'glassware', 'coffee cup', 'teacup']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/glassware', 'https://www.turbosquid.com/3d-model/coffee-cup', 'https://www.turbosquid.com/3d-model/teacup']","['cup', 'kitchen', 'beverage', 'asset', 'miscellaneous']","['https://www.turbosquid.com/Search/3D-Models/cup', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/beverage', 'https://www.turbosquid.com/Search/3D-Models/asset', 'https://www.turbosquid.com/Search/3D-Models/miscellaneous']",Free Teacup model created as a project asset. No materials included. +3D Pen tablet model,Teaw," +Free +", - All Extended Uses,2019-04-09," + + +OBJ + +","['3D Model', 'office', 'office supplies', 'pen holder']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/office-category', 'https://www.turbosquid.com/3d-model/office-supplies', 'https://www.turbosquid.com/3d-model/pen-holder']","['pen', 'tablet']","['https://www.turbosquid.com/Search/3D-Models/pen', 'https://www.turbosquid.com/Search/3D-Models/tablet']",pen tablet box +Lowpoly Stone Blocks 3D model,ptrusted," +Free +", - All Extended Uses,2019-04-09," + + +OBJ + +","['3D Model', 'architecture', 'site components', 'landscape architecture', 'stepping stone']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/stepping-stone']","['Stone', 'Block', 'Free', 'Lowpoly']","['https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/block', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","Lowpoly stone blocks (Cube, Cylinder, Half cube)." +Industrial Silo_6 3D,Max3dModel," +Free +", - All Extended Uses,2019-04-08," + + +3D Studio + + + + +FBX + + + + +OBJ + +","['3D Model', 'industrial', 'industrial container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container']","['3d', 'model', 'low', 'poly', 'game', 'ready', 'factory', 'industrial', 'site', 'industry', 'gas', 'oil', 'plant', 'equipment', 'tank', 'silo', 'storage', 'steel', 'metal', 'refinery']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/site', 'https://www.turbosquid.com/Search/3D-Models/industry', 'https://www.turbosquid.com/Search/3D-Models/gas', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/plant', 'https://www.turbosquid.com/Search/3D-Models/equipment', 'https://www.turbosquid.com/Search/3D-Models/tank', 'https://www.turbosquid.com/Search/3D-Models/silo', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/refinery']","ABOUT MODEL:-* This is a medium detail 3d model with Texture.* Ready to drop into any scene or be used as a stand-alone prop.* Real world scale and exact proportions.* Excellent polygon efficiency.* The model has a different topology and realistic textures. The model is perfect for you for a variety of purposes.* Model is suitable for use in games.MATERIAL & TEXTURE:-* All materials in one Multi Sub-Object.* Material and Texture setup is included only in MAX FORMAT (vray 2.0 and scanline version).* UVW Mapping are applied.* All textures are in defuse map.* Textures can be easily repaint.LIGHTING:-* Studio setup is not included.FILE FORMAT:-* 3DS* FBX* OBJ* Blender 2.79* Cinema 4d 11.5* Maya 2010* MAX (Vray 2.0 Version)* MAX (Standard Version)* Native file is 3ds Max 2009(.max)* Other formats were converted from the MAX file.OBJECTS:-* Same material objects are attached for easy selection.* All objects are unique named.WARNING:-Depending on which software package you are using.The exchange formats(obj, 3ds and fbx) may not match the priview images exactly.Due to the nature of these formats, there may be some textures that have to beloaded by hand and possively triangulated geomatry.Thank you for your interest in this model.Please give your feedback on it if you like." +3D Bario,matthewierfino," +Free +", - Editorial Uses Only,2019-04-08," + + +OBJ + +","['3D Model', 'characters', 'game character']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/game-character']",['Character'],['https://www.turbosquid.com/Search/3D-Models/character'],Mario knockoff. +Sword 3D model,matthewierfino," +Free +", - Editorial Uses Only,2019-04-08," + + +OBJ 1 + +","['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/bladed-weapon', 'https://www.turbosquid.com/3d-model/sword']",['sword'],['https://www.turbosquid.com/Search/3D-Models/sword'],"Sword based on the sword from videogame 'Hellblade: Senua's Sacrifice'. Images with materials are for display purposes only, file does not include materials." +Grenade HP 3D,nquest," +Free +", - All Extended Uses,2019-04-08," + + +3D Studio + + + + +Collada + + + + +FBX 2016 + + + + +OBJ + +","['3D Model', 'weaponry', 'munitions', 'grenade']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/grenade']","['Fragment', 'weapon', 'war', 'bomb', 'hand', 'round', 'low-poly', 'game', 'unity', 'mobile', 'fast', 'grenade', 'explosive']","['https://www.turbosquid.com/Search/3D-Models/fragment', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/war', 'https://www.turbosquid.com/Search/3D-Models/bomb', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/low-poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/mobile', 'https://www.turbosquid.com/Search/3D-Models/fast', 'https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/explosive']","A grenade is an explosive weapon typically thrown by hand, but can also refer to projectiles shot out of grenade launchers. This is a model with lots of polygons and details and is perfectly designed for used in game design, architectural visualization, VFX and other concept that require detail. Also included in are alternative textures that can easily be swapped to give it a different look." +Kitchen 3d model,AG Creations," +Free +", - All Extended Uses,2019-04-08,,"['3D Model', 'interior design', 'interior', 'residential spaces', 'kitchen']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/residential-spaces', 'https://www.turbosquid.com/3d-model/kitchen']","['Model', 'Kitchen', '3d']","['https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/3d']",kitchen 3d +3D model Focke-Wulf Fw 190,Basemaram," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-04-08,,"['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter propeller plane']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-propeller-plane']","['German', 'WWII', 'Fighter', 'Aircraft', 'FW', '190', 'Focke-Wulf', 'Shrike', 'wulf', 'focke', 'engine', 'plane', 'battle', 'ww2', 'fw190', 'fockewulf', 'military', 'propeller', 'historic', 'airplane', 'fw-190']","['https://www.turbosquid.com/Search/3D-Models/german', 'https://www.turbosquid.com/Search/3D-Models/wwii', 'https://www.turbosquid.com/Search/3D-Models/fighter', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/fw', 'https://www.turbosquid.com/Search/3D-Models/190', 'https://www.turbosquid.com/Search/3D-Models/focke-wulf', 'https://www.turbosquid.com/Search/3D-Models/shrike', 'https://www.turbosquid.com/Search/3D-Models/wulf', 'https://www.turbosquid.com/Search/3D-Models/focke', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/plane', 'https://www.turbosquid.com/Search/3D-Models/battle', 'https://www.turbosquid.com/Search/3D-Models/ww2', 'https://www.turbosquid.com/Search/3D-Models/fw190', 'https://www.turbosquid.com/Search/3D-Models/fockewulf', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/propeller', 'https://www.turbosquid.com/Search/3D-Models/historic', 'https://www.turbosquid.com/Search/3D-Models/airplane', 'https://www.turbosquid.com/Search/3D-Models/fw-190']","About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.- making by 3dmax 6 and Edit by 3dmax 2010" +GREEK PILLAR 3D model,Vigdarov Alexey," +Free +", - All Extended Uses,2019-04-07," + + +FBX FBX + + + + +Other TEXTURES + +","['3D Model', 'architecture', 'building components', 'column', 'pillar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/column', 'https://www.turbosquid.com/3d-model/pillar']",['PILLAR'],['https://www.turbosquid.com/Search/3D-Models/pillar'],GREEK ANCIENT PILLAR ( LOW-MED POLY) +Easy chair 01 3D model,Tjasablabla," +Free +", - All Extended Uses,2019-04-07," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['chair', 'easychair', 'blue', 'pillow', 'wood']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/easychair', 'https://www.turbosquid.com/Search/3D-Models/blue', 'https://www.turbosquid.com/Search/3D-Models/pillow', 'https://www.turbosquid.com/Search/3D-Models/wood']",3D model of an easy chair +3D Weapon 1 Sci-Fi,El Pulga," +Free +", - All Extended Uses,2019-04-07," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/rifle', 'https://www.turbosquid.com/3d-model/raygun']","['weapon', 'sci', 'fi', 'gun', 'modern', 'future', 'plasma', 'laser']","['https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/future', 'https://www.turbosquid.com/Search/3D-Models/plasma', 'https://www.turbosquid.com/Search/3D-Models/laser']",Weapon Sci-Fi for games. +3D Anna Free 3D model Naked Woman,Lyalina," +Free +", - All Extended Uses,2019-04-06," + + +OBJ + +","['3D Model', 'characters', 'people', 'woman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/woman']","['woman', 'naked', 'scan', 'body']","['https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/naked', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/body']","Woman fullbody naked model based on scan data.3d scanned people created by Thor.Scene is in cm. Model has real world scale.Format:Anna.zip - includes obj, mtl and png file." +3D Desert Rock 007,Iridesium," +Free +", - All Extended Uses,2019-04-05," + + +FBX + + + + +OBJ + + + + +STL + + + + +Other + +","['3D Model', 'nature', 'landscapes', 'mineral', 'rock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/mineral', 'https://www.turbosquid.com/3d-model/rock']","['rocks', 'pebble', 'brick', 'concrete', 'nature', 'broken', 'fractured', 'rubble', 'gravel', 'bolder', 'landscape', 'scan']","['https://www.turbosquid.com/Search/3D-Models/rocks', 'https://www.turbosquid.com/Search/3D-Models/pebble', 'https://www.turbosquid.com/Search/3D-Models/brick', 'https://www.turbosquid.com/Search/3D-Models/concrete', 'https://www.turbosquid.com/Search/3D-Models/nature', 'https://www.turbosquid.com/Search/3D-Models/broken', 'https://www.turbosquid.com/Search/3D-Models/fractured', 'https://www.turbosquid.com/Search/3D-Models/rubble', 'https://www.turbosquid.com/Search/3D-Models/gravel', 'https://www.turbosquid.com/Search/3D-Models/bolder', 'https://www.turbosquid.com/Search/3D-Models/landscape', 'https://www.turbosquid.com/Search/3D-Models/scan']",This as a photogrammetrically generated model of a large sandstone rock.This 3D scan was generated in the software Photoscan from 23 images. All images were taken with a canon t2i.The texture for this model is 4K resolution (4096x4096)This mesh is the raw scan data and the polygons are primarily tris.If you like the model please rate it! I would really appreciate that!Thanks! +3D Medieval low poly house Low-poly,jonasvanoyenbrugge," +Free +", - All Extended Uses,2019-04-05," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'architecture', 'building', 'residential building', 'house', 'medieval house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house', 'https://www.turbosquid.com/3d-model/medieval-house']","['house', 'architecture', 'roof', 'building', 'old', 'village', 'medieval', 'lowpoly', 'cartoon', 'exterior', 'historic', 'fantasy', 'free', 'mansion']","['https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/roof', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/village', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/historic', 'https://www.turbosquid.com/Search/3D-Models/fantasy', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/mansion']",High-quality model of a medieval house. The object is UVmapped but not textured. The materials are aplied. Created with Blender 2.79.    lowpoly    high-quality    no interior    included file formats are directly exported from Blender. +utensils 3D model,vavalexus," +Free +", - Editorial Uses Only,2019-04-04," + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'dining room housewares', 'tableware', 'flatware', 'fork']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/dining-room-housewares', 'https://www.turbosquid.com/3d-model/tableware', 'https://www.turbosquid.com/3d-model/flatware', 'https://www.turbosquid.com/3d-model/fork']",['utensils'],['https://www.turbosquid.com/Search/3D-Models/utensils'],--- +3D Man with a shotgun model,puzanovanton89," +Free +", - All Extended Uses,2019-04-04," + + +Other + + + + +OBJ + + + + +FBX + +","['3D Model', 'characters', 'people', 'military people', 'warrior']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/military-people', 'https://www.turbosquid.com/3d-model/warrior-person']","['Character', 'man', 'game', '3d', 'low', 'poly', 'shotgun', 'ax', 'pistol', 'grenade', 'survival', 'adventure', 'for', 'games', 'Unity', 'PBR', 'Unreal', 'Engine', '4']","['https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/shotgun', 'https://www.turbosquid.com/Search/3D-Models/ax', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/grenade', 'https://www.turbosquid.com/Search/3D-Models/survival', 'https://www.turbosquid.com/Search/3D-Models/adventure', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/games', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/pbr', 'https://www.turbosquid.com/Search/3D-Models/unreal', 'https://www.turbosquid.com/Search/3D-Models/engine', 'https://www.turbosquid.com/Search/3D-Models/4']","Low poly model of a man with a weapon. Ready for third-party games, RPG, strategies and other programs and applications. Sculpting models zbrush, rigging in maya. Textures Substance Painter . PBR textures(Metallic and other texture) The model consists following parts: body texture - format 4096x4096 head texture - format 2048x2048 texture ammunition - format 2048x2048 texture axe - format 2048x2048 texture shotgun - format 2048x2048 texture gun - format 2048x2048 pomegranate texture - format 2048x2048Textures are scaled through third-party editors with no loss of quality up to 1024 or 2048 pixelsRigging -Controllers from Maya 2017 Built-in controller skinning all the bones. Rigging implemented system Fott roll for feet.In addition to the low-poly model, you also get a high-poly model.faces 28107 verts 32383 tris 54829Programs usedSculpt ZBRUSHRetopology: 3D-COAT texturing: Substance PainterUV map UVLAYOUTRenderMarmoset toolbag" +3D Monster Woman model,Brian31," +Free +", - All Extended Uses,2019-04-03," + + +OBJ + +","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['Monster', 'woman', 'human']","['https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/human']",Monster woman humanHer name is Ivone.rigedhas idle animation and run Animation. +3D Sci-fi military Case,SkilHardRU," +Free +", - All Extended Uses,2019-04-03," + + +FBX 16 + + + + +OBJ 16 + +","['3D Model', 'weaponry', 'munitions', 'military case', 'weapon case']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/munitions', 'https://www.turbosquid.com/3d-model/military-case', 'https://www.turbosquid.com/3d-model/weapon-case']","['props', 'case', 'box', 'crate', 'sci', 'fi', 'pelican', 'halway', 'indystrial', 'military', 'corridor', 'panel', 'free', 'industrial', 'tool']","['https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/case', 'https://www.turbosquid.com/Search/3D-Models/box', 'https://www.turbosquid.com/Search/3D-Models/crate', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/pelican', 'https://www.turbosquid.com/Search/3D-Models/halway', 'https://www.turbosquid.com/Search/3D-Models/indystrial', 'https://www.turbosquid.com/Search/3D-Models/military', 'https://www.turbosquid.com/Search/3D-Models/corridor', 'https://www.turbosquid.com/Search/3D-Models/panel', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/tool']","Sci-fi military CaseHello dear friends! I hasten to share with you an excellent case, which may well be useful for your ideas or plans in 3D, so download and make the dream come true)) You can use anywhere except on 3D drains, your right !! Well, do not forget to press Lucas to raise morale)! Thank.+Bonus Gun" +3D [FREE] Stylized Industrial Props Set,Game Ready Studios," +Free +", - All Extended Uses,2019-04-02," + + +Other + +","['3D Model', 'industrial', 'industrial equipment', 'robotics', 'industrial robot', 'robotic arm']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-equipment', 'https://www.turbosquid.com/3d-model/robotics', 'https://www.turbosquid.com/3d-model/industrial-robot', 'https://www.turbosquid.com/3d-model/robotic-arm']","['Free', 'Stylized', 'Industrial', 'Props', 'factory', 'machine', 'Pipes', 'Oil', 'tank']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/stylized', 'https://www.turbosquid.com/Search/3D-Models/industrial', 'https://www.turbosquid.com/Search/3D-Models/props', 'https://www.turbosquid.com/Search/3D-Models/factory', 'https://www.turbosquid.com/Search/3D-Models/machine', 'https://www.turbosquid.com/Search/3D-Models/pipes', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/tank']","Stylized Industrial Props Set with hi-res materialsPackage contain: 2 factory machines, Pipes set and 2 Oil tanks.Number of Textures: 22Texture Sizes:1024x10242048x2048Number of Meshes: 21" +Tool Box 3D model,Brian31," +Free +", - All Extended Uses,2019-04-01,,"['3D Model', 'industrial', 'tools', 'toolbox']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/toolbox']","['Tool', 'hamer', 'saw', 'nail', 'screwdriver']","['https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/hamer', 'https://www.turbosquid.com/Search/3D-Models/saw', 'https://www.turbosquid.com/Search/3D-Models/nail', 'https://www.turbosquid.com/Search/3D-Models/screwdriver']",Tool hamer saw nail screwdriver +Skinny Creature 3D model,niyoo," +Free +", - All Extended Uses,2019-04-01," + + +OBJ + +","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['free', 'sculpting', 'zbrush', 'characters', 'monters', 'creatures', 'ztl', 'obj', 'body', 'anatomy', 'stylized']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/sculpting', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/characters', 'https://www.turbosquid.com/Search/3D-Models/monters', 'https://www.turbosquid.com/Search/3D-Models/creatures', 'https://www.turbosquid.com/Search/3D-Models/ztl', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/stylized']","Free creature model.ztl and obj files included.polygons,169,299_zbrush67,719_decimated obj" +CORAL 3D,edikm1," +Free +", - All Extended Uses,2019-04-01," + + +3D Studio + + + + +FBX + + + + +OBJ + + + + +Other + +","['3D Model', 'nature', 'landscapes', 'coral reef', 'brain coral']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes', 'https://www.turbosquid.com/3d-model/coral-reef', 'https://www.turbosquid.com/3d-model/brain-coral']","['Coral', 'underwater', 'diving', 'ocean', 'sea', 'reef', 'mollusc', 'tropical', 'Aquarium', 'Decoration', 'Fish', 'tank', 'decor', 'fossil']","['https://www.turbosquid.com/Search/3D-Models/coral', 'https://www.turbosquid.com/Search/3D-Models/underwater', 'https://www.turbosquid.com/Search/3D-Models/diving', 'https://www.turbosquid.com/Search/3D-Models/ocean', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/reef', 'https://www.turbosquid.com/Search/3D-Models/mollusc', 'https://www.turbosquid.com/Search/3D-Models/tropical', 'https://www.turbosquid.com/Search/3D-Models/aquarium', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/fish', 'https://www.turbosquid.com/Search/3D-Models/tank', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/fossil']","DESCRIPTIONvertices - 18841 , faces - 37678,1.1_AO.BMP ------8192*8192*322.1_BaseColor.BMP ------8192*8192*323.1_O_(+Y)__Normal.BMP ------8192*8192*324.1_O_(-Y)__Normal.BMP ------8192*8192*325.1_T_(+Y)__Normal.BMP ------8192*8192*326.1_T_(-Y)__Normal.BMP ------8192*8192*327.1_AO2.BMP ------8192*8192*32" +sofa 3D model,Rafael Novella," +Free +", - All Extended Uses,2019-04-01," + + +FBX 2018 + + + + +Collada 2018 + + + + +3D Studio 2018 + +","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['sofa', 'leader', 'sofa', 'old', 'sofa', 'retro', 'white', 'leader', 'single', 'sofa', 'picture']","['https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/leader', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/leader', 'https://www.turbosquid.com/Search/3D-Models/single', 'https://www.turbosquid.com/Search/3D-Models/sofa', 'https://www.turbosquid.com/Search/3D-Models/picture']",White leader old classic sofa +3D Empty flower bed,SuicideSquid," +Free +", - All Extended Uses,2019-04-01," + + +OBJ + + + + +FBX + +","['3D Model', 'interior design', 'housewares', 'general decor', 'planter']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/planter']","['3d', 'scan', 'flowerbed', 'concrete', 'cylinder', 'pot', 'soil']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/scan', 'https://www.turbosquid.com/Search/3D-Models/flowerbed', 'https://www.turbosquid.com/Search/3D-Models/concrete', 'https://www.turbosquid.com/Search/3D-Models/cylinder', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/soil']","3D-scanned concrete flower bed model.3ds max 2015 VRay, Corona and Scanline scenes;OBJ;FBX;Textures (4K Diffuse and Bump maps in JPG format).Diameter or the model is about 1 meter.System units: millimeters.Enjoy!" +Heinekin Beer 3D model,gatineau," +Free +", - Editorial Uses Only,2019-04-01," + + +FBX 1.2 + +","['3D Model', 'food and drink', 'beverages', 'alcoholic drinks', 'beer', 'beer bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/beverages', 'https://www.turbosquid.com/3d-model/alcoholic-drinks', 'https://www.turbosquid.com/3d-model/beer', 'https://www.turbosquid.com/3d-model/beer-bottle']","['Beer', 'bottle']","['https://www.turbosquid.com/Search/3D-Models/beer', 'https://www.turbosquid.com/Search/3D-Models/bottle']","this is not a copy, I did it by hand with blender, is substance painterFree download , ready for your game Format :1 - FBX2 - Blender Thank you" +Vintage Thermometer 3D,DTG Amusements," +Free +", - All Extended Uses,2019-04-01," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + + + + +STL 2013 + + + + +Other PDF 1 + + + + +Other PDF 2 + +","['3D Model', 'science', 'weather instruments', 'atmospheric thermometer']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/weather-instruments', 'https://www.turbosquid.com/3d-model/atmospheric-thermometer']","['Thermometer', 'Steampunk']","['https://www.turbosquid.com/Search/3D-Models/thermometer', 'https://www.turbosquid.com/Search/3D-Models/steampunk']","Vintage ThermometerThis design is not animated. 29966 quadrilateral polygons12096 triangular polygons72028 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ" +3D Boat Game Ready,Valkeru32bits," +Free +", - All Extended Uses,2019-04-01," + + +OBJ + +","['3D Model', 'vehicles', 'vessel', 'rowboat', 'canoe']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vessel', 'https://www.turbosquid.com/3d-model/rowboat', 'https://www.turbosquid.com/3d-model/canoe']","['Canoe', 'rowing', 'kayak', 'wooden', 'recreational', 'outdoor', 'paddling', 'watercraft', 'transportation', 'transport', 'canoeing', 'adventure', 'leisure', 'sport', 'river', 'lake', 'sea', 'ocean']","['https://www.turbosquid.com/Search/3D-Models/canoe', 'https://www.turbosquid.com/Search/3D-Models/rowing', 'https://www.turbosquid.com/Search/3D-Models/kayak', 'https://www.turbosquid.com/Search/3D-Models/wooden', 'https://www.turbosquid.com/Search/3D-Models/recreational', 'https://www.turbosquid.com/Search/3D-Models/outdoor', 'https://www.turbosquid.com/Search/3D-Models/paddling', 'https://www.turbosquid.com/Search/3D-Models/watercraft', 'https://www.turbosquid.com/Search/3D-Models/transportation', 'https://www.turbosquid.com/Search/3D-Models/transport', 'https://www.turbosquid.com/Search/3D-Models/canoeing', 'https://www.turbosquid.com/Search/3D-Models/adventure', 'https://www.turbosquid.com/Search/3D-Models/leisure', 'https://www.turbosquid.com/Search/3D-Models/sport', 'https://www.turbosquid.com/Search/3D-Models/river', 'https://www.turbosquid.com/Search/3D-Models/lake', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/ocean']","File formats: BLEND , OBJGame ready - low poly model- The model has 1 objects (Draw Call)- The model contains    427 quads    430 verts- All parts placed in one layer- All parts are fully UV unwraped.Textures (*.PNG):=========================Main 1024x1024:- Diffuse - Normal- SpecularOriginally created with Blender. No 3rd party plugins required.Software used:- Blender" +3D model Photorealistic Ring,dturlu," +Free +", - All Extended Uses,2019-04-01,,"['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/fashion-and-beauty', 'https://www.turbosquid.com/3d-model/apparel', 'https://www.turbosquid.com/3d-model/jewelry', 'https://www.turbosquid.com/3d-model/ring']",['ring'],['https://www.turbosquid.com/Search/3D-Models/ring'],This Blender video demonstrates how to make a silver and turquoise ring. The texture for the turquoise stone uses a procedural texture and therefore requires no external image. +3D Soccer ball,dturlu," +Free +", - All Extended Uses,2019-04-01,,"['3D Model', 'sports', 'team sports', 'soccer', 'soccer ball']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/team-sports', 'https://www.turbosquid.com/3d-model/soccer', 'https://www.turbosquid.com/3d-model/soccer-ball']","['soccer', 'ball']","['https://www.turbosquid.com/Search/3D-Models/soccer', 'https://www.turbosquid.com/Search/3D-Models/ball']",soccer ball +3D model Sea House,Andres Sanchez G," +Free +", - All Extended Uses,2019-03-31," + + +Other 2.78 + +","['3D Model', 'architecture', 'building', 'residential building', 'house', 'fantasy house', 'cartoon house']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/house', 'https://www.turbosquid.com/3d-model/fantasy-house', 'https://www.turbosquid.com/3d-model/cartoon-house']","['seahouse', 'sea', 'house', 'fisherman']","['https://www.turbosquid.com/Search/3D-Models/seahouse', 'https://www.turbosquid.com/Search/3D-Models/sea', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/fisherman']",SEA HOUSE===================package includes:wood planklife saviorfishing rodstool===================wood texturenormal map column +Bull 3D model,Brian31," +Free +", - All Extended Uses,2019-03-31," + + +OBJ + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'farm animals', 'cow', 'bull']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/farm-animals', 'https://www.turbosquid.com/3d-model/cow', 'https://www.turbosquid.com/3d-model/bull']","['bull', 'farm', 'bovine']","['https://www.turbosquid.com/Search/3D-Models/bull', 'https://www.turbosquid.com/Search/3D-Models/farm', 'https://www.turbosquid.com/Search/3D-Models/bovine']",bull simple +Dice 3D model,Pi3d," +Free +", - All Extended Uses,2019-03-31,,"['3D Model', 'toys and games', 'games', 'dice']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dice']","['dice', 'casin', 'cube', 'casino', 'play', 'game', 'luck']","['https://www.turbosquid.com/Search/3D-Models/dice', 'https://www.turbosquid.com/Search/3D-Models/casin', 'https://www.turbosquid.com/Search/3D-Models/cube', 'https://www.turbosquid.com/Search/3D-Models/casino', 'https://www.turbosquid.com/Search/3D-Models/play', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/luck']",a couple of dice +Thompson 3D model,g4RYZOiD," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-30,,"['3D Model', 'weaponry', 'weapons', 'firearms', 'machine gun', 'submachine gun', 'tommy gun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/machine-gun', 'https://www.turbosquid.com/3d-model/submachine-gun', 'https://www.turbosquid.com/3d-model/tommy-gun']","['Gun', 'Submachinegun', 'Firearm', 'WWI']","['https://www.turbosquid.com/Search/3D-Models/gun', 'https://www.turbosquid.com/Search/3D-Models/submachinegun', 'https://www.turbosquid.com/Search/3D-Models/firearm', 'https://www.turbosquid.com/Search/3D-Models/wwi']","A Thompson Submachine gun in a zipped folder. Includes an FBX, Diffuse map and Unity import package.Poly count is rather high, no fire control group, no surface imperfections or normal map." +Old Rock column 3D model,Brian31," +Free +", - All Extended Uses,2019-03-30,,"['3D Model', 'architecture', 'building components', 'column']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/column']","['column', 'old', 'ruins', 'ancient']","['https://www.turbosquid.com/Search/3D-Models/column', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/ruins', 'https://www.turbosquid.com/Search/3D-Models/ancient']", +3D Tall Building,Jhoyski," +Free +", - All Extended Uses,2019-03-30," + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'architecture', 'building', 'skyscraper']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/skyscraper']","['9Stories', 'City', 'Tall', 'Antenna', 'Building', 'NoTexture']","['https://www.turbosquid.com/Search/3D-Models/9stories', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/tall', 'https://www.turbosquid.com/Search/3D-Models/antenna', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/notexture']",This is a 9 story building. It has one main ground floor and then 8 other glass floors. It has an antenna on top. There are also 6 floors of balconies. It can be used for anything but would work well in a city. Made using Blender 2.80. +THIEF Typography 3D,CREAM_Wes," +Free +", - All Extended Uses,2019-03-29,,"['3D Model', 'architecture', 'urban design', 'street elements', 'sign']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/urban-design', 'https://www.turbosquid.com/3d-model/street-elements', 'https://www.turbosquid.com/3d-model/sign']","['#thief', '#typography']","['https://www.turbosquid.com/Search/3D-Models/%23thief', 'https://www.turbosquid.com/Search/3D-Models/%23typography']","THIEF typography for all you content creators out there, might be good to have a look how you bevel edges in hardsurface modeling also." +Table desk 3D model,Brian31," +Free +", - All Extended Uses,2019-03-29,,"['3D Model', 'furnishings', 'table', 'dining table', 'dining room set']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/dining-table', 'https://www.turbosquid.com/3d-model/dining-room-set']","['Table', 'desk', 'furniture', 'chair']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/chair']",Table desk furniture chair +Apartment Building 3D,Jhoyski," +Free +", - All Extended Uses,2019-03-29," + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'architecture', 'building', 'residential building', 'apartment building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building', 'https://www.turbosquid.com/3d-model/apartment-building']","['Building', 'Apartment', '5', 'Stories', 'No', 'Texture', 'Free']","['https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/apartment', 'https://www.turbosquid.com/Search/3D-Models/5', 'https://www.turbosquid.com/Search/3D-Models/stories', 'https://www.turbosquid.com/Search/3D-Models/no', 'https://www.turbosquid.com/Search/3D-Models/texture', 'https://www.turbosquid.com/Search/3D-Models/free']",This model is of a 5 story apartment building. It can be used in anyway that you want but it would work well in a city. Made using Blender 2.80. +White And Black Cat model,Essam isbiga," +Free +", - All Extended Uses,2019-03-29," + + +FBX 6.0 + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'cat', 'housecat']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/cat', 'https://www.turbosquid.com/3d-model/housecat']","['Animals', 'cat', 'free', 'animation', 'mammal', 'animated']","['https://www.turbosquid.com/Search/3D-Models/animals', 'https://www.turbosquid.com/Search/3D-Models/cat', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/mammal', 'https://www.turbosquid.com/Search/3D-Models/animated']",Whith and black Cat:Anumation (6):WalkRunIdleJumpWalk slowDeadTexture:Body (None) 3000x3000Body (Normal) 3000x3000Body (AO) 3000x3000 +Pineapple 3D model,FATonGraycat," +Free +", - All Extended Uses,2019-03-29," + + +FBX + + + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'food and drink', 'food', 'fruit', 'pineapple']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/food-and-drink', 'https://www.turbosquid.com/3d-model/food', 'https://www.turbosquid.com/3d-model/fruit', 'https://www.turbosquid.com/3d-model/pineapple']","['pineapple', 'fruit', 'tropical', 'africa', 'food', 'culture', 'fresh', 'tropic', 'exotic', 'vitamin', 'palm']","['https://www.turbosquid.com/Search/3D-Models/pineapple', 'https://www.turbosquid.com/Search/3D-Models/fruit', 'https://www.turbosquid.com/Search/3D-Models/tropical', 'https://www.turbosquid.com/Search/3D-Models/africa', 'https://www.turbosquid.com/Search/3D-Models/food', 'https://www.turbosquid.com/Search/3D-Models/culture', 'https://www.turbosquid.com/Search/3D-Models/fresh', 'https://www.turbosquid.com/Search/3D-Models/tropic', 'https://www.turbosquid.com/Search/3D-Models/exotic', 'https://www.turbosquid.com/Search/3D-Models/vitamin', 'https://www.turbosquid.com/Search/3D-Models/palm']","Pineapple (plain)Dimensions: length 23.29 mm, 33.19 mm, height 25.75 mm.Vertices - 26090, polygons - 25984." +3D Shop ( Store ) model,Basemaram," +Free +", - All Extended Uses,2019-03-29,,"['3D Model', 'architecture', 'building', 'commercial building', 'retail store']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/retail-store']","['Shop', 'Store', 'commercial', 'sell', 'sales', 'display']","['https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/store', 'https://www.turbosquid.com/Search/3D-Models/commercial', 'https://www.turbosquid.com/Search/3D-Models/sell', 'https://www.turbosquid.com/Search/3D-Models/sales', 'https://www.turbosquid.com/Search/3D-Models/display']","About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry." +3D model Bar,3d expart," +Free +", - All Extended Uses,2019-03-28," + + +FBX + + + + +3D Studio + + + + +Other + + + + +OBJ + +","['3D Model', 'architecture', 'building', 'commercial building', 'bar']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/commercial-building', 'https://www.turbosquid.com/3d-model/saloon']","['interior', 'shop', 'architecture', 'design', 'bar.', 'restaurant', 'juice', 'bar', 'ice', 'cream', 'decoration']","['https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/bar.', 'https://www.turbosquid.com/Search/3D-Models/restaurant', 'https://www.turbosquid.com/Search/3D-Models/juice', 'https://www.turbosquid.com/Search/3D-Models/bar', 'https://www.turbosquid.com/Search/3D-Models/ice', 'https://www.turbosquid.com/Search/3D-Models/cream', 'https://www.turbosquid.com/Search/3D-Models/decoration']",This is a juice & ice cream bar.1. good topology2. Uv mapping3. Uv unwrapped4. 4k texture5.clean modelIf you want more exchange file please contact meIf you have any question please message me.Thank You! +Bojack horseman 3D model,Brian31," +Free +", - Editorial Uses Only,2019-03-28," + + +OBJ + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'farm animals', 'horse', 'cartoon horse']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/farm-animals', 'https://www.turbosquid.com/3d-model/horse', 'https://www.turbosquid.com/3d-model/cartoon-horse']","['Bojack', 'horseman', 'horse', 'werehorse', 'Netflix', 'cartoon', 'charater']","['https://www.turbosquid.com/Search/3D-Models/bojack', 'https://www.turbosquid.com/Search/3D-Models/horseman', 'https://www.turbosquid.com/Search/3D-Models/horse', 'https://www.turbosquid.com/Search/3D-Models/werehorse', 'https://www.turbosquid.com/Search/3D-Models/netflix', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/charater']",Back in the 90sI was in a very famous TV showI'm BoJack the horse (BoJack)BoJack the horseDon't act like you don't knowAnd I'm trying to hold on to my pastIt's been so longI don't think I'm gonna lastI guess I'll just tryAnd make you understandThat I'm more horse than a manOr I'm more man than a horseBoJack +Samara The Ring Bas-relief for CNC router 3D model,voronzov," +Free +", - All Extended Uses,2019-03-28," + + +OBJ + + + + +STL + +","['3D Model', 'art', 'sculpture', 'relief']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/relief']","['stl', 'model', 'bas-relief', 'samara', '3d', 'cnc', 'router', 'the', 'ring']","['https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/bas-relief', 'https://www.turbosquid.com/Search/3D-Models/samara', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/router', 'https://www.turbosquid.com/Search/3D-Models/the', 'https://www.turbosquid.com/Search/3D-Models/ring']","Samara 'The Ring' 3d model bas relief for CNC machining, 3D printing, carving, molding etc. 3Dprinted bas-relief looks pretty good if it is painted with bronze, gold or silver paint. You can order a personal portrait in the form of a bas-relief, which can be 3D printed or cut out by CNC router. Just contact me and send a photo, we will discuss all the details.I am happy to answer any questions you might have about the model.Check out my profile to see the other stuff!PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free. You can arbitrarily dispose of material products manufactured using this model." +Spartan STL model for cnc router - 3d bas-relief Tzar Leonid 3D model,voronzov," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-28," + + +OBJ + + + + +STL + + + + +VRML + +","['3D Model', 'art', 'sculpture', 'relief']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/relief']","['spartan', 'stl', 'file', '3d', 'model', 'bas-relief', 'cnc', 'router', 'Leonid']","['https://www.turbosquid.com/Search/3D-Models/spartan', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/file', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/bas-relief', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/router', 'https://www.turbosquid.com/Search/3D-Models/leonid']","Spartan Tzar Leonid 3d model bas relief for CNC router, 3D printing, carving, molding etc.PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free.You can arbitrarily dispose of material products manufactured using this model.If you have a question please convo me and I'll be happy to help." +3D Joker 3D model bas-relief for cnc router,voronzov," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-28," + + +OBJ + + + + +STL + + + + +VRML + +","['3D Model', 'art', 'sculpture', 'relief']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/art', 'https://www.turbosquid.com/3d-model/sculpture', 'https://www.turbosquid.com/3d-model/relief']","['joker', 'file', 'stl', 'model', 'for', 'cnc', 'router', '3d', 'bas', 'relief']","['https://www.turbosquid.com/Search/3D-Models/joker', 'https://www.turbosquid.com/Search/3D-Models/file', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/router', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/bas', 'https://www.turbosquid.com/Search/3D-Models/relief']","Joker 3d model bas relief for CNC machining, 3D printing, carving, molding etc. 3Dprinted bas-relief looks pretty good if it is painted with bronze, gold or silver paint. You can order a personal portrait in the form of a bas-relief, which can be 3D printed or cut out by CNC router. Just contact me and send a photo, we will discuss all the details.I am happy to answer any questions you might have about the model.Check out my profile to see the other stuff!PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free. You can arbitrarily dispose of material products manufactured using this model." +3D Classic Building ( Bankhaus ),Basemaram," +Free +", - All Extended Uses,2019-03-28,,"['3D Model', 'architecture', 'building', 'residential building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building', 'https://www.turbosquid.com/3d-model/residential-building']","['city', 'town', 'building', 'house', 'palace', 'old', 'street', 'Gothic', 'townhouse', 'urban', 'medieval', 'classic', 'Europe', 'European', 'shop', 'architecture', 'hotel', 'Bankhaus', 'neoclassic']","['https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/palace', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/street', 'https://www.turbosquid.com/Search/3D-Models/gothic', 'https://www.turbosquid.com/Search/3D-Models/townhouse', 'https://www.turbosquid.com/Search/3D-Models/urban', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/europe', 'https://www.turbosquid.com/Search/3D-Models/european', 'https://www.turbosquid.com/Search/3D-Models/shop', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/hotel', 'https://www.turbosquid.com/Search/3D-Models/bankhaus', 'https://www.turbosquid.com/Search/3D-Models/neoclassic']","Built in 1754 the Bankhaus building is a classic example of architecture from this time. The building is located in Germany on the Kaizerplatz in Wuppertal-Vohwinkel and was originally occupied by the von der Heydt-Kersten & Shne bank.About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.- making by 3dmax 6 and Editing by 2010" +Steampunk Clock 3D model,Mfarhani," +Free +", - All Extended Uses,2019-03-27," + + +FBX + + + + +Other + + + + +OBJ + +","['3D Model', 'interior design', 'housewares', 'general decor', 'clock', 'wall clock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/clock', 'https://www.turbosquid.com/3d-model/wall-clock']","['Clock', 'Steampunk', 'Decoration', 'Retro']","['https://www.turbosquid.com/Search/3D-Models/clock', 'https://www.turbosquid.com/Search/3D-Models/steampunk', 'https://www.turbosquid.com/Search/3D-Models/decoration', 'https://www.turbosquid.com/Search/3D-Models/retro']","A low-poly clock with steampunk themeNo tris or n-gone, Quad polygons onlyNo overlapping uv map2048 x 2048 textureFaces    : 5560Vertices : 5614" +Old Classic Car 3D model,Brian31," +Free +", - All Extended Uses,2019-03-27,,"['3D Model', 'vehicles', 'car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car']","['Old', 'Classic', 'Car']","['https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/car']",Old Classic Car +S'well Sports Bottle 3D,bomi1337," +Free +", - All Extended Uses,2019-03-27," + + +FBX + + + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'sports', 'exercise equipment', 'sports bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/sports-bottle']","['bottle', 'metal', ""s'well"", 'water', 'realistic', '3d', 'drink', 'food']","['https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/s%27well', 'https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/food']","Drinking metal bottle.Objects: - Bottle - CapCap is unscrewable.Reference: S'well, JadePlease, rate the model. It will help a lot!" +Wooden Buckets and a Pitcher 3D model,DTG Amusements," +Free +", - All Extended Uses,2019-03-27," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + + + + +STL 2013 + +","['3D Model', 'industrial', 'industrial container', 'bucket']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/bucket']","['Bucket', 'Pitcher']","['https://www.turbosquid.com/Search/3D-Models/bucket', 'https://www.turbosquid.com/Search/3D-Models/pitcher']","Set of wooden buckets and a pitcherThis design is not animated. 20529 quadrilateral polygons44319 triangular polygons85377 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ" +3D Wardrobe,Brian31," +Free +", - All Extended Uses,2019-03-26,,"['3D Model', 'furnishings', 'armoire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/armoire']","['wardrobe', 'clothes', '3d', 'blender']","['https://www.turbosquid.com/Search/3D-Models/wardrobe', 'https://www.turbosquid.com/Search/3D-Models/clothes', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/blender']",wardrobewith clothes +test 3D model,cbriere25," +Free +", - All Extended Uses,2019-02-26," + + +Other + +",[],[],"['Qa', 'Test', 'Assets']","['https://www.turbosquid.com/Search/3D-Models/qa', 'https://www.turbosquid.com/Search/3D-Models/test', 'https://www.turbosquid.com/Search/3D-Models/assets']",Qa Test Assets +Cyclorama Infinity Wall 3D model,SPACESCAN," +Free +", - All Extended Uses,2019-03-25," + + +3D Studio + + + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other PLY + +","['3D Model', 'interior design', 'interior', 'commercial spaces', 'studio', 'photo studio']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/interior', 'https://www.turbosquid.com/3d-model/commercial-spaces', 'https://www.turbosquid.com/3d-model/studio', 'https://www.turbosquid.com/3d-model/photo-studio']","['infinity', 'photography', 'studio', 'curved', 'camera', 'wall', 'background', 'film', 'stage', 'green', 'screen']","['https://www.turbosquid.com/Search/3D-Models/infinity', 'https://www.turbosquid.com/Search/3D-Models/photography', 'https://www.turbosquid.com/Search/3D-Models/studio', 'https://www.turbosquid.com/Search/3D-Models/curved', 'https://www.turbosquid.com/Search/3D-Models/camera', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/background', 'https://www.turbosquid.com/Search/3D-Models/film', 'https://www.turbosquid.com/Search/3D-Models/stage', 'https://www.turbosquid.com/Search/3D-Models/green', 'https://www.turbosquid.com/Search/3D-Models/screen']","Cyclorama Photography Infinity WallThis is the background that I use for all my 3D rendered studio shots. A smooth quad mesh UV unwrapped for good studio type baking in Blender and other ray tracing programs.A cyclorama is a large curtain or wall, often concave, positioned at the back of the apse. ... Cycloramas or 'cycs' also refer to photography curving backdrops which are white to create no background, or green screen to create a masking backdrop. Cycloramas are often used to create the illusion of a sky onstage." +3D model Garbage,Brian31," +Free +", - All Extended Uses,2019-03-25,,"['3D Model', 'industrial', 'industrial container', 'garbage container']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/industrial-container', 'https://www.turbosquid.com/3d-model/garbage-container']","['garbage', 'trash']","['https://www.turbosquid.com/Search/3D-Models/garbage', 'https://www.turbosquid.com/Search/3D-Models/trash']",garbage 3d +End Table Square Metal/Glass 010 3D model,Orchidea Studios," +Free +", - All Extended Uses,2019-03-25," + + +FBX 2012 + + + + +OBJ + +","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['end', 'table', 'square', 'contemporary', 'metal', 'glass']","['https://www.turbosquid.com/Search/3D-Models/end', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/square', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/glass']","============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 55.5cm x 55.5cm x 55.8cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios" +End Table Square Metal/Glass 006 3D,Orchidea Studios," +Free +", - All Extended Uses,2019-03-25," + + +FBX 2012 + + + + +OBJ + +","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['end', 'table', 'square', 'contemporary', 'metal', 'glass']","['https://www.turbosquid.com/Search/3D-Models/end', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/square', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/glass']","============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 45.0cm x 45.0cm x 49.8cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios" +3D End Table Square Metal/Glass 004,Orchidea Studios," +Free +", - All Extended Uses,2019-03-25," + + +FBX 2012 + + + + +OBJ + +","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['end', 'table', 'square', 'contemporary', 'metal', 'glass']","['https://www.turbosquid.com/Search/3D-Models/end', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/square', 'https://www.turbosquid.com/Search/3D-Models/contemporary', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/glass']","============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 40.0cm x 40.3cm x 52.1cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios" +Free Wheel 3D Models 3D model,3D Horse," +Free +", - All Extended Uses,2019-03-25," + + +3D Studio + + + + +OBJ + +","['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel', 'truck tire']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/vehicle-parts', 'https://www.turbosquid.com/3d-model/wheel', 'https://www.turbosquid.com/3d-model/truck-wheel', 'https://www.turbosquid.com/3d-model/truck-tire']","['free', 'wheels', 'classic', 'tire', 'tyre', 'tread', 'rim', 'disk', 'disc', 'wheel', 'rubber', 'car', 'truck', 'van', 'part', 'protector', 'off-road', 'ride', 'vehicle', 'plane', 'aircraft', 'chassis', 'sava']","['https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/wheels', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/tire', 'https://www.turbosquid.com/Search/3D-Models/tyre', 'https://www.turbosquid.com/Search/3D-Models/tread', 'https://www.turbosquid.com/Search/3D-Models/rim', 'https://www.turbosquid.com/Search/3D-Models/disk', 'https://www.turbosquid.com/Search/3D-Models/disc', 'https://www.turbosquid.com/Search/3D-Models/wheel', 'https://www.turbosquid.com/Search/3D-Models/rubber', 'https://www.turbosquid.com/Search/3D-Models/car', 'https://www.turbosquid.com/Search/3D-Models/truck', 'https://www.turbosquid.com/Search/3D-Models/van', 'https://www.turbosquid.com/Search/3D-Models/part', 'https://www.turbosquid.com/Search/3D-Models/protector', 'https://www.turbosquid.com/Search/3D-Models/off-road', 'https://www.turbosquid.com/Search/3D-Models/ride', 'https://www.turbosquid.com/Search/3D-Models/vehicle', 'https://www.turbosquid.com/Search/3D-Models/plane', 'https://www.turbosquid.com/Search/3D-Models/aircraft', 'https://www.turbosquid.com/Search/3D-Models/chassis', 'https://www.turbosquid.com/Search/3D-Models/sava']",FREE 3D MODELSHigh quality and free 3d model of wheel.2 versions for 3ds Max included : V-Ray and default materials.Colors can be easily modified.Previews rendered with 3ds max and V-Ray.Thank you for downloading and rating our free 3d models.3D Horse +3D LowPoly Subway,MeisterKaio," +Free +", - All Extended Uses,2019-03-25," + + +OBJ + + + + +FBX + +","['3D Model', 'vehicles', 'trains', 'subway car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/trains', 'https://www.turbosquid.com/3d-model/subway-car']","['LowPoly', 'Subway', 'and', 'Train']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/subway', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/train']",lowpoly Subway for you all! +Dragon 3D,RealUnreal," +Free +", - All Extended Uses,2019-03-24," + + +FBX + +","['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'dragon']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/dragon-creature']","['Dragon', 'Cartoon']","['https://www.turbosquid.com/Search/3D-Models/dragon', 'https://www.turbosquid.com/Search/3D-Models/cartoon']",Cartoon dragon Modeling Base +3D Firepit model,DTG Amusements," +Free +", - All Extended Uses,2019-03-24," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +IGES 2013 + + + + +OBJ 2013 + + + + +Other STEP + + + + +STL 2013 + + + + +Other PDF1 + + + + +Other PDF2 + +","['3D Model', 'architecture', 'site components', 'fireplace']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/fireplace']","['Fire', 'Firepit']","['https://www.turbosquid.com/Search/3D-Models/fire', 'https://www.turbosquid.com/Search/3D-Models/firepit']","Wrought Iron FirepitThis design is not animated. 24940 quadrilateral polygons20509 triangular polygons70389 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL, .STEP; .IGES" +3D model Vase 3D,Brian31," +Free +", - All Extended Uses,2019-03-23,,"['3D Model', 'interior design', 'housewares', 'general decor', 'vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase']","['Vase', 'pot', 'low', 'poly']","['https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/pot', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly']",Low poly vase +Ram skul model,EinSteph," +Free +", - All Extended Uses,2019-03-23,,[],[],"['ram', 'skull', 'deco', 'bone', 'desert', 'death']","['https://www.turbosquid.com/Search/3D-Models/ram', 'https://www.turbosquid.com/Search/3D-Models/skull', 'https://www.turbosquid.com/Search/3D-Models/deco', 'https://www.turbosquid.com/Search/3D-Models/bone', 'https://www.turbosquid.com/Search/3D-Models/desert', 'https://www.turbosquid.com/Search/3D-Models/death']",It is a skull of a ram without textures.You can use it for everything you want but the back and the inner of the skull isnt really detailed. +Pergola 3D,ibulb," +Free +", - All Extended Uses,2019-03-23," + + +3D Studio + + + + +Collada + + + + +Other + + + + +FBX + + + + +OBJ + +","['3D Model', 'architecture', 'site components', 'outdoor structure', 'gazebo', 'pergola']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/outdoor-structure', 'https://www.turbosquid.com/3d-model/gazebo', 'https://www.turbosquid.com/3d-model/pergola']",['Engineering'],['https://www.turbosquid.com/Search/3D-Models/engineering'],Pergola High Resulotion +Wall Carving 1 3D,SPACESCAN," +Free +", - All Extended Uses,2019-03-23," + + +Collada + + + + +FBX + + + + +OBJ + + + + +Other PLY + + + + +STL + + + + +Other + +","['3D Model', 'architecture', 'building components', 'wall', 'stone wall']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building-components', 'https://www.turbosquid.com/3d-model/wall', 'https://www.turbosquid.com/3d-model/stone-wall']","['stone', 'sculpture', 'wall', 'freeze', 'statue', 'ancient', 'carving', 'crypt', 'dungeon', 'temple', 'church', 'indianna', 'jones', 'tomb', 'raider', 'game', 'development']","['https://www.turbosquid.com/Search/3D-Models/stone', 'https://www.turbosquid.com/Search/3D-Models/sculpture', 'https://www.turbosquid.com/Search/3D-Models/wall', 'https://www.turbosquid.com/Search/3D-Models/freeze', 'https://www.turbosquid.com/Search/3D-Models/statue', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/carving', 'https://www.turbosquid.com/Search/3D-Models/crypt', 'https://www.turbosquid.com/Search/3D-Models/dungeon', 'https://www.turbosquid.com/Search/3D-Models/temple', 'https://www.turbosquid.com/Search/3D-Models/church', 'https://www.turbosquid.com/Search/3D-Models/indianna', 'https://www.turbosquid.com/Search/3D-Models/jones', 'https://www.turbosquid.com/Search/3D-Models/tomb', 'https://www.turbosquid.com/Search/3D-Models/raider', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/development']","Wall Carving 1An intricate unique stone wall carving from Thailand. Since the texture process came out substandard this one is for free. Please see 'Wall Carving 2' for better results.Photoscan InformationPhotoscanning offers the ability to capture the world around us and bring it into the 3D. Each model comes in a variety of different resolutions for easy management and use throughout many programs. Due to the nature of photoscanning, the models are not perfect, but our intention is to provide a large range of items in high detail captured from the real world for use in your creations whether it be architectural visualisation, game development or more.Please note that there are generally five resolutions (decimation ratios) for each model, where 'Blender' [.blend] and WaveFront [.obj] are the native formats. Other file types available include -- BLENDER 2.78- OBJ- DAE- FBX- 3DS MAX [2017 + 2014]- STL- PLY- SKETCHUP V8All ZIP files contain:Highest - 1,000,000 facesHigh - 500,000 facesMedium - 100,000 facesLow - 50,000 facesLowest - 10,000 facesNOTESFor 3DSMAX, the models contained within the files (2014 & 2017) need their textures re-linked to the texture images contained within the MAX.ZIP/OBJ folder. Also please note that the title of the item online may differ from the file names when downloading.Blender Cycles [v2.78] file only contains the 1000K resolution mesh, please download the Blender [v2.71] version for all mesh LODs.The rendered imagery for this model has been captured from the 'Highest' model within Blender Cycles. Depending on the model complexity the above resolutions may differ, i.e. there may be need for a +1000K item which will be stated in this description when required.The goal of providing these models and assets for you is use within your own game development, level design, film animatics, storyboarding, architectural design, historic study, educational use and much more. Spacescan aims to create and provide a vast library of assets that cannot be easily made digitally or 'within the box' so to speak.Best Regards,Jamie." +3D Action and Faction bones for Dune Dice Game - board game - Free 3D model,finn163," +Free +", - All Extended Uses,2019-03-22," + + +STL + +","['3D Model', 'toys and games', 'games', 'dice']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/games', 'https://www.turbosquid.com/3d-model/dice']","['dune', 'dice', 'game', 'board', 'free', 'blender', 'cycles', 'devil', 'bones', 'dices', 'stones', 'printed', 'for', '3d', 'print']","['https://www.turbosquid.com/Search/3D-Models/dune', 'https://www.turbosquid.com/Search/3D-Models/dice', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/board', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/blender', 'https://www.turbosquid.com/Search/3D-Models/cycles', 'https://www.turbosquid.com/Search/3D-Models/devil', 'https://www.turbosquid.com/Search/3D-Models/bones', 'https://www.turbosquid.com/Search/3D-Models/dices', 'https://www.turbosquid.com/Search/3D-Models/stones', 'https://www.turbosquid.com/Search/3D-Models/printed', 'https://www.turbosquid.com/Search/3D-Models/for', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/print']","Dices (bones) action and faction for board game - Dune Dice gameCan be 3d printed in 1.5x1.5x1.5 cm or 2x2x2 cm as maximum.For playing you need 4 faction and 3 action bones. For all other bones you can use regular 6 points bones.Made in Blender 3D, rendered in Cycles. Printed on Creality 3D - size = 2x2x2 cm, layer height = 0.15, filling = 35%" +3D Realistic Wolf Maya Rig,cvbtruong," +Free +", - Editorial Uses Only,2019-03-22," + + +Other + +","['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'canine', 'wolf']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/canine-animal', 'https://www.turbosquid.com/3d-model/wolf']","['realistic', 'grey', 'gray', 'white', 'snow', 'wolf', 'big', 'dog', 'husky']","['https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/grey', 'https://www.turbosquid.com/Search/3D-Models/gray', 'https://www.turbosquid.com/Search/3D-Models/white', 'https://www.turbosquid.com/Search/3D-Models/snow', 'https://www.turbosquid.com/Search/3D-Models/wolf', 'https://www.turbosquid.com/Search/3D-Models/big', 'https://www.turbosquid.com/Search/3D-Models/dog', 'https://www.turbosquid.com/Search/3D-Models/husky']",Grey Wolf Maya rig. Originally from CoD. Modified by Ilyass Fouad.   Rigged by Truong Cg Artist.Available for non-commercial use only.Software: Maya 2014 (or higher). Rigged using Advanced Skeleton.Happy animating!Truong Cg Artist (look up my name if you have any trouble)ps: please click on my username for other products of mine. +3D Stool Chair model,theflyingtim," +Free +", - All Extended Uses,2019-03-22," + + +FBX + +","['3D Model', 'furnishings', 'seating', 'chair', 'stool']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/stool']","['furniture', 'chair', 'stool', 'stoolchair', 'interior', 'livingroom', 'furnish', 'round', 'free', 'lowpoly', 'gameready', 'game']","['https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/stoolchair', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/livingroom', 'https://www.turbosquid.com/Search/3D-Models/furnish', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/gameready', 'https://www.turbosquid.com/Search/3D-Models/game']",Round stool chair for yours free. This free model does not come with UV and texture. Polycount 298 polygons. +3D Koffing Pokemon,Dmytro Kotliar," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-22," + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'characters', 'movie and television character']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/movie-and-television-character']","['pokemon', 'koffing', 'toy', 'game', 'print', 'printable']","['https://www.turbosquid.com/Search/3D-Models/pokemon', 'https://www.turbosquid.com/Search/3D-Models/koffing', 'https://www.turbosquid.com/Search/3D-Models/toy', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/printable']","Model dimensions:- ball surface diameter 70 mm- outer diameter - 80 mmDesigned in Solid Works 2012, rendered in Keyshot 5.0.99." +3D Round rosette 022 model,Intagli 3D," +Free +", - All Extended Uses,2019-03-22," + + +FBX + + + + +OBJ + + + + +STL + +","['3D Model', 'interior design', 'finishes', 'molding', 'rosette']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/finishes', 'https://www.turbosquid.com/3d-model/molding', 'https://www.turbosquid.com/3d-model/rosette']","['rosette', 'molding', 'finishes', 'decor', 'carved', 'classic', 'ornament', 'flower', 'medallion', 'stl', 'obj', 'CNC', 'round', 'Max', 'wood', '3Dmodel', 'intagli3D', 'ceiling', 'stucco', 'acant']","['https://www.turbosquid.com/Search/3D-Models/rosette', 'https://www.turbosquid.com/Search/3D-Models/molding', 'https://www.turbosquid.com/Search/3D-Models/finishes', 'https://www.turbosquid.com/Search/3D-Models/decor', 'https://www.turbosquid.com/Search/3D-Models/carved', 'https://www.turbosquid.com/Search/3D-Models/classic', 'https://www.turbosquid.com/Search/3D-Models/ornament', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/medallion', 'https://www.turbosquid.com/Search/3D-Models/stl', 'https://www.turbosquid.com/Search/3D-Models/obj', 'https://www.turbosquid.com/Search/3D-Models/cnc', 'https://www.turbosquid.com/Search/3D-Models/round', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/3dmodel', 'https://www.turbosquid.com/Search/3D-Models/intagli3d', 'https://www.turbosquid.com/Search/3D-Models/ceiling', 'https://www.turbosquid.com/Search/3D-Models/stucco', 'https://www.turbosquid.com/Search/3D-Models/acant']",3D model of round rosette--------------------------------------------------------------------------Size of model in mm: 100x100x20In case of need please use subdivision modificators for more smooth resultsRegular model ready for visualization- Count of polys of regular model: 43 232High poly model ready for CNC production- Count of polys of HQ model: 1 383 484Please rate and write the review of our model--------------------------------------------------------------------------Intagli3D +3D Dota 2 Logo for print,3d_new," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-21," + + +IGES 5.3 + + + + +STL 80 + + + + +FBX 2009 + +","['3D Model', 'symbols', 'logo']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/symbols-and-shapes', 'https://www.turbosquid.com/3d-model/logo']","['3D', 'Model', 'dota', '2', 'game', 'logo', 'sports', 'steam', 'valve', 'warcraft', 'dota2', 'print', 'printable', 'cosplay', 'replica']","['https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model', 'https://www.turbosquid.com/Search/3D-Models/dota', 'https://www.turbosquid.com/Search/3D-Models/2', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/logo', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/steam', 'https://www.turbosquid.com/Search/3D-Models/valve', 'https://www.turbosquid.com/Search/3D-Models/warcraft', 'https://www.turbosquid.com/Search/3D-Models/dota2', 'https://www.turbosquid.com/Search/3D-Models/print', 'https://www.turbosquid.com/Search/3D-Models/printable', 'https://www.turbosquid.com/Search/3D-Models/cosplay', 'https://www.turbosquid.com/Search/3D-Models/replica']","This 3D Model is ready to be printed on a 3D Printer.Very fine surface, can be directly 3D printing and manufacturing files.Originally built in SolidWorks to achieve highest accuracy.********************************* Hope you like it! Also check out my other models, just click on my user name to see complete gallery." +Free Cabinet 3D,theflyingtim," +Free +", - All Extended Uses,2019-03-21," + + +FBX + +","['3D Model', 'furnishings', 'dresser']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/dresser']","['cabinet', 'storage', 'furniture', 'free', 'shelf', 'interior', 'bedroom', 'game', 'lowpoly', 'fbx', 'design', 'poly', 'vizarch', 'shelving']","['https://www.turbosquid.com/Search/3D-Models/cabinet', 'https://www.turbosquid.com/Search/3D-Models/storage', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/shelf', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/bedroom', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/design', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/vizarch', 'https://www.turbosquid.com/Search/3D-Models/shelving']",A cabinet model for yours free.This free model does not come with UV and texture.Click on 'theflyingtim' to see more models. +Candle Chandelier 3D model,DTG Amusements," +Free +", - All Extended Uses,2019-03-21," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + + + + +STL 2013 + + + + +Other PDF + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp', 'chandelier', 'candle chandelier']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp', 'https://www.turbosquid.com/3d-model/chandelier', 'https://www.turbosquid.com/3d-model/candle-chandelier']","['Lamp', 'Chandelier', 'Medieval', '1001', 'nights', 'Arabic', 'Candle', 'Ceiling', 'Moroccan', 'Islamic', 'Arab']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/chandelier', 'https://www.turbosquid.com/Search/3D-Models/medieval', 'https://www.turbosquid.com/Search/3D-Models/1001', 'https://www.turbosquid.com/Search/3D-Models/nights', 'https://www.turbosquid.com/Search/3D-Models/arabic', 'https://www.turbosquid.com/Search/3D-Models/candle', 'https://www.turbosquid.com/Search/3D-Models/ceiling', 'https://www.turbosquid.com/Search/3D-Models/moroccan', 'https://www.turbosquid.com/Search/3D-Models/islamic', 'https://www.turbosquid.com/Search/3D-Models/arab']","Medieval themed candle chandelierThis design is not animated. 131393 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL" +3D Male body anatomy,sculpt_m," +Free +", - All Extended Uses,2019-03-20," + + +FBX + + + + +OBJ + +","['3D Model', 'science', 'anatomy', 'complete human anatomy', 'complete male anatomy']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/science', 'https://www.turbosquid.com/3d-model/anatomy', 'https://www.turbosquid.com/3d-model/complete-human-anatomy', 'https://www.turbosquid.com/3d-model/complete-male-anatomy']","['human', 'male', 'body', 'anatomy', 'muscle', 'pose', 'turntable', 'man', 'bone', 'clay', 'zbrush', 'sculpt', 'redshift', 'ztool', 'hand', 'leg', 'torso', 'head', 'full']","['https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/male', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/anatomy', 'https://www.turbosquid.com/Search/3D-Models/muscle', 'https://www.turbosquid.com/Search/3D-Models/pose', 'https://www.turbosquid.com/Search/3D-Models/turntable', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/bone', 'https://www.turbosquid.com/Search/3D-Models/clay', 'https://www.turbosquid.com/Search/3D-Models/zbrush', 'https://www.turbosquid.com/Search/3D-Models/sculpt', 'https://www.turbosquid.com/Search/3D-Models/redshift', 'https://www.turbosquid.com/Search/3D-Models/ztool', 'https://www.turbosquid.com/Search/3D-Models/hand', 'https://www.turbosquid.com/Search/3D-Models/leg', 'https://www.turbosquid.com/Search/3D-Models/torso', 'https://www.turbosquid.com/Search/3D-Models/head', 'https://www.turbosquid.com/Search/3D-Models/full']","Male anatomy body modell rendered with fast, effective GPU render Redshift- Zbrush sculpt- Full scene with cameras, lights, and render settings- Real world scale- Properly organized scene- Ztool- OBJ- FBX- No retopoed- No post work in these rendersHope you like it!" +3D model Dumbbells,waleedsalah," +Free +", - All Extended Uses,2019-03-20,,"['3D Model', 'sports', 'exercise equipment', 'weight training', 'weights', 'dumbbell']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/weight-training', 'https://www.turbosquid.com/3d-model/weights', 'https://www.turbosquid.com/3d-model/dumbbell']","['Dumbbells', 'Sport', 'Body', 'bodybuilding', 'Weight']","['https://www.turbosquid.com/Search/3D-Models/dumbbells', 'https://www.turbosquid.com/Search/3D-Models/sport', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/bodybuilding', 'https://www.turbosquid.com/Search/3D-Models/weight']",Dumbbells modeling by maya 2013 +Low Poly Goat 3D model,LuanEspedito," +Free +", - All Extended Uses,2019-03-20,,"['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'farm animals', 'goat']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/animal', 'https://www.turbosquid.com/3d-model/mammals', 'https://www.turbosquid.com/3d-model/land-mammals', 'https://www.turbosquid.com/3d-model/farm-animals', 'https://www.turbosquid.com/3d-model/goat']","['low', 'poly', 'goat']","['https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/goat']",Low Poly Goat made in blender 2.79b +MTR like pistol for unity 3D model,GAMEASS," +Free +", - All Extended Uses,2019-03-20,,"['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/handgun']","['unity', 'game', 'ready', 'pistol', 'weapon', 'mateba', 'MTR-8', 'gun']","['https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/pistol', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/mateba', 'https://www.turbosquid.com/Search/3D-Models/mtr-8', 'https://www.turbosquid.com/Search/3D-Models/gun']",this is animated pistol for unity.animations--------------------------------------------------------------------shootreload startreload endmaterials-----------------------------------------------------------------------blackchrome +3d real plane fighter jet 3D model,Zahid MZIWA," +Free +", - All Extended Uses,2018-12-26," + + +FBX 3.01.4 + +","['3D Model', 'vehicles', 'aircraft', 'airplane', 'military airplane', 'fighter plane', 'fighter jet']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/aircraft', 'https://www.turbosquid.com/3d-model/airplane', 'https://www.turbosquid.com/3d-model/military-airplane', 'https://www.turbosquid.com/3d-model/fighter-plane', 'https://www.turbosquid.com/3d-model/fighter-jet']","['3ds', 'max', 'plane', '3d', 'fighter', 'jet', 'flying', 'animation', 'fbx', 'x', 'DirectX', 'a', 'pilot', 'zahid', 'mziwa']","['https://www.turbosquid.com/Search/3D-Models/3ds', 'https://www.turbosquid.com/Search/3D-Models/max', 'https://www.turbosquid.com/Search/3D-Models/plane', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/fighter', 'https://www.turbosquid.com/Search/3D-Models/jet', 'https://www.turbosquid.com/Search/3D-Models/flying', 'https://www.turbosquid.com/Search/3D-Models/animation', 'https://www.turbosquid.com/Search/3D-Models/fbx', 'https://www.turbosquid.com/Search/3D-Models/x', 'https://www.turbosquid.com/Search/3D-Models/directx', 'https://www.turbosquid.com/Search/3D-Models/a', 'https://www.turbosquid.com/Search/3D-Models/pilot', 'https://www.turbosquid.com/Search/3D-Models/zahid', 'https://www.turbosquid.com/Search/3D-Models/mziwa']",free 3d fighter aircraft model by Zahid wadfiwale it support all formats and works with gameguru unity unreal gammaker rpg and all other engine +3D boy for unity,GAMEASS," +Free +", - All Extended Uses,2018-12-18,,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster', 'humanoid']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster', 'https://www.turbosquid.com/3d-model/humanoid']","['unity', 'humanoid', 'rigged', 'child', 't', 'shirts', 'pants', 'shoes', 'kids', 'game']","['https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/humanoid', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/child', 'https://www.turbosquid.com/Search/3D-Models/t', 'https://www.turbosquid.com/Search/3D-Models/shirts', 'https://www.turbosquid.com/Search/3D-Models/pants', 'https://www.turbosquid.com/Search/3D-Models/shoes', 'https://www.turbosquid.com/Search/3D-Models/kids', 'https://www.turbosquid.com/Search/3D-Models/game']","humanoid rigged boy for unity game enginethis package also contains bunch of apparels however,they are useless as his equipment. (my bad)'cloth simulation' component in unity might be help... i think" +Lowpoly Sedan 3D,ptrusted," +Free +", - All Extended Uses,2019-03-19," + + +OBJ + +","['3D Model', 'vehicles', 'car', 'fictional automobile', 'cartoon car']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/vehicle', 'https://www.turbosquid.com/3d-model/car', 'https://www.turbosquid.com/3d-model/fictional-automobile', 'https://www.turbosquid.com/3d-model/cartoon-car']",['Lowpoly'],['https://www.turbosquid.com/Search/3D-Models/lowpoly'],A lowpoly sedan. body and wheel separated. +3D Cheerleader Megaphone model,tomb3d," +Free +", - All Extended Uses,2019-03-19," + + +3D Studio 2011 + + + + +DXF 2011 + + + + +FBX 2011 + + + + +OBJ 2011 + +","['3D Model', 'technology', 'audio devices', 'bullhorn', 'megaphone (acoustic)']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/technology', 'https://www.turbosquid.com/3d-model/audio-devices', 'https://www.turbosquid.com/3d-model/bullhorn', 'https://www.turbosquid.com/3d-model/megaphone-acoustic']","['Megaphone', 'Cheerleader', 'Bullhorn', 'tool', 'voice', 'event', 'crowd', 'director', 'chant', 'vintage', 'cheer', 'old', 'horn', 'retro', 'sports', 'cone', 'message', 'amplify', 'loud', 'antique', 'vray']","['https://www.turbosquid.com/Search/3D-Models/megaphone', 'https://www.turbosquid.com/Search/3D-Models/cheerleader', 'https://www.turbosquid.com/Search/3D-Models/bullhorn', 'https://www.turbosquid.com/Search/3D-Models/tool', 'https://www.turbosquid.com/Search/3D-Models/voice', 'https://www.turbosquid.com/Search/3D-Models/event', 'https://www.turbosquid.com/Search/3D-Models/crowd', 'https://www.turbosquid.com/Search/3D-Models/director', 'https://www.turbosquid.com/Search/3D-Models/chant', 'https://www.turbosquid.com/Search/3D-Models/vintage', 'https://www.turbosquid.com/Search/3D-Models/cheer', 'https://www.turbosquid.com/Search/3D-Models/old', 'https://www.turbosquid.com/Search/3D-Models/horn', 'https://www.turbosquid.com/Search/3D-Models/retro', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/cone', 'https://www.turbosquid.com/Search/3D-Models/message', 'https://www.turbosquid.com/Search/3D-Models/amplify', 'https://www.turbosquid.com/Search/3D-Models/loud', 'https://www.turbosquid.com/Search/3D-Models/antique', 'https://www.turbosquid.com/Search/3D-Models/vray']","This is a high quality, photo real model creat in 3ds max 2011 render vary 2.4 *********************************Available in the following file formats: - 3ds Max 2011 with V-Ray 2.4 - FBX 2011 - OBJ 2011 - 3ds 2011 -DXF 2011*********************************- Completely ready for use in visualization - Just put model in your scene and render -Ideal for photorealistic visualizations - All Materials are logically named - Colors easily modified - Highly detailed model-HDRI is not attched*********************************Hope you like it!thanks!" +Wonderland Mirror 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'housewares', 'general decor', 'mirror', 'wall mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/mirror', 'https://www.turbosquid.com/3d-model/wall-mirror']","['Mirrors', 'Dante-Good-and-Bads', 'Christophe-De-La-Fontaine', 'Glass', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bathroom']","['https://www.turbosquid.com/Search/3D-Models/mirrors', 'https://www.turbosquid.com/Search/3D-Models/dante-good-and-bads', 'https://www.turbosquid.com/Search/3D-Models/christophe-de-la-fontaine', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bathroom']","Wonderland Mirror by Dante Good and Bads | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Dante Good and Bads, GermanyDesigner: Christophe De La FontaineDesign Connected ID: 9048BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Dauphine Floor Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'CB2', 'Fabric', 'Brass', 'Natural-stone', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/cb2', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Dauphine Floor Lamp by CB2 | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CB2, USADesigner: N/ADesign Connected ID: 9047BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Emerald Mirror,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'housewares', 'general decor', 'mirror', 'wall mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/mirror', 'https://www.turbosquid.com/3d-model/wall-mirror']","['Mirrors', 'Baker', 'Thomas-Pheasant', 'Glass', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/mirrors', 'https://www.turbosquid.com/Search/3D-Models/baker', 'https://www.turbosquid.com/Search/3D-Models/thomas-pheasant', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Emerald Mirror by Baker | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Baker, USADesigner: Thomas PheasantDesign Connected ID: 9036BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Beaubien Double Shade Wall Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Lambert-et-Fils', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/lambert-et-fils', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Beaubien Double Shade Wall Lamp by Lambert et Fils | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Lambert et Fils, CanadaDesigner: N/ADesign Connected ID: 9035BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Magnifier Lamp 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +3D Studio + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Formafantasma', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/formafantasma', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Magnifier Lamp by Formafantasma | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4- Autodesk 3ds ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Formafantasma, NetherlandsDesigner: N/ADesign Connected ID: 9032BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Projekt Pendant 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Tech-Lighting', 'Colored-glass', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/tech-lighting', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Projekt Pendant by Tech Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Tech Lighting, USADesigner: N/ADesign Connected ID: 9021BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Cercle et Trat Suspension Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'CVL', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/cvl', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Cercle et Trat Suspension Lamp by CVL | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX ADDITIONAL FILE FORMATS UPON REQUEST- Cinema4D R16 or above- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CVL, FranceDesigner: N/ADesign Connected ID: 8969BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Argento L Pendant Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Eichholtz', 'Glass', 'Brass', 'Painted-metal', 'Contemporary-design', 'Modern-luxury', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/modern-luxury', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Argento L Pendant Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8968BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Bower Floor Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'West-Elm', 'Bower-Studio-', 'Brass', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/west-elm', 'https://www.turbosquid.com/Search/3D-Models/bower-studio-', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Bower Floor Lamp by West Elm | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: West Elm, Designer: Bower Studio Design Connected ID: 8963BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Strike Pendant Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Current-Collection', 'Nash-Martinez', 'Brass', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/current-collection', 'https://www.turbosquid.com/Search/3D-Models/nash-martinez', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Strike Pendant Lamp by Current Collection | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Current Collection, USADesigner: Nash MartinezDesign Connected ID: 8962BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Mobil Wall Lamp 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Pholc', 'Monika-Mulder', 'Glass', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/pholc', 'https://www.turbosquid.com/Search/3D-Models/monika-mulder', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Mobil Wall Lamp by Pholc | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Pholc, SwedenDesigner: Monika MulderDesign Connected ID: 8957BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Calee Pendants model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'CVL', 'POOL-', 'Brass', 'Chrome', 'Copper', 'Gold', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/cvl', 'https://www.turbosquid.com/Search/3D-Models/pool-', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Calee Pendants by CVL | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CVL, FranceDesigner: POOL Design Connected ID: 8956BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Parma 160 Wall Light 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Astro-Lighting', 'Plastic', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/astro-lighting', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Parma 160 Wall Light by Astro Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Astro Lighting, United KingdomDesigner: N/ADesign Connected ID: 8954BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +TR Bulb Suspension Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Menu', 'Tim-Rundle', 'Glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/menu', 'https://www.turbosquid.com/Search/3D-Models/tim-rundle', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","TR Bulb Suspension Lamp by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Tim RundleDesign Connected ID: 8953BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Ring Wall Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'CTO-Lighting', 'Brass', 'Chrome', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/cto-lighting', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Ring Wall Lamp by CTO Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CTO Lighting, United KingdomDesigner: N/ADesign Connected ID: 8952BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Le Sfere 2 Wall Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Astep', 'Gino-Sarfatti', 'Colored-glass', 'Brass', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/astep', 'https://www.turbosquid.com/Search/3D-Models/gino-sarfatti', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Le Sfere 2 Wall Lamp by Astep | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Astep, DenmarkDesigner: Gino SarfattiDesign Connected ID: 8951BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Heron Floor Light 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Reading-lights', 'CTO-Lighting', 'Michaël-Verheyden', 'Brass', 'Natural-stone', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/reading-lights', 'https://www.turbosquid.com/Search/3D-Models/cto-lighting', 'https://www.turbosquid.com/Search/3D-Models/micha%c3%abl-verheyden', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Heron Floor Light by CTO Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CTO Lighting, United KingdomDesigner: Michaël VerheydenDesign Connected ID: 8947BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Yasmin Table Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Arteriors', 'Colored-glass', 'Brass', 'Natural-stone', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/arteriors', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Yasmin Table Lamp by Arteriors | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Arteriors, USADesigner: N/ADesign Connected ID: 8940BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Crescent Table Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Lee-Broom', 'Glass', 'Brass', 'Gold', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/lee-broom', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/gold', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Crescent Table Lamp by Lee Broom | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Design Connected native - Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4- Collada ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave PRODUCT DESCRIPTIONBrand: Lee Broom, United KingdomDesigner: Lee BroomDesign Connected ID: 8939BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Time Hourglasses,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'housewares', 'general decor', 'hourglass']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/hourglass']","['Clocks', 'Decorative-objects', 'Hay', 'Colored-glass', 'Glass', 'Contemporary-design', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/clocks', 'https://www.turbosquid.com/Search/3D-Models/decorative-objects', 'https://www.turbosquid.com/Search/3D-Models/hay', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Time Hourglasses by Hay | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Hay, DenmarkDesigner: N/ADesign Connected ID: 8934BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Setai Table Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Eichholtz', 'Colored-glass', 'Fabric', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Setai Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8931BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Opal Lampshades,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Ferm-Living', 'Colored-glass', 'Painted-metal', 'Scandinavian-design', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Kitchen', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/ferm-living', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Opal Lampshades by Ferm Living | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ferm Living, Designer: N/ADesign Connected ID: 8930BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Kizu Table Lamp Small,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'New-Works', 'Lars-Tornøe', 'Colored-glass', 'Ceramic-and-porcelain', 'Scandinavian-design', 'Contemporary-design', 'Minimalist-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/new-works', 'https://www.turbosquid.com/Search/3D-Models/lars-torn%c3%b8e', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/ceramic-and-porcelain', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Kizu Table Lamp Small by New Works | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: New Works, DenmarkDesigner: Lars TornøeDesign Connected ID: 8929BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Masina Table Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Bert-Frank', 'Colored-glass', 'Brass', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/bert-frank', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Masina Table Lamp by Bert Frank | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Bert Frank, United KingdomDesigner: N/ADesign Connected ID: 8927BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Academia Table Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Eichholtz', 'Fabric', 'Crystal', 'Contemporary-design', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/crystal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Academia Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8926BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +South Beach Table Lamp 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Eichholtz', 'Painted-metal', 'Contemporary-design', 'Sculptural-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/eichholtz', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/sculptural-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","South Beach Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8925BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Stasis Wall Light 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Bert-Frank', 'Brass', 'Copper', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/bert-frank', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Stasis Wall Light by Bert Frank | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Bert Frank, United KingdomDesigner: N/ADesign Connected ID: 8922BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Marco Table Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Mitchell-Gold-+-Bob-Williams', 'Plastic', 'Brass', 'Steel', 'Natural-stone', 'Mid-Century-Modern', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/mitchell-gold-%2b-bob-williams', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Marco Table Lamp by Mitchell Gold + Bob Williams | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Mitchell Gold + Bob Williams, USADesigner: N/ADesign Connected ID: 8919BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Joan Small Mirror 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'housewares', 'general decor', 'mirror', 'wall mirror']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/mirror', 'https://www.turbosquid.com/3d-model/wall-mirror']","['Mirrors', 'Alberta', 'Castello-Lagravinese', 'Glass', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/mirrors', 'https://www.turbosquid.com/Search/3D-Models/alberta', 'https://www.turbosquid.com/Search/3D-Models/castello-lagravinese', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Joan Small Mirror by Alberta | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Alberta, ItalyDesigner: Castello LagravineseDesign Connected ID: 8918BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Lanterne II Table,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Floor-lights', 'Table-lights', 'Christian-Liaigre', 'Paper', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/christian-liaigre', 'https://www.turbosquid.com/Search/3D-Models/paper', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Lanterne II Table by N/A | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: N/A, Designer: Christian LiaigreDesign Connected ID: 8916BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Eclipse Desk Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'desk lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/desk-lamp']","['Table-lights', 'Dutchbone', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/dutchbone', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Eclipse Desk Lamp by Dutchbone | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Dutchbone, NetherlandsDesigner: N/ADesign Connected ID: 8911BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Hollie Table Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Care-of-Bankeryd', 'Lyktan-Bankeryd', 'Plastic', 'Colored-glass', 'Glass', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/care-of-bankeryd', 'https://www.turbosquid.com/Search/3D-Models/lyktan-bankeryd', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Hollie Table Lamp by Care of Bankeryd | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Care of Bankeryd, SwedenDesigner: Lyktan BankerydDesign Connected ID: 8909BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Diana Table Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Delightfull', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/delightfull', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Diana Table Lamp by Delightfull | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Delightfull, PortugalDesigner: N/ADesign Connected ID: 8908BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Kaschkasch Vase 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'housewares', 'general decor', 'vase', 'modern vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase', 'https://www.turbosquid.com/3d-model/modern-vase']","['Vases', 'Ligne-Roset', '-Kaschkasch', 'Brass', 'Steel', 'Copper', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/vases', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/-kaschkasch', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/steel', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Kaschkasch Vase by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: KaschkaschDesign Connected ID: 8907BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Jolly Roger 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['Armchairs', 'Gufram', 'Fabio-Novembre', 'Plastic', 'Contemporary-design', 'Living', 'Outdoor']","['https://www.turbosquid.com/Search/3D-Models/armchairs', 'https://www.turbosquid.com/Search/3D-Models/gufram', 'https://www.turbosquid.com/Search/3D-Models/fabio-novembre', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/outdoor']","Jolly Roger by Gufram | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gufram, ItalyDesigner: Fabio NovembreDesign Connected ID: 8903BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Spilla Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Reading-lights', 'Ligne-Roset', 'Pascal-Mourgue', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/reading-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/pascal-mourgue', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Spilla Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Pascal MourgueDesign Connected ID: 8902BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Mayfair Coffee Table model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['Coffee-tables', 'Molteni-and-C', 'Rodolfo-Dordoni', 'Glass', 'Painted-metal', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/molteni-and-c', 'https://www.turbosquid.com/Search/3D-Models/rodolfo-dordoni', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Mayfair Coffee Table by Molteni & C | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Molteni & C, ItalyDesigner: Rodolfo DordoniDesign Connected ID: 8892BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Bridger Oval Side Table,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['Occasional-tables', 'Side-tables', 'Caste', 'Ty-Best', 'Solid-wood', 'Natural-stone', 'Painted-metal', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/side-tables', 'https://www.turbosquid.com/Search/3D-Models/caste', 'https://www.turbosquid.com/Search/3D-Models/ty-best', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Bridger Oval Side Table by Caste | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Caste, USADesigner: Ty BestDesign Connected ID: 8891BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Car Light Vase model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'housewares', 'general decor', 'vase']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/vase']","['Vases', 'Ligne-Roset', 'Nathalie-Dewez', 'Colored-glass', 'Contemporary-design', 'Dining', 'Kitchen', 'Living']","['https://www.turbosquid.com/Search/3D-Models/vases', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/nathalie-dewez', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living']","Car Light Vase by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Nathalie DewezDesign Connected ID: 8886BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Backyard office 3D model,Alona Smulska," +Free +", - All Extended Uses,2019-03-18," + + +OBJ 2018 + + + + +FBX 2018 + +","['3D Model', 'architecture', 'building']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/building']","['backyard', 'exterior', 'office', 'architecure', 'bakyardoffice']","['https://www.turbosquid.com/Search/3D-Models/backyard', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/architecure', 'https://www.turbosquid.com/Search/3D-Models/bakyardoffice']",This is a backyard office that could be a great piece of your exterior.Model: 3Ds MAXRender: V-Ray +3D Balancer Floor Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Northern-Lighting', 'Yuue-', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/northern-lighting', 'https://www.turbosquid.com/Search/3D-Models/yuue-', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Balancer Floor Lamp by Northern Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Northern Lighting, NorwayDesigner: Yuue Design Connected ID: 8885BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Cloche Table Lamp 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Hay', 'Lars-Beller-Fjetland', 'Brass', 'Copper', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/hay', 'https://www.turbosquid.com/Search/3D-Models/lars-beller-fjetland', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/copper', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Cloche Table Lamp by Hay | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Hay, DenmarkDesigner: Lars Beller FjetlandDesign Connected ID: 8884BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Nelson Night Clock model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'housewares', 'general decor', 'clock']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/clock']","['Clocks', 'Vitra', 'George-Nelson', 'Glass', 'Brass', 'Mid-Century-Modern', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/clocks', 'https://www.turbosquid.com/Search/3D-Models/vitra', 'https://www.turbosquid.com/Search/3D-Models/george-nelson', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Nelson Night Clock by Vitra | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Vitra, SwitzerlandDesigner: George NelsonDesign Connected ID: 8881BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Eiffel Wall Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'wall lighting', 'sconce']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/wall-lighting', 'https://www.turbosquid.com/3d-model/sconce']","['Wall-lights', 'Frama', '-Krøyer---Sætter---Lassen', 'Colored-glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/wall-lights', 'https://www.turbosquid.com/Search/3D-Models/frama', 'https://www.turbosquid.com/Search/3D-Models/-kr%c3%b8yer---s%c3%a6tter---lassen', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Eiffel Wall Lamp by Frama | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Frama, DenmarkDesigner: Krøyer - Sætter - LassenDesign Connected ID: 8880BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Pull Floor Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Muuto', 'Whatswhat-', 'Solid-wood', 'Painted-metal', 'Scandinavian-design', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/muuto', 'https://www.turbosquid.com/Search/3D-Models/whatswhat-', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Pull Floor Lamp by Muuto | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Muuto, DenmarkDesigner: Whatswhat Design Connected ID: 8865BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D JWDA Table Lamp,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Menu', 'Jonas-Wagell', 'Natural-stone', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/menu', 'https://www.turbosquid.com/Search/3D-Models/jonas-wagell', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","JWDA Table Lamp by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Jonas WagellDesign Connected ID: 8862BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Small Table D.555.1 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['Coffee-tables', 'Molteni-and-C', 'Gio-Ponti', 'Glass', 'Painted-metal', 'Mid-Century-Modern', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/molteni-and-c', 'https://www.turbosquid.com/Search/3D-Models/gio-ponti', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living']","Small Table D.555.1 by Molteni & C | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Molteni & C, ItalyDesigner: Gio PontiDesign Connected ID: 8859BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Fuwl Cage Table model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['Coffee-tables', 'Menu', 'Form-Us-With-Love-', 'Solid-wood', 'Natural-stone', 'Painted-metal', 'Scandinavian-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/menu', 'https://www.turbosquid.com/Search/3D-Models/form-us-with-love-', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Fuwl Cage Table by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Form Us With Love Design Connected ID: 8851BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Moon Lounge Table 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'table', 'end table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/end-table']","['Occasional-tables', 'Side-tables', 'Gubi', '-SPACE-Copenhagen', 'Solid-wood', 'Natural-stone', 'Scandinavian-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/side-tables', 'https://www.turbosquid.com/Search/3D-Models/gubi', 'https://www.turbosquid.com/Search/3D-Models/-space-copenhagen', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Moon Lounge Table by Gubi | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gubi, DenmarkDesigner: SPACE CopenhagenDesign Connected ID: 8836BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Eclisse Table Lamp 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Artemide', 'Vico-Magistretti', 'Painted-metal', 'Mid-Century-Modern', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/artemide', 'https://www.turbosquid.com/Search/3D-Models/vico-magistretti', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Eclisse Table Lamp by Artemide | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Artemide, ItalyDesigner: Vico MagistrettiDesign Connected ID: 8834BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Grace Trolley model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'kitchen cart']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/kitchen-cart']","['Occasional-tables', 'Trays', 'Schönbuch', 'Sebastian-Herkner', 'Plywood', 'Painted-metal', 'Contemporary-design', 'Dining', 'Kitchen', 'Living']","['https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/trays', 'https://www.turbosquid.com/Search/3D-Models/sch%c3%b6nbuch', 'https://www.turbosquid.com/Search/3D-Models/sebastian-herkner', 'https://www.turbosquid.com/Search/3D-Models/plywood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living']","Grace Trolley by Schönbuch | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Schönbuch, GermanyDesigner: Sebastian HerknerDesign Connected ID: 8825BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Tama Console,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'table', 'console table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/console-table']","['Console-tables', 'Gallotti-and-Radice', 'Carlo-Colombo', 'Solid-wood', 'Painted-metal', 'Contemporary-design', 'Modern-luxury', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/console-tables', 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice', 'https://www.turbosquid.com/Search/3D-Models/carlo-colombo', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/modern-luxury', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Tama Console by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Carlo ColomboDesign Connected ID: 8824BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Tama Crédence,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'sideboard']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/sideboard']","['Sideboards', 'Gallotti-and-Radice', 'Carlo-Colombo', 'Solid-wood', 'Painted-metal', 'Contemporary-design', 'Modern-luxury', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/sideboards', 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice', 'https://www.turbosquid.com/Search/3D-Models/carlo-colombo', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/modern-luxury', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Tama Crédence by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Carlo ColomboDesign Connected ID: 8823BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Roly-Poly Chair model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'furnishings', 'seating', 'chair', 'side chair', 'occasional chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/side-chair', 'https://www.turbosquid.com/3d-model/occasional-chair']","['Chairs', 'Driade', 'Faye-Toogood', 'Plastic', 'Contemporary-design', 'Sculptural-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/chairs', 'https://www.turbosquid.com/Search/3D-Models/driade', 'https://www.turbosquid.com/Search/3D-Models/faye-toogood', 'https://www.turbosquid.com/Search/3D-Models/plastic', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/sculptural-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Roly-Poly Chair by Driade | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Driade, ItalyDesigner: Faye ToogoodDesign Connected ID: 8816BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Calee Table Lamp 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'South-Hill-Home', 'Brass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/south-hill-home', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Calee Table Lamp by South Hill Home | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: South Hill Home, USADesigner: N/ADesign Connected ID: 8778BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Song Coffee Tables,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'table', 'coffee table']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/table', 'https://www.turbosquid.com/3d-model/coffee-table']","['Coffee-tables', 'Minotti', 'Rodolfo-Dordoni', 'Natural-stone', 'Wood-veneer', 'Contemporary-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/coffee-tables', 'https://www.turbosquid.com/Search/3D-Models/minotti', 'https://www.turbosquid.com/Search/3D-Models/rodolfo-dordoni', 'https://www.turbosquid.com/Search/3D-Models/natural-stone', 'https://www.turbosquid.com/Search/3D-Models/wood-veneer', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Song Coffee Tables by Minotti | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Minotti, ItalyDesigner: Rodolfo DordoniDesign Connected ID: 8776BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Neil Table Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Ligne-Roset', '-Ligne-Roset', 'Glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Office', 'Bathroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/-ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bathroom']","Neil Table Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Ligne RosetDesign Connected ID: 8772BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Melusine Table Lamp model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'table lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/table-lamp']","['Table-lights', 'Ligne-Roset', 'Peter-Maly', 'Solid-wood', 'Painted-metal', 'Contemporary-design', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/table-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/peter-maly', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Melusine Table Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Peter MalyDesign Connected ID: 8770BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Mategot Trolley,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'industrial', 'tools', 'cart']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/industrial', 'https://www.turbosquid.com/3d-model/tools', 'https://www.turbosquid.com/3d-model/cart-tool']","['Console-tables', 'Occasional-tables', 'Gubi', 'Mathieu-Mategot', 'Painted-metal', 'Scandinavian-design', 'Living']","['https://www.turbosquid.com/Search/3D-Models/console-tables', 'https://www.turbosquid.com/Search/3D-Models/occasional-tables', 'https://www.turbosquid.com/Search/3D-Models/gubi', 'https://www.turbosquid.com/Search/3D-Models/mathieu-mategot', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design', 'https://www.turbosquid.com/Search/3D-Models/living']","Mategot Trolley by Gubi | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gubi, DenmarkDesigner: Mathieu MategotDesign Connected ID: 8766BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Inciucio Pendant Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Gibas', 'Painted-metal', 'Contemporary-design', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/gibas', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Inciucio Pendant Lamp by Gibas | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gibas, ItalyDesigner: N/ADesign Connected ID: 8747BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D model Riki Trolley,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'kitchen cart']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/kitchen-cart']","['Trays', 'Gallotti-and-Radice', 'Pierangelo-Gallotti', 'Glass', 'Brass', 'Chrome', 'Mid-Century-Modern', 'Dining', 'Living']","['https://www.turbosquid.com/Search/3D-Models/trays', 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice', 'https://www.turbosquid.com/Search/3D-Models/pierangelo-gallotti', 'https://www.turbosquid.com/Search/3D-Models/glass', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/chrome', 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/living']","Riki Trolley by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Pierangelo GallottiDesign Connected ID: 8746BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Cancan Floor Light 3D,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'floor lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/floor-lamp']","['Floor-lights', 'Ligne-Roset', 'Patrick-Zulauf', 'Colored-glass', 'Painted-metal', 'Contemporary-design', 'Living', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/floor-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/patrick-zulauf', 'https://www.turbosquid.com/Search/3D-Models/colored-glass', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Cancan Floor Light by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Patrick ZulaufDesign Connected ID: 8743BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +3D Passe-Passe Coat Rack model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + + + + +Other + +","['3D Model', 'furnishings', 'rack', 'clothes rack', 'coat tree']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/rack', 'https://www.turbosquid.com/3d-model/clothes-rack', 'https://www.turbosquid.com/3d-model/coat-tree']","['Cloth-stands', 'Ligne-Roset', 'Philippe-Nigro', 'Solid-wood', 'Painted-wood', 'Contemporary-design', 'Living', 'Office', 'Bedroom']","['https://www.turbosquid.com/Search/3D-Models/cloth-stands', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/philippe-nigro', 'https://www.turbosquid.com/Search/3D-Models/solid-wood', 'https://www.turbosquid.com/Search/3D-Models/painted-wood', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/living', 'https://www.turbosquid.com/Search/3D-Models/office', 'https://www.turbosquid.com/Search/3D-Models/bedroom']","Passe-Passe Coat Rack by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Philippe NigroDesign Connected ID: 8698BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Destructuree Pendant Lamp 3D model,Designconnected," +Free +", - Editorial Uses Only,2019-03-18," + + +FBX + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'hanging lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/hanging-lamp']","['Pendant-lights', 'Ligne-Roset', 'Kazuhiro-Yamanaka', 'Painted-metal', 'Contemporary-design', 'Minimalist-design', 'Dining', 'Kitchen', 'Living']","['https://www.turbosquid.com/Search/3D-Models/pendant-lights', 'https://www.turbosquid.com/Search/3D-Models/ligne-roset', 'https://www.turbosquid.com/Search/3D-Models/kazuhiro-yamanaka', 'https://www.turbosquid.com/Search/3D-Models/painted-metal', 'https://www.turbosquid.com/Search/3D-Models/contemporary-design', 'https://www.turbosquid.com/Search/3D-Models/minimalist-design', 'https://www.turbosquid.com/Search/3D-Models/dining', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/living']","Destructuree Pendant Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Kazuhiro YamanakaDesign Connected ID: 8680BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!" +Sports bottle 3D model,bomi1337," +Free +", - All Extended Uses,2019-03-18," + + +FBX + + + + +Other + + + + +OBJ + + + + +STL + +","['3D Model', 'sports', 'exercise equipment', 'sports bottle']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/sports', 'https://www.turbosquid.com/3d-model/exercise-equipment', 'https://www.turbosquid.com/3d-model/sports-bottle']","['bottle', 'metal', 'sport', 'sports', 'drink', 'hydro', 'vacuum', 'stainless', 'steel']","['https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/metal', 'https://www.turbosquid.com/Search/3D-Models/sport', 'https://www.turbosquid.com/Search/3D-Models/sports', 'https://www.turbosquid.com/Search/3D-Models/drink', 'https://www.turbosquid.com/Search/3D-Models/hydro', 'https://www.turbosquid.com/Search/3D-Models/vacuum', 'https://www.turbosquid.com/Search/3D-Models/stainless', 'https://www.turbosquid.com/Search/3D-Models/steel']","***********************************************************************This is a metal sport bottle with plastic cap. (cap is unscrewable)Objects: - metal bottle - plastic capMultiple file formats : .fbx .obj .blend .3ds .x3d Native file: .blend***********************************************************************Please, rate the model. It will help a lot!***********************************************************************" +3D Lego_Bricks,anubhav462," +Free +", - Editorial Uses AllowedExtended Uses May Need Clearances,2019-03-17," + + +FBX + +","['3D Model', 'toys and games', 'toys', 'building toys', 'lego', 'lego brick']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/toys-and-games', 'https://www.turbosquid.com/3d-model/toys', 'https://www.turbosquid.com/3d-model/building-toys', 'https://www.turbosquid.com/3d-model/lego-toy', 'https://www.turbosquid.com/3d-model/lego-brick']","['Lego', 'Bricks']","['https://www.turbosquid.com/Search/3D-Models/lego', 'https://www.turbosquid.com/Search/3D-Models/bricks']",Lego Bricks Basic +3D kids chair model,rayson278," +Free +", - All Extended Uses,2019-03-17,,"['3D Model', 'furnishings', 'seating', 'chair', ""children's chair"", 'high chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/childrens-chair', 'https://www.turbosquid.com/3d-model/high-chair']","['table', 'and', 'chair']","['https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/and', 'https://www.turbosquid.com/Search/3D-Models/chair']",cinema 4d model of simple kids table and chair set +3D Antique Oil Lamp,DTG Amusements," +Free +", - All Extended Uses,2019-03-16," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + + + + +STL 2013 + + + + +Other PDF + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/oil-lamp']","['Lamp', 'oil', 'lamp']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/lamp']","A collection of antique oil lampsThis design is not animated. 111056 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL" +Diwali Oil Lamp model,DTG Amusements," +Free +", - All Extended Uses,2019-03-16," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +IGES 2013 + + + + +OBJ 2013 + + + + +Other 2013 + + + + +STL 2013 + + + + +Other PDF + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/oil-lamp']","['Lamp', 'Diwali', 'Oil', 'Lamp']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/diwali', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/lamp']","Diwali Oil LampThis design is not animated. 8005 quadrilateral polygons7187 triangular polygons23197 total triangular polygons after forced triangulationPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL, .STEP; .IGES" +3D model Antique Oil Lamp,DTG Amusements," +Free +", - All Extended Uses,2019-03-16," + + +3D Studio 2013 + + + + +AutoCAD drawing 2013 + + + + +DXF 2013 + + + + +FBX 2013 + + + + +OBJ 2013 + + + + +STL 2013 + + + + +Other PDF + +","['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/fixtures', 'https://www.turbosquid.com/3d-model/lighting', 'https://www.turbosquid.com/3d-model/lamp', 'https://www.turbosquid.com/3d-model/oil-lamp']","['Lamp', 'Oil', 'Lamp']","['https://www.turbosquid.com/Search/3D-Models/lamp', 'https://www.turbosquid.com/Search/3D-Models/oil', 'https://www.turbosquid.com/Search/3D-Models/lamp']","Antique Oil LampThis design is not animated. 47716 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL" +3D Casual Couple LowPoly Rigged (Free Sample) model,Denys Almaral," +Free +", - All Extended Uses,2019-03-16," + + +FBX 2014 + +","['3D Model', 'characters', 'people', 'man', 'cartoon man']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/man', 'https://www.turbosquid.com/3d-model/cartoon-man']","['people', 'rigged', 'character', 'lowpoly', 'style', 'woman', 'man', 'toon', 'human', 'casual', 'body', 'girl', 'low', 'poly', 'unity', 'realtime', 'cartoon', 'blond', 'blonde', 'sexy', 'cute', 'free']","['https://www.turbosquid.com/Search/3D-Models/people', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/style', 'https://www.turbosquid.com/Search/3D-Models/woman', 'https://www.turbosquid.com/Search/3D-Models/man', 'https://www.turbosquid.com/Search/3D-Models/toon', 'https://www.turbosquid.com/Search/3D-Models/human', 'https://www.turbosquid.com/Search/3D-Models/casual', 'https://www.turbosquid.com/Search/3D-Models/body', 'https://www.turbosquid.com/Search/3D-Models/girl', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/realtime', 'https://www.turbosquid.com/Search/3D-Models/cartoon', 'https://www.turbosquid.com/Search/3D-Models/blond', 'https://www.turbosquid.com/Search/3D-Models/blonde', 'https://www.turbosquid.com/Search/3D-Models/sexy', 'https://www.turbosquid.com/Search/3D-Models/cute', 'https://www.turbosquid.com/Search/3D-Models/free']","LowPoly Style Couple, casual man and woman. Created with 3ds max 2015, easy to export to any software that support FBX.ATTENTION: This FREE SAMPLE is part of a 20 characters bundle, see product ID: 1379814 Suitable for Low Poly concept designs, presentations, advertising animations, explaining videos, games and architectural visualizations.|| CONCEPT & DESIGN ||Casual humans male and blond female with Low Poly Art style, with relatively attractive body shape and neutral expression face. They are wearing a casual attire, with fresh colors. These cartoons are intended to represent common people.This character is an original creation from the author based on its own designs, knowledge and research. Any similarity with existing characters, or real persons, living or dead, is purely coincidental.|| SPECS ||Each model have around 850 polygons average. This model is not intended for mesh subdivision from its original concept but you can experiment for achieving new effects.Units system is: 1 unit = 1 cm.Characters are around 165cm to 185cm tall.The material is standard with a diffuse color. Suitable for lit or unlit rendering.Each file contains a single character with its skeleton without any lights or cameras. The intention is to be ready and clean for import elsewhere. || TEXTURES ||One unique texture small PNG of 256x256 pixels. Each polygon is mapped to a single texel color. Very easy to edit with pX Poly Paint scripted tool also included. || SETUP ||Each model is a single Editable Poly mesh rigged with Skin modifier and Biped system. When exporting as FBX use 'toExport' named selection set.Tested for Unity 5 and Unity 2018 humanoid rig compatibility. Poses in renders, and rendering scenes not included.|| CUSTOMIZATION ||Made to be customized. Each character preserve the Symmetry modifier and the Skin was applied without manual vertex edit, only envelop adjustments. So you can any time go down the stack and edit the mesh without hassle. Download and Enjoy!Rating and feedback is very appreciated! Any questions please contact via support." +3D model Simple Pouf,Desert Night," +Free +", - All Extended Uses,2019-03-16,,"['3D Model', 'furnishings', 'seating', 'chair', 'foot rest', 'ottoman']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/foot-rest', 'https://www.turbosquid.com/3d-model/ottoman']","['simple', 'pouf', 'chair', 'fabric', 'modern', '3d', 'model']","['https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/pouf', 'https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/fabric', 'https://www.turbosquid.com/Search/3D-Models/modern', 'https://www.turbosquid.com/Search/3D-Models/3d', 'https://www.turbosquid.com/Search/3D-Models/model']",Simple PoufDimensions: L 450 x W 450 x H 350 mmColors: Yellow / Red / Blue / GreenVersion: 3ds max 2014 / V-ray 3.4 + FBXPolys: 55.000Verts: 55.000I hope you like it. Thanks. +3D model Classic Water Fountain,Marc Mons," +Free +", - All Extended Uses,2019-03-15," + + +OBJ 2016 + + + + +FBX 2016 + +","['3D Model', 'architecture', 'site components', 'landscape architecture', 'fountain']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/architecture', 'https://www.turbosquid.com/3d-model/site-components', 'https://www.turbosquid.com/3d-model/landscape-architecture', 'https://www.turbosquid.com/3d-model/fountain']","['water', 'fountain', 'architecture', 'exterior', 'stream', 'structure', 'outdoor', 'city', 'town', 'garden', 'pool', 'building', 'waterfall', 'bush', 'flower', 'splash', 'park', 'free', 'freefountain', 'fbx']","['https://www.turbosquid.com/Search/3D-Models/water', 'https://www.turbosquid.com/Search/3D-Models/fountain', 'https://www.turbosquid.com/Search/3D-Models/architecture', 'https://www.turbosquid.com/Search/3D-Models/exterior', 'https://www.turbosquid.com/Search/3D-Models/stream', 'https://www.turbosquid.com/Search/3D-Models/structure', 'https://www.turbosquid.com/Search/3D-Models/outdoor', 'https://www.turbosquid.com/Search/3D-Models/city', 'https://www.turbosquid.com/Search/3D-Models/town', 'https://www.turbosquid.com/Search/3D-Models/garden', 'https://www.turbosquid.com/Search/3D-Models/pool', 'https://www.turbosquid.com/Search/3D-Models/building', 'https://www.turbosquid.com/Search/3D-Models/waterfall', 'https://www.turbosquid.com/Search/3D-Models/bush', 'https://www.turbosquid.com/Search/3D-Models/flower', 'https://www.turbosquid.com/Search/3D-Models/splash', 'https://www.turbosquid.com/Search/3D-Models/park', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/freefountain', 'https://www.turbosquid.com/Search/3D-Models/fbx']","Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support." +3D Kitchen Chef's Knife model,sepandj," +Free +", - All Extended Uses,2019-03-15," + + +OBJ + + + + +Other + + + + +FBX + + + + +OpenFlight + + + + +IGES + + + + +3D Studio + + + + +Collada + + + + +AutoCAD drawing + + + + +DXF + + + + +Targa + +","['3D Model', 'interior design', 'housewares', 'kitchenware', 'cooking utensil', 'kitchen knife', ""chef's knife""]","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/kitchenware', 'https://www.turbosquid.com/3d-model/cooking-utensil', 'https://www.turbosquid.com/3d-model/kitchen-knife', 'https://www.turbosquid.com/3d-model/chefs-knife']","['knife', 'kitchen', 'sharp', 'still', 'wood', 'brass', 'blade', 'weapon', 'chef', 'cook', 'cooking', 'cut', 'cutting', 'regular', 'simple', 'realistic', 'melee', 'fight', 'chop', 'chopping', 'house', 'kitchenware']","['https://www.turbosquid.com/Search/3D-Models/knife', 'https://www.turbosquid.com/Search/3D-Models/kitchen', 'https://www.turbosquid.com/Search/3D-Models/sharp', 'https://www.turbosquid.com/Search/3D-Models/still', 'https://www.turbosquid.com/Search/3D-Models/wood', 'https://www.turbosquid.com/Search/3D-Models/brass', 'https://www.turbosquid.com/Search/3D-Models/blade', 'https://www.turbosquid.com/Search/3D-Models/weapon', 'https://www.turbosquid.com/Search/3D-Models/chef', 'https://www.turbosquid.com/Search/3D-Models/cook', 'https://www.turbosquid.com/Search/3D-Models/cooking', 'https://www.turbosquid.com/Search/3D-Models/cut', 'https://www.turbosquid.com/Search/3D-Models/cutting', 'https://www.turbosquid.com/Search/3D-Models/regular', 'https://www.turbosquid.com/Search/3D-Models/simple', 'https://www.turbosquid.com/Search/3D-Models/realistic', 'https://www.turbosquid.com/Search/3D-Models/melee', 'https://www.turbosquid.com/Search/3D-Models/fight', 'https://www.turbosquid.com/Search/3D-Models/chop', 'https://www.turbosquid.com/Search/3D-Models/chopping', 'https://www.turbosquid.com/Search/3D-Models/house', 'https://www.turbosquid.com/Search/3D-Models/kitchenware']","It's a simple chef's knife with a wooden handle and brass pins, created originally in solidworks the exported and materialized in 3Ds MAX.- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**> **Please Rate and Comment What You Think.**" +3D dirty steam punk knight for unity,GAMEASS," +Free +", - All Extended Uses,2019-03-15,,"['3D Model', 'characters', 'people', 'military people', 'knight']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/people', 'https://www.turbosquid.com/3d-model/military-people', 'https://www.turbosquid.com/3d-model/knight-warrior']","['knight', 'unity', 'humanoid', 'rigged', 'character', 'soldier']","['https://www.turbosquid.com/Search/3D-Models/knight', 'https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/humanoid', 'https://www.turbosquid.com/Search/3D-Models/rigged', 'https://www.turbosquid.com/Search/3D-Models/character', 'https://www.turbosquid.com/Search/3D-Models/soldier']","humanoid rigged character for unity.this package contains 4 types of materialsblue, green, crusader, redeach materials have 3 texture maps(defuse, metalness smoothness, normal)all 4 types of knights are already prefabed anywayenjoy!" +3D Shotgun (Free) model,maskedmole," +Free +", - All Extended Uses,2019-03-15," + + +FBX + +","['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/weaponry', 'https://www.turbosquid.com/3d-model/weapons', 'https://www.turbosquid.com/3d-model/firearms', 'https://www.turbosquid.com/3d-model/shotgun']","['shotgun', 'free', 'firearm']","['https://www.turbosquid.com/Search/3D-Models/shotgun', 'https://www.turbosquid.com/Search/3D-Models/free', 'https://www.turbosquid.com/Search/3D-Models/firearm']","Free shotgun ready to use for your game, fully UV mapped. For an upgraded version of this with arms to hold the shotgun, and a revolver, consider checking out the Shotgun & Revolver pack on my profile." +quin the mantis for unity REMAKE 3D model,GAMEASS," +Free +", - All Extended Uses,2019-03-15,,"['3D Model', 'characters', 'mythological creatures', 'fantasy and fictional creatures', 'monster']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/character', 'https://www.turbosquid.com/3d-model/mythological-creatures', 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures', 'https://www.turbosquid.com/3d-model/monster']","['unity', 'RPG', 'monster', 'bug', 'creature', 'sci', 'fi', 'fantasy']","['https://www.turbosquid.com/Search/3D-Models/unity', 'https://www.turbosquid.com/Search/3D-Models/rpg', 'https://www.turbosquid.com/Search/3D-Models/monster', 'https://www.turbosquid.com/Search/3D-Models/bug', 'https://www.turbosquid.com/Search/3D-Models/creature', 'https://www.turbosquid.com/Search/3D-Models/sci', 'https://www.turbosquid.com/Search/3D-Models/fi', 'https://www.turbosquid.com/Search/3D-Models/fantasy']","'CREATURE FOR UNITY' REMAKED!QUIN the mantis REMAKE with 16 animations for unity game engine!!differences----------------------------------------------------------------retopologized: 15,504 to 6468 in trisweights fixednew texture types: 7 types of textures-------------------------------------------------------standardwoodlanddrylandmedieval ironconcretesci_fi mosquitobeachanimations-----------------------------------------------------------------idleidle_crouchidle_cleaningwalk_fwdwalk_fwd_on_swampwalk_bkwdwalk_RTwalk_LTattack_RTattack_LTattack_botheatthreatthreat_simplejumpdeath_blowedall animations are 120 -------------------------------------------------------------------------------" +3D Urn,Iridesium," +Free +", - Editorial Uses Only,2019-03-14," + + +FBX + + + + +OBJ + + + + +STL + + + + +Other + +","['3D Model', 'interior design', 'housewares', 'general decor', 'urn']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/interior-design', 'https://www.turbosquid.com/3d-model/housewares', 'https://www.turbosquid.com/3d-model/general-decor', 'https://www.turbosquid.com/3d-model/urn']","['urn', 'ashes', 'tomb', 'bottle', 'jar', 'ancient', 'ossuary', 'dust', 'vase', 'container', 'grave', 'sorrow', 'funeral', 'crematorium', 'cemetery', 'cremation', 'cremate', 'low', 'poly', 'game', 'ready', 'lowpoly']","['https://www.turbosquid.com/Search/3D-Models/urn', 'https://www.turbosquid.com/Search/3D-Models/ashes', 'https://www.turbosquid.com/Search/3D-Models/tomb', 'https://www.turbosquid.com/Search/3D-Models/bottle', 'https://www.turbosquid.com/Search/3D-Models/jar', 'https://www.turbosquid.com/Search/3D-Models/ancient', 'https://www.turbosquid.com/Search/3D-Models/ossuary', 'https://www.turbosquid.com/Search/3D-Models/dust', 'https://www.turbosquid.com/Search/3D-Models/vase', 'https://www.turbosquid.com/Search/3D-Models/container', 'https://www.turbosquid.com/Search/3D-Models/grave', 'https://www.turbosquid.com/Search/3D-Models/sorrow', 'https://www.turbosquid.com/Search/3D-Models/funeral', 'https://www.turbosquid.com/Search/3D-Models/crematorium', 'https://www.turbosquid.com/Search/3D-Models/cemetery', 'https://www.turbosquid.com/Search/3D-Models/cremation', 'https://www.turbosquid.com/Search/3D-Models/cremate', 'https://www.turbosquid.com/Search/3D-Models/low', 'https://www.turbosquid.com/Search/3D-Models/poly', 'https://www.turbosquid.com/Search/3D-Models/game', 'https://www.turbosquid.com/Search/3D-Models/ready', 'https://www.turbosquid.com/Search/3D-Models/lowpoly']","This is an older looking Medieval or Victorian style kitchen.This model is primarily metal. A concrete slab under the whole thing and a brick chimney are the only two exceptions. There is a metallic mask to separate the metal and the dielectric parts of the model in the material. The kitchen includes a large basin on the left to deep-fry or boil food in. The brick chimney channels the oil vapor upwards and out of the house(wouldn't want the oil fumes to make a fireball in the house). On the right end are several shelves that a fire can be built under to keep food warm or to bake breads and/or cakes in. The main part of the kitchen is a big surface which can be heated and then used to cook food on.The mesh is very clean and quite low resolution if you want to use it in a game.Although this model is pretty cool and will stand on its own in a scene, it does have a slight Medieval or Victorian style and works well with the other Victorian assets I have made. I will be uploading the full pack soon!The textures have been uploaded separately in a .zip from the rest of the 3D model files. They (the textures) come in only one size, 2K resolution. I made this model for usage in games or as a background detail for a big scene so the textures are not super hi-res.This model includes: Color map Normal map Displacement map Specular map Metallic maskThe separate maps were generated using Photoshop.If you like the model, rate it. I would really appreciate it!Thanks!" +Armchair - Fabric/Wood Materials 3D model,matredo," +Free +", - All Extended Uses,2019-03-14,,"['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/chair', 'https://www.turbosquid.com/3d-model/lounge-chair', 'https://www.turbosquid.com/3d-model/arm-chair']","['chair', 'armchair', 'furniture', 'interior', 'design']","['https://www.turbosquid.com/Search/3D-Models/chair', 'https://www.turbosquid.com/Search/3D-Models/armchair', 'https://www.turbosquid.com/Search/3D-Models/furniture', 'https://www.turbosquid.com/Search/3D-Models/interior', 'https://www.turbosquid.com/Search/3D-Models/design']","| MODEL DESCRIPTION |-This is a model of a modern design armchair.-This model is suitable for use in architectural scenes or game scenes-Dimension: 50cm x 58cm x 70cm (WxDxH) | TECHNICAL SPECIFICATION |-Real-world scale-Units used: Centimetres-Gamma used: 2.2-Total Polys: 2349-Total Verts: 1650-Model is composed in various objects linked togheter with 'parent-child relationship'-All objects of the model are named-All textures are named-All materials are named-All preview images are rendered with V-Ray | ARCHIVE CONTAINS |-.max file with scene fully configured for render with materials, lights and camera-.max file with only model objects-.fbx file with only model objects-.obj file with only model objects-Textures folder | ADDITIONAL NOTES |-If you like this model I would kindly ask you to rate it" +Low Poly Grass Pack 3D,Moi Loy," +Free +", - All Extended Uses,2019-03-14," + + +FBX + +","['3D Model', 'nature', 'plants', 'cartoon plant']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/nature', 'https://www.turbosquid.com/3d-model/plants', 'https://www.turbosquid.com/3d-model/cartoon-plant']","['lowpoly', 'grass']","['https://www.turbosquid.com/Search/3D-Models/lowpoly', 'https://www.turbosquid.com/Search/3D-Models/grass']","Pack Contains: 13 types of Grass(FBX),7 types of Bunch of Grass(FBX),Blend File." +Piano Bench model,Iridesium," +Free +", - All Extended Uses,2019-03-13," + + +FBX + + + + +OBJ + + + + +STL + + + + +Other + +","['3D Model', 'furnishings', 'seating', 'bench', 'wooden bench']","['https://www.turbosquid.com/Search/3d-models', 'https://www.turbosquid.com/3d-model/furnishings', 'https://www.turbosquid.com/3d-model/seating', 'https://www.turbosquid.com/3d-model/bench', 'https://www.turbosquid.com/3d-model/wooden-bench']","['Piano', 'bench', 'grand', 'seat', 'stool', 'desk', 'side', 'table', 'Yamaha', 'sitting']","['https://www.turbosquid.com/Search/3D-Models/piano', 'https://www.turbosquid.com/Search/3D-Models/bench', 'https://www.turbosquid.com/Search/3D-Models/grand', 'https://www.turbosquid.com/Search/3D-Models/seat', 'https://www.turbosquid.com/Search/3D-Models/stool', 'https://www.turbosquid.com/Search/3D-Models/desk', 'https://www.turbosquid.com/Search/3D-Models/side', 'https://www.turbosquid.com/Search/3D-Models/table', 'https://www.turbosquid.com/Search/3D-Models/yamaha', 'https://www.turbosquid.com/Search/3D-Models/sitting']","This is an older, worn, piano bench (or any kind of bench). This is an old, wooden piano bench. This model is made to go with the old Grand Piano model I have for sale. The bench is exclusively wooden and is a little worn.The mesh is very clean. And quite low resolution if you want to use it in a game.Although this model is pretty cool and will stand on its own in a scene, it does have a slight Medieval or Victorian style and works well with the other Victorian assets I have made. I will be uploading the full pack soon!The textures have been uploaded separately in a .zip from the rest of the 3D model files. They (the textures) come in only one size, 256x256 resolution. I made this model for usage in games or as a background detail for a big scene so the textures are not super hi-res.This model includes: Color map Normal map Displacement map Specular mapThe separate maps were generated using Photoshop.Thanks!" diff --git a/your-code/web_project.ipynb b/your-code/web_project.ipynb new file mode 100644 index 0000000..aaa6a5c --- /dev/null +++ b/your-code/web_project.ipynb @@ -0,0 +1,25647 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Proyecto web (Semana 3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para este proyecto nos fue solicitado que realizaramos dos tareas:\n", + "1. Hacer uso de un API para generar un dataset.\n", + "2. Aplicar web scraping para generar un dataset.\n", + "\n", + "Estas dos tareas deben resultar en los siguientes archivos:\n", + "1. Un archivo \".csv\" en el cual tengamos el dataset generado via API.\n", + "2. Un archivo \".csv\" en el cual tengamos el dataset generado via API, aplicando labores de limpieza y manipulación.\n", + "3. Un archivo \".csv\" en el cual tengamos el dataset generado via web scraping.\n", + "4. Un archivo \".csv\" en el cual tengamos el dataset generado via web scraping, aplicando labores de limpieza y manipulación." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Ideas para el proyecto." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Considerando que los datos son la materia prima para proyectos de analitica, decidí utilizar el API de un gran sitio (Kaggle) que contiene datasets sobre diferentes temas, la gran mayoria de manera pública.\n", + "\n", + "En el caso del web scraping decidí tomar una página que contiene un gran número de modelos en 3D, y obtener información acerca de cada uno de ellos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# API " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lo primero que realice para el uso del API, fue instalar un wrapper que ofrece el API de Kaggle." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "#import sys\n", + "#!{sys.executable} -m pip install mdutils kaggle " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Continue con una celda para realizar todos los imports que se vayan requiriendo a lo largo del proyecto." + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "import requests\n", + "from kaggle.api.kaggle_api_extended import KaggleApi\n", + "import time\n", + "import pandas as pd\n", + "import json\n", + "import operator\n", + "from bs4 import BeautifulSoup\n", + "import re" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "El wrapper del API de Kaggle realiza la autentificación con los siguientes comandos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "api = KaggleApi({\"username\":\"\",\"key\":\"\"})\n", + "api.authenticate()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En este momento estamos autorizados para utilizar el API a partir de todos los métodos que provee el wrapper. En teoría el API de kaggle es más fácil de usar desde un shell, y su documentación (https://github.com/Kaggle/kaggle-api) esta redactada para su uso en shell. Pero es completamente factible traducir todos sus comandos al metodo incluido en el wrapper. Algunos de los comandos disponibles se enlistan a continuación:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "| Comando | Parametros | Descripción |\n", + "|--------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n", + "| dataset_list() | sort_by: how to sort the result, see valid_dataset_sort_bys for options size: the size of the dataset, see valid_dataset_sizes for string options file_type: the format, see valid_dataset_file_types for string options license_name: string descriptor for license, see valid_dataset_license_names tag_ids: tag identifiers to filter the search search: a search term to use (default is empty string) user: username to filter the search to mine: boolean if True, group is changed to \"my\" to return personal page: the page to return (default is 1) | Comando para realizar búsqueda de datasets, los parámetros extra permiten ordenarlos, filtrar por tags, página que obtener, buscar datasets por usuario y otras caracteristicas. |\n", + "| dataset_view() | :param str owner_slug: Dataset owner (required) :param str dataset_slug: Dataset name (required) | Ver metadatos de un dataset. |\n", + "| dataset_metadata() | dataset: name dataset path: its obtain with the name of the dataset. | Ver metadatos de un dataset. |\n", + "| dataset_list_files() | dataset: the string identified of the dataset should be in format [owner]/[dataset-name] | Lista los archivos presentes en el dataset. |\n", + "| dataset_download_file() | dataset: the string identified of the dataset should be in format [owner]/[dataset-name] file_name: the dataset configuration file path: if defined, download to this location force: force the download if the file already exists (default False) quiet: suppress verbose output (default is True) | Descarga un archivo presente en un dataset. |\n", + "| dataset_download_files() | dataset: the string identified of the dataset should be in format [owner]/[dataset-name] path: the path to download the dataset to force: force the download if the file already exists (default False) quiet: suppress verbose output (default is True) unzip: if True, unzip files upon download (default is False) | Descacarga todos los archivos de un dataset. |\n", + "| download_file() | response: the response to download outfile: the output file to download to quiet: suppress verbose output (default is True) chunk_size: the size of the chunk to stream | También descarga un archivo. |" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Extraer data." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para mi proyecto me interesa obtener datasets que tengan relación palabras clave que yo seleccione, para esto construyo una lista con dichas palabras, en ella preferentemente hay que agregar palabras en inglés." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "intereses = ['currencies','currency','forex','finance','exchanges','tweets','news','fake news']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Continue realizando una búsqueda en la API con cada interes, decidí agregar una pausa entre cada solicitud a la API de un 1.5s." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "datasets_category = pd.DataFrame()\n", + "result_busqueda_list = []\n", + "categoria_list = []\n", + "\n", + "for interes in intereses:\n", + " time.sleep(1.5)\n", + " response = api.dataset_list(search=interes)\n", + " if len(response) != 0:\n", + " result_busqueda_list.extend(response)\n", + " categoria_list.extend(((interes+',')*len(response)).split(',')[:-1])\n", + " \n", + "datasets_category['Dataset'] = result_busqueda_list\n", + "datasets_category['Category'] = categoria_list" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "print('Se obtuvieron %i datasets en la busqueda sobre los interes seleccionados.' % len(datasets_category))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Revisamos si existen repeticiones en los resultados de busqueda." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "if len(set(datasets_category['Dataset'])) != len(datasets_category):\n", + " print('Existen datasets repetidos')\n", + "else:\n", + " print('No hay datasets repetidos')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para cada uno de los datasets encontrados en la búsqueda descargaremos sus metadatos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_datasets_list = []\n", + "for dataset in datasets_category['Dataset']:\n", + " time.sleep(1)\n", + " owner_name = str(dataset).split('/')[0]\n", + " name = str(dataset).split('/')[1]\n", + " metadata_datasets_list.append(api.datasets_view(owner_name,name))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_keys = ['id', 'ref', 'subtitle', 'tags', 'creatorName', 'creatorUrl',\n", + " 'totalBytes', 'url', 'lastUpdated', 'downloadCount', 'isPrivate',\n", + " 'isReviewed', 'isFeatured', 'licenseName', 'description', 'ownerName',\n", + " 'ownerRef', 'kernelCount', 'title', 'topicCount', 'viewCount', 'voteCount',\n", + " 'currentVersionNumber', 'files', 'versions', 'usabilityRating']" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_df = pd.DataFrame(metadata_datasets_list)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Guardamos el dataset sin limpiar" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "metadata_df.to_csv('dataset_api.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Selección de columnas" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Seleccioné las columnas que considero útiles." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "useful_key_metadata = ['title','subtitle','description','lastUpdated','ref','totalBytes','url','tags','downloadCount','licenseName',\n", + " 'kernelCount','versions','usabilityRating'] " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset = metadata_df[useful_key_metadata]\n", + "dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Identificando valores nulos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Buscamos datos que no sean un valor." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "missing_values = dataset.isna().sum()\n", + "missing_values" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "No se encontraron valores nulos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Manipulación del dataset" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Agregamos la columna de categoría de búsqueda con la que iniciamos." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "dataset['category'] = categoria_list" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Columna total bytes." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Modificamos el valor base de la columna de \"Bytes\" a \"Mega bytes\" " + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "byte_to_gb = lambda x: x/1000000\n", + "dataset[\"totalBytes\"] = dataset[\"totalBytes\"].apply(byte_to_gb)\n", + "dataset = dataset.rename(columns = {\"totalBytes\":\"totalGigaBytes\"})\n", + "dataset.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna Tags." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En la columna \"tags\" encontramos referencias a los grupos en los cuales se encuentra clasificado el dataset.\n", + "Esta columna varia de dataset a dataset. Sin embargo nos permite tener aún más grupos sobre los cuales realizar\n", + "busquedas con resultados que puedan ser de interes al usuario." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para esta columna realizaremos una extracción de todas las etiquetas y obtenemos la frecuencia de un set para evitar repeticiones,además de que presentaremos las tres más frecuentes al usuario de manera que este pueda usarlas en una búsqueda de intereses aún mayor." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "suggest_interest = [element['ref'] for tag in dataset['tags'] for element in tag]\n", + "set_suggest = set(suggest_interest)\n", + "dict_freq_suggest = {k:suggest_interest.count(k) for k in set_suggest}\n", + "sorted_tups = sorted(dict_freq_suggest.items(), key=operator.itemgetter(1))\n", + "print(sorted_tups[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Estas sugerencias se pueden interpretar como los hashtag que contiene el dataset, por tanto hay que ser cuidadosos al seleccionar nuevos intereses de la lista." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Así también tenemos valores vacios para la columna etiquetas, así que sustituiremos la columna tags\n", + "por \"number of tags\"" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "num_tags = lambda x: len(x)\n", + "dataset[\"tags\"] = dataset[\"tags\"].apply(num_tags)\n", + "dataset = dataset.rename(columns = {\"tags\":\"numberOfTags\"})\n", + "dataset.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna Versions" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "La columna versions contiene al menos una versión para el dataset, sin embargo en caso de que tenga más solo sería\n", + "de nuestro interes la última versión y su fecha." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset[\"versions\"][0][0]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "last_version = lambda x: str(x[0]['status']) + ' version: ' + str(x[0]['versionNumber']) + ', ' + str(x[0]['creationDate'])\n", + "dataset[\"versions\"] = dataset[\"versions\"].apply(last_version)\n", + "dataset = dataset.rename(columns = {\"versions\":\"lastVersion\"})\n", + "dataset.head(3)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Análisis." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finalmente por ahora, podemos utilizar cada una de las columnas disponibles para realizar algunos filtros con los cuales obtener información interesante." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Mejor score de utilidad." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.sort_values(['usabilityRating'],ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Mayor tamaño" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.sort_values(['totalGigaBytes'],ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### El más utilizado." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.sort_values(['kernelCount'],ascending=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Guardamos el dataset limpio." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "dataset.to_csv('dataset_api_clean.csv')" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Web scraping." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Algo que siempre me ha gustado son los modelos 3D, estos pueden ser útiles para empresas de videojuegos, para la industria de la animación y algunos otros sectores.\n", + "\n", + "La primera página que encontre con cientos de modelos de pago y gratuitos para descargar fue: https://www.turbosquid.com/\n", + "\n", + "Mi objetivo será hacer web scraping a su sitio y obtener información útil para cada uno de los modelos 3D diponibles." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Generé la clase que utilizaré para realizar el scraping tomando como base el trabajo en el lab de web scraping avanzado." + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": {}, + "outputs": [], + "source": [ + "class WebSpider:\n", + " \"\"\"\n", + " This is the constructor class to which you can pass a bunch of parameters. \n", + " These parameters are stored to the class instance variables so that the\n", + " class functions can access them later.\n", + " \n", + " url_pattern: the regex pattern of the web urls to scape\n", + " pages_to_scrape: how many pages to scrape\n", + " sleep_interval: the time interval in seconds to delay between requests. If <0, requests will not be delayed.\n", + " content_parser: a function reference that will extract the intended info from the scraped content.\n", + " \"\"\"\n", + " def __init__(self, url_pattern, pages_to_scrape=10, sleep_interval=-1, content_parser=None):\n", + " self.url_pattern = url_pattern\n", + " self.pages_to_scrape = pages_to_scrape\n", + " self.sleep_interval = sleep_interval\n", + " self.content_parser = content_parser\n", + " self.output = []\n", + " \"\"\"\n", + " Scrape the content of a single url.\n", + " \"\"\"\n", + " def scrape_url(self, url):\n", + " response = requests.get(url)\n", + " if str(response) != '':\n", + " print('Error en la respuesta del servidor',response)\n", + " elif str(response) == '':\n", + " print('Error en el limite de tiempo de respuesta del servidor')\n", + " elif str(response) == '':\n", + " print('Error demasiadas peticiones')\n", + " # I didn't find the SSL error but I add a 404 error catching.\n", + " elif str(response) == '':\n", + " print('No se encontro el contenido')\n", + " else:\n", + " result = self.content_parser(response.content)\n", + " self.output_results(result)\n", + " \n", + " \"\"\"\n", + " Export the scraped content. Right now it simply print out the results.\n", + " But in the future you can export the results into a text file or database.\n", + " \"\"\"\n", + " def output_results(self, r):\n", + " self.output.extend(r)\n", + " print('Se agregaron %i url a la lista' % (len(r)))\n", + " \"\"\"\n", + " After the class is instantiated, call this function to start the scraping jobs.\n", + " This function uses a FOR loop to call `scrape_url()` for each url to scrape.\n", + " \"\"\"\n", + " def kickstart(self):\n", + " for i in range(1, self.pages_to_scrape+1):\n", + " if self.sleep_interval > 0:\n", + " time.sleep(self.sleep_interval)\n", + " self.scrape_url(self.url_pattern % i)\n", + " else:\n", + " self.scrape_url(self.url_pattern % i)\n", + " return self.output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "La estructura del sítio resulto ser no tan mala, sin duda una más que utiliza los div de manera impulsiva pero encontramos el url del modelo en los \"div\" de clase \"thumbnail thumbnail-md\".\n", + "\n", + "La estructura para el paginado es la siguiente:\n", + "\n", + "\"https://www.turbosquid.com/Search/3D-Models?page_num=2&sort_column=a5&sort_order=asc\"\n", + "\n", + "Ya que he utilizado sus herramientas de filtrado para ordenar de menor a mayor costo, y tener los modelos gratuitos al inicio.\n" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n" + ] + }, + { + "data": { + "text/plain": [ + "[
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"helmet
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"unity
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"atom
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"stool
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"indoors
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"man
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"blue
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"architecture
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"es
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"office
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"table
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"chair
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"plate
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"signal
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"kitchen
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"litmus
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"jack
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"thrones
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"fantasy
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"thermometer
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"plant
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"model
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"simple
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"globe
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"wooden
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"dragon
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"ka-bar
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"cyberpunk
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"photorealistic
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"photorealistic
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"building
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"modern
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"comics
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"glass
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"dungeon
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"food
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"dmon
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"turkish
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"motorola
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"ak
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"fence
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"clarinet
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"simple
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"seat
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"old
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"playstation
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"school
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
,\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + "
\"3D
\n", + "
]" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# Hacemos una prueba para la página 0\n", + "response = requests.get('https://www.turbosquid.com/Search/3D-Models?sort_column=a5&sort_order=asc')\n", + "print(response)\n", + "content = response.content\n", + "soup_prueba = BeautifulSoup(content,'html')\n", + "divs_modelos = soup_prueba.find_all('div',{'class':'thumbnail thumbnail-md'})\n", + "divs_modelos" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "# Para obtener el url del modelo necesitamos llegar a:\n", + "divs_modelos[0].select('a')[0]['href']" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Aplicando esto a toda la página de prueba:" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": { + "scrolled": true + }, + "outputs": [], + "source": [ + "urls_modelos = [div.select('a')[0]['href'] for div in divs_modelos]" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print('Tenemos %i modelos por página' % len(urls_modelos))" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "print('Dentro de la página hay %i modelos' % (100*7668) )" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Por lo tanto la función para el scraping de las url de los modelos queda de la siguiente forma:" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": {}, + "outputs": [], + "source": [ + "def web_parser(content):\n", + " soup_prueba = BeautifulSoup(content,'html')\n", + " divs_modelos = soup_prueba.find_all('div',{'class':'thumbnail thumbnail-md'})\n", + " urls_modelos = [div.select('a')[0]['href'] for div in divs_modelos]\n", + " return urls_modelos" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n", + "Se agregaron 100 url a la lista\n" + ] + } + ], + "source": [ + "# 3D models\n", + "# https://www.turbosquid.com/Search/3D-Models?sort_column=a5&sort_order=asc\n", + "URL_PATTERN = 'https://www.turbosquid.com/Search/3D-Models?page_num=%i&sort_column=a5&sort_order=asc' # regex pattern for the urls to scrape\n", + "PAGES_TO_SCRAPE = 10 # how many webpages to scrapge\n", + "SLEEP_INTERVAL = 1\n", + "\n", + "# Instantiate the IronhackSpider class\n", + "project_spider = WebSpider(URL_PATTERN,PAGES_TO_SCRAPE,SLEEP_INTERVAL, content_parser = web_parser)\n", + "\n", + "# Start scraping jobs\n", + "urls_modelos_pages = project_spider.kickstart()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Un siguiente paso es obtener información sobre cada uno de los modelos entrando a la url obtenida y realizar scraping de nuevo, en este caso nos interesa obtener la siguiente información:\n", + "\n", + "1. Nombre del modelo, div class productTitle\n", + "2. Dueño del modelo, div class productArtist\n", + "3. Precio del modelo, div class priceSection price\n", + "4. Licencia de uso, div class LicenseUses\n", + "5. Fecha de publicación\n", + "6. Formatos incluidos, tabla clase exchange\n", + "7. Categorias agregadas al modelo, accediendo al div class categorySection\n", + "8. Tags agragados al modelo, accediendo al div class tagSection\n", + "9. Descripción del modelo, accediendo al div class descriptionSection\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Definimos una nueva clase de Spider." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": {}, + "outputs": [], + "source": [ + "class ModelsSpider:\n", + " \"\"\"\n", + " This is the constructor class to which you can pass a bunch of parameters. \n", + " These parameters are stored to the class instance variables so that the\n", + " class functions can access them later.\n", + " \n", + " url_pattern: the regex pattern of the web urls to scape\n", + " pages_to_scrape: how many pages to scrape\n", + " sleep_interval: the time interval in seconds to delay between requests. If <0, requests will not be delayed.\n", + " content_parser: a function reference that will extract the intended info from the scraped content.\n", + " \"\"\"\n", + " def __init__(self, urls_pages, sleep_interval=-1, content_parser=None):\n", + " self.urls_pages = urls_pages\n", + " self.sleep_interval = sleep_interval\n", + " self.content_parser = content_parser\n", + " self.output = []\n", + " \"\"\"\n", + " Scrape the content of a single url.\n", + " \"\"\"\n", + " def scrape_url(self, url):\n", + " response = requests.get(url)\n", + " if str(response) != '':\n", + " print('Error en la respuesta del servidor',response)\n", + " elif str(response) == '':\n", + " print('Error en el limite de tiempo de respuesta del servidor')\n", + " elif str(response) == '':\n", + " print('Error demasiadas peticiones')\n", + " # I didn't find the SSL error but I add a 404 error catching.\n", + " elif str(response) == '':\n", + " print('No se encontro el contenido')\n", + " else:\n", + " result = self.content_parser(response.content)\n", + " self.output_results(result)\n", + " \n", + " \"\"\"\n", + " Export the scraped content. Right now it simply print out the results.\n", + " But in the future you can export the results into a text file or database.\n", + " \"\"\"\n", + " def output_results(self, r):\n", + " self.output.append(r)\n", + " \"\"\"\n", + " After the class is instantiated, call this function to start the scraping jobs.\n", + " This function uses a FOR loop to call `scrape_url()` for each url to scrape.\n", + " \"\"\"\n", + " def kickstart(self):\n", + " for i in self.urls_pages:\n", + " print('Scrapped')\n", + " if self.sleep_interval > 0:\n", + " time.sleep(self.sleep_interval)\n", + " self.scrape_url(i)\n", + " else:\n", + " self.scrape_url(i)\n", + " return self.output" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Definimos un nuevo parser para extraer los datos de cada página." + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "def model_parser(content):\n", + " check_content = lambda x: True if x != [] else False\n", + " soup_prueba = BeautifulSoup(content,'html')\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'productTitle'})[0].select('h1')[0]['content'])\n", + " nombre = soup_prueba.find_all('div',{'class':'productTitle'})[0].select('h1')[0]['content']\n", + " except:\n", + " nombre = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'productArtist'})[0].text[3:])\n", + " dueño = soup_prueba.find_all('div',{'class':'productArtist'})[0].text[3:]\n", + " except:\n", + " dueño = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'priceSection price'})[0].text)\n", + " precio = soup_prueba.find_all('div',{'class':'priceSection price'})[0].text\n", + " except:\n", + " precio = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'LicenseUses'})[0].text)\n", + " licencia = soup_prueba.find_all('div',{'class':'LicenseUses'})[0].text\n", + " except:\n", + " licencia = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('table',{'class':'SpecificationTable'})[0].select('time')[0]['datetime'])\n", + " fecha_pub = soup_prueba.find_all('table',{'class':'SpecificationTable'})[0].select('time')[0]['datetime']\n", + " except:\n", + " fecha_pub = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('table',{'class':'exchange'})[0].text)\n", + " formatos = soup_prueba.find_all('table',{'class':'exchange'})[0].text\n", + " except:\n", + " formatos = ''\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'FeatureGraphCategories'})[0].select('a'))\n", + " categorias = soup_prueba.find_all('div',{'class':'FeatureGraphCategories'})[0].select('a')\n", + " links_categorias = [categoria['href'] for categoria in categorias]\n", + " list_categorias = [categoria.text for categoria in categorias]\n", + " except:\n", + " links_categorias = []\n", + " list_categorias = []\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'tagSection'})[0].select('a'))\n", + " tags = soup_prueba.find_all('div',{'class':'tagSection'})[0].select('a')\n", + " links_tags = [tag['href'] for tag in tags]\n", + " list_tags = [tag.text for tag in tags]\n", + " except:\n", + " links_tags = []\n", + " list_tags = []\n", + " try: \n", + " check_content(soup_prueba.find_all('div',{'class':'descriptionSection'})[0].select('.descriptionContentParagraph')[0].text)\n", + " descripcion = soup_prueba.find_all('div',{'class':'descriptionSection'})[0].select('.descriptionContentParagraph')[0].text\n", + " except:\n", + " descripcion = ''\n", + " row_dataset = [nombre,dueño,precio,licencia,fecha_pub,formatos,list_categorias,links_categorias,list_tags,links_tags,descripcion]\n", + " return row_dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n", + "Scrapped\n" + ] + } + ], + "source": [ + "SLEEP_INTERVAL = 0.5\n", + "\n", + "# Instantiate the IronhackSpider class\n", + "project_spider_models = ModelsSpider(urls_modelos_pages[:500],SLEEP_INTERVAL, content_parser = model_parser)\n", + "\n", + "# Start scraping jobs\n", + "rows_dataset = project_spider_models.kickstart()" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[['3D Free Base Male Anatomy',\n", + " 'niyoo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-21',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'characters', 'people', 'man'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/man'],\n", + " ['characters',\n", + " 'man',\n", + " 'male',\n", + " 'human',\n", + " 'zbrush',\n", + " 'ztl',\n", + " 'obj',\n", + " 'head',\n", + " 'face',\n", + " 'body',\n", + " 'torso',\n", + " 'people',\n", + " 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/characters',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zbrush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ztl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj',\n", + " 'https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/face',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/torso',\n", + " 'https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " 'Free model. You can use for base anatomy/proportion. ztl and obj files included.'],\n", + " ['3D model Minecraft Grass Block',\n", + " 'Render at Night',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-07-21',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'nature', 'plants', 'grasses', 'ornamental grass'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/plants',\n", + " 'https://www.turbosquid.com/3d-model/grasses',\n", + " 'https://www.turbosquid.com/3d-model/ornamental-grass'],\n", + " ['minecraft', 'grass', 'block', 'cube'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/minecraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/block',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cube'],\n", + " ''],\n", + " ['Diving Helmet 3D model',\n", + " 'NotJerd',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'sports', 'outdoor sports', 'scuba', 'diving helmet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/sports',\n", + " 'https://www.turbosquid.com/3d-model/outdoor-sports',\n", + " 'https://www.turbosquid.com/3d-model/scuba',\n", + " 'https://www.turbosquid.com/3d-model/diving-helmet'],\n", + " ['Helmet', 'Undersea'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/helmet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/undersea'],\n", + " 'This is a helmet I made.CC0 License'],\n", + " ['3D Dominoes',\n", + " 'Render at Night',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'toys and games', 'games', 'dominos'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/dominos'],\n", + " ['domino', 'dominoes', 'black', 'white', 'tile'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/domino',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dominoes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/black',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tile'],\n", + " 'Models of 5 different dominoes.Polygons/Vertices (5 dominoes combined):- Low Poly: 5,324/5,398- High Poly: 85,696/85,706Available File variants:- BLEND (Modifiers not applied + Modifiers applied); Modifiers include Subdivison- OBJ (Low Poly + High Poly)*All photos were rendered in Blender with Cycles Render engine.'],\n", + " ['Prototyping Polygons 3D model',\n", + " 'HyperChromatica',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '\\n\\n\\nFBX 1.0\\n\\n',\n", + " ['3D Model', 'symbols'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/symbols-and-shapes'],\n", + " ['primitives', 'prototyping', 'blender', 'unity', 'geometric', 'simple'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/primitives',\n", + " 'https://www.turbosquid.com/Search/3D-Models/prototyping',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/geometric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple'],\n", + " \"I was starting work on a new game in unity and needed placeholder objects, and found that there were no free packages on the unity asset store. After making some myself I decided to upload them to the Unity Asset Store, but as it turns out, there is a clause explicitly banning 3d primitives for prototyping . So I'm sharing them here.\"],\n", + " ['3D counter and bar stools',\n", + " 'ESalem',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'cupboard', 'showcase'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/cupboard',\n", + " 'https://www.turbosquid.com/3d-model/showcase'],\n", + " ['counter',\n", + " 'and',\n", + " 'bar',\n", + " 'stools',\n", + " 'Are',\n", + " 'same',\n", + " 'specifications',\n", + " 'as',\n", + " 'the',\n", + " 'real',\n", + " 'Used',\n", + " 'in',\n", + " 'exhibitions',\n", + " 'The',\n", + " 'component',\n", + " 'of',\n", + " 'octanorm',\n", + " 'system',\n", + " 'The',\n", + " 'wooden',\n", + " 'materials'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/counter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stools',\n", + " 'https://www.turbosquid.com/Search/3D-Models/are',\n", + " 'https://www.turbosquid.com/Search/3D-Models/same',\n", + " 'https://www.turbosquid.com/Search/3D-Models/specifications',\n", + " 'https://www.turbosquid.com/Search/3D-Models/as',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/real',\n", + " 'https://www.turbosquid.com/Search/3D-Models/used',\n", + " 'https://www.turbosquid.com/Search/3D-Models/in',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exhibitions',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/component',\n", + " 'https://www.turbosquid.com/Search/3D-Models/of',\n", + " 'https://www.turbosquid.com/Search/3D-Models/octanorm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/system',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/materials'],\n", + " 'counter and bar stools Are the same specifications as the real materials Used in exhibitionsThe component of octanorm systemThe wooden materials are decorated in the same style as the real exhibits'],\n", + " ['3D model Cabin Shop',\n", + " 'MarkoffIN',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'commercial building',\n", + " 'restaurant',\n", + " 'coffee shop'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/commercial-building',\n", + " 'https://www.turbosquid.com/3d-model/restaurant-building',\n", + " 'https://www.turbosquid.com/3d-model/coffee-shop'],\n", + " ['House', 'shop', 'store', 'stall', 'depot', 'trade', 'cabin.'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/store',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/depot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cabin.'],\n", + " 'Small low poly shop cabin.'],\n", + " ['3D Viper sniper rifle',\n", + " 'Young_Wizard',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sniper rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/sniper-rifle'],\n", + " ['weapon',\n", + " 'sci-fi',\n", + " 'low-poly',\n", + " 'game-ready',\n", + " 'sniper-rifle',\n", + " 'mass-effect'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sci-fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game-ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sniper-rifle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mass-effect'],\n", + " 'Game ready model, low poly can used as a game object or props object, all texture have 2 sets 4096x4096 and 2048x2048 ( normal, basecolor, metallic, roughness, AO) And same texture sets for unity ( normal, basecolor, metallic with roughness alpha, AO) Good work with unreal and unity. In .blend file 2.8 version all texture pack into this file and all texture set up for scene All texture pbr I model that model from concept of mass effect'],\n", + " ['Atom model',\n", + " 'Abdo Ashraf',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-20',\n", + " '',\n", + " ['3D Model', 'science', 'chemistry', 'atom'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/chemistry',\n", + " 'https://www.turbosquid.com/3d-model/atom'],\n", + " ['atom',\n", + " 'science',\n", + " 'chemistry',\n", + " 'chemical',\n", + " 'scientific',\n", + " 'nuclear',\n", + " 'radiation',\n", + " 'molecule',\n", + " 'atomic',\n", + " 'electron',\n", + " 'nucleus',\n", + " 'proton',\n", + " 'neutron',\n", + " 'models',\n", + " 'various',\n", + " 'orbit',\n", + " 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/atom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chemistry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chemical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scientific',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nuclear',\n", + " 'https://www.turbosquid.com/Search/3D-Models/radiation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/molecule',\n", + " 'https://www.turbosquid.com/Search/3D-Models/atomic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nucleus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/proton',\n", + " 'https://www.turbosquid.com/Search/3D-Models/neutron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/models',\n", + " 'https://www.turbosquid.com/Search/3D-Models/various',\n", + " 'https://www.turbosquid.com/Search/3D-Models/orbit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " '3D model for the atom. The whole project was made in Blender 3D. The renders and wireframe views in the photos of this product are with no Subdivision .. only smooth shading The Project has these formats: blend, fbx, obj, mtl'],\n", + " ['3D Fan',\n", + " 'Akumax Maxime',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'fan', 'box fan'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/fan',\n", + " 'https://www.turbosquid.com/3d-model/box-fan'],\n", + " ['Fan', 'ventilateur'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ventilateur'],\n", + " 'Vintage fan'],\n", + " ['Pouf Stool 3D model',\n", + " 'folkvangr',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '',\n", + " [],\n", + " [],\n", + " ['leather', 'furniture', 'seat', 'decor', 'stool', 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/leather',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " 'This model was created for an art challenge and employment program.Includes textures, PBR materials, HDRI lighting.Textures are from: texturehavenHDRI: hdrihaven'],\n", + " ['Indoor test 3D model',\n", + " 'folkvangr',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '',\n", + " [],\n", + " [],\n", + " ['indoors',\n", + " 'room',\n", + " 'furniture',\n", + " 'seat',\n", + " 'wood',\n", + " 'chair',\n", + " 'minimalist',\n", + " 'comfort',\n", + " 'contemporary',\n", + " 'rig',\n", + " 'architectural',\n", + " 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/indoors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist',\n", + " 'https://www.turbosquid.com/Search/3D-Models/comfort',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rig',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architectural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " 'Indoors test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects and a rigged/animated character.Textures are from: texturehavenHDRI: hdrihaven'],\n", + " ['3D model Apartment basic floor plan',\n", + " 'folkvangr',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '',\n", + " [],\n", + " [],\n", + " ['flat',\n", + " 'apartment',\n", + " 'household',\n", + " 'building',\n", + " 'kitchen',\n", + " 'bathroom',\n", + " 'bedroom',\n", + " 'living-room',\n", + " 'floor',\n", + " 'window'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/flat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apartment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/household',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bathroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living-room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/window'],\n", + " 'This is a simple architecture test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects, unique glass material.Textures are from: texturehavenHDRI: hdrihaven'],\n", + " ['3D Coffee Cup',\n", + " 'OemThr',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup'],\n", + " ['coffee',\n", + " 'dinner',\n", + " 'breakfast',\n", + " 'cup',\n", + " 'plate',\n", + " 'porcelain',\n", + " 'bavaria',\n", + " 'tea',\n", + " 'home',\n", + " 'furniture',\n", + " 'furnishing',\n", + " 'pot',\n", + " 'ceramic',\n", + " 'milk'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dinner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/breakfast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/porcelain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bavaria',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furnishing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ceramic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/milk'],\n", + " '- Ceramic coffee cup with plate -This model consists of a high-detailed ceramic coffee cup with plate.Blender zip (.blend):- Version v2.80.74- 1 complete scene- Cycles render versionObj zip:- Object with simple materials- Subdivision (exported at Level 3)Collada zip:- Object with simple materials- No subdivision (exported at Level 0)Fbx zip:- Object with simple materials- Subdivision (exported at Level 3)'],\n", + " ['Man HeadSculpt 3D model',\n", + " 'Vertici',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '',\n", + " [],\n", + " [],\n", + " ['Head', 'man', 'male', 'human'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human'],\n", + " 'Just a sculpting/texturing practice I did.'],\n", + " ['blue low poly car model',\n", + " 'Andres_R26',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-19',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " [],\n", + " [],\n", + " ['low', 'poly', 'car', 'blue'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blue'],\n", + " 'free 3d obj and Maya please give me. feedback, was made with a lot of love'],\n", + " ['Bath house architecture test 3D model',\n", + " 'folkvangr',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-18',\n", + " '',\n", + " [],\n", + " [],\n", + " ['column',\n", + " 'architecture',\n", + " 'marble',\n", + " 'bedrock',\n", + " 'roman',\n", + " 'bath',\n", + " 'classic',\n", + " 'architectural',\n", + " 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/column',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marble',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedrock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/roman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bath',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architectural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " 'This is a simple architecture test scene made with Blender 2.8.It comes with PBR textures, HDRI lighting, low-poly objects, physics affected grass and fluid simulation.Textures are from: texturehavenHDRI: hdrihaven'],\n", + " ['Motorola Moto G7 Plus Blue And Red 3D model',\n", + " 'ES_3D',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-07-18',\n", + " '\\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n\\nOBJ 2011\\n\\n\\n\\n\\nVRML 2011\\n\\n',\n", + " ['3D Model', 'technology', 'phone', 'cellphone', 'smartphone'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/phone',\n", + " 'https://www.turbosquid.com/3d-model/cellphone',\n", + " 'https://www.turbosquid.com/3d-model/smartphone'],\n", + " ['3d',\n", + " 'model',\n", + " '3ds',\n", + " 'max',\n", + " 'Motorola',\n", + " 'Moto',\n", + " 'G7',\n", + " 'Plus',\n", + " 'Blue',\n", + " 'And',\n", + " 'Red',\n", + " 'electronic',\n", + " 'phone',\n", + " 'cellular',\n", + " 'computer',\n", + " 'pda',\n", + " 'andriod',\n", + " 'best',\n", + " 'top',\n", + " 'rated',\n", + " 'vray',\n", + " 'hdr',\n", + " 'studio',\n", + " 'download',\n", + " 'ES_3D'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/motorola',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moto',\n", + " 'https://www.turbosquid.com/Search/3D-Models/g7',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/red',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/phone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cellular',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pda',\n", + " 'https://www.turbosquid.com/Search/3D-Models/andriod',\n", + " 'https://www.turbosquid.com/Search/3D-Models/best',\n", + " 'https://www.turbosquid.com/Search/3D-Models/top',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rated',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hdr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/studio',\n", + " 'https://www.turbosquid.com/Search/3D-Models/download',\n", + " 'https://www.turbosquid.com/Search/3D-Models/es_3d'],\n", + " 'Detailed High definition model Xiaomi Redmi 7A Matte Gold.The main format is 3ds max 2011.max, also available in many formats.And click on my username ES_3D And See More Quality Models And Collections .Available in the following file formats:- 3ds Max with mental ray materials (.max)- 3ds Max with V-Ray materials (.max)- 3ds Max with Scanline materials (.max)- 3D Studio (.3ds)- FBX (.fbx)- Geometry: 3ds Max version (For Each)- In formats 3ds Max 2011 , 3ds , OBJ, FBX , VMRL , Mental ray, Default Scanline Renderer, - model exported to standard materials (textures), not contain V-Ray shaders.In these formats, shaders need to be edited for the new studio for the final rendering.- High quality textures,and high resolution renders.- fbx formats contains medium high-poly.- 3ds and obj format comes from low poly.- Every part of the model is named properly- Model is placed to 0,0,0 scene coordinates.- 3ds Max 2011 and all higher versions.- all textures included separately for all formats into each zipped folder.- Other formats may vary slightly depending on your software.- You can make the poly count higher by the MeshSmooth and TurboSmooth level.- Includes V-Ray materials and textures only in 3ds Max format.- A file without V-Ray shader is included with standard materials.- The .3ds and .obj formats are geometry with texture mapping coordinates. No materials attached.- Textures format JPEG.- No object missing,- 3ds Max files included Standard materials and V-Ray materials.- This 3d model objects have the correct names and stripped the texture paths.- NOTE: V-Ray is required for the V-Ray 3ds Max scene and Studio setup is not included.- I hope you will like all my products. Thanks for buying.'],\n", + " ['3D Lighting',\n", + " 'w1050263',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-18',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'home spotlight'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/spotlight-home'],\n", + " ['#lighting', '#light', 'bulb', '#firelight'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23light',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bulb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23firelight'],\n", + " ''],\n", + " ['office chair 3D',\n", + " 'Esraa abdelsalam2711',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-17',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'furnishings',\n", + " 'seating',\n", + " 'chair',\n", + " 'office chair',\n", + " 'conference room chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/office-chair',\n", + " 'https://www.turbosquid.com/3d-model/conference-room-chair'],\n", + " ['#chair',\n", + " '#office',\n", + " '#modern',\n", + " '#3dsmax',\n", + " '#3dmodeling',\n", + " '#blue',\n", + " '#smooth',\n", + " '#lowvertices',\n", + " '#render',\n", + " '#vray',\n", + " '#vraymtl',\n", + " '#light'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%233dsmax',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%233dmodeling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23blue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23smooth',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23lowvertices',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23render',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23vraymtl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23light'],\n", + " '**office chair** with vray material ready to put in scene , with vray materials ready to render in the scene and with vray light polygons almost equal 344vertices almost equal 286'],\n", + " ['3D model Free garden urn planter',\n", + " 'wave design',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-17',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'planter'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/planter'],\n", + " ['Urn',\n", + " 'Planter',\n", + " 'Vase',\n", + " 'Garden',\n", + " 'pot',\n", + " 'decor',\n", + " 'Decoration',\n", + " 'plant',\n", + " 'Classic',\n", + " 'Marble',\n", + " 'concrete',\n", + " 'grunge',\n", + " 'Vintage',\n", + " 'Antique',\n", + " 'Outdoor'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/urn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/planter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vase',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marble',\n", + " 'https://www.turbosquid.com/Search/3D-Models/concrete',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grunge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antique',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoor'],\n", + " \"* This Urn is a high quality polygonal model with reel scale and placed in the center. It's suitable for high-quality close-up renders.* The model and the textures are properly named.* The model is correctly uv unwrapped with well hidden seams fully textured and properly named.* Three textures are included marble, concrete and grunge in png format.* Each texture is associate with a color, roughness and normal map in 4096 resolution.* The model is made with blender and rendered in eevee.* The model is ready for import into any project and ready to render as seen in previews.* No special plugin needed to open scene.Product dimensions:Height: 30cm Width: 32.7cm Length: 37.5cm File Formats:- blender- OBJ- FBX- COLLADA-Feel free to browse my other models by clicking on my user name.I hope it meets your expectations.\"],\n", + " ['3D model Table',\n", + " 'shara_d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-14',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table'],\n", + " ['Table', 'Home', 'Decor', 'Kitchen', 'TableLegs', 'Unwrapped'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tablelegs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unwrapped'],\n", + " 'OBJ, FBX, DAE files of an unwrapped 3D object with materials already on it. Feel free to change the material to whatever you like.'],\n", + " ['3D Metal Containers',\n", + " 'Adrian Kulawik',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-17',\n", + " '\\n\\n\\nOBJ 2019\\n\\n',\n", + " ['3D Model', 'industrial', 'industrial container', 'cargo container'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/cargo-container'],\n", + " ['metal',\n", + " 'container',\n", + " 'mars',\n", + " 'kitbash',\n", + " 'modular',\n", + " 'procedural',\n", + " 'art',\n", + " 'design',\n", + " 'pbr',\n", + " 'materials',\n", + " '3d',\n", + " 'lightwave',\n", + " '3ds',\n", + " 'max',\n", + " 'blender',\n", + " 'modo',\n", + " 'maya',\n", + " 'arch',\n", + " 'viz',\n", + " 'game',\n", + " 'ready',\n", + " '4k',\n", + " 'uv'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mars',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitbash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modular',\n", + " 'https://www.turbosquid.com/Search/3D-Models/procedural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/materials',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lightwave',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maya',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/viz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4k',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv'],\n", + " 'Metal Containers3D Model Ready for Games. PBR Materials.Textures in 4KUV Map.Formats:3Ds MaxLightWaveBlenderObj+MtlBest Regards.Adrian'],\n", + " ['3D coffee machine',\n", + " 'w1050263',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-17',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'appliance',\n", + " 'commercial appliance',\n", + " 'vending machine',\n", + " 'coffee vending machine'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/appliance',\n", + " 'https://www.turbosquid.com/3d-model/commercial-appliance',\n", + " 'https://www.turbosquid.com/3d-model/vending-machine',\n", + " 'https://www.turbosquid.com/3d-model/coffee-vending-machine'],\n", + " ['#coffee', '#machine', '#vending', 'machine'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23machine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23vending',\n", + " 'https://www.turbosquid.com/Search/3D-Models/machine'],\n", + " 'Saved as 3ds max 2015 version file.As you work in 3D, the input image source and HDRI are attached as additional files.I used a v-ray renderer.Thank you for your interest. thank you.-------------------------------------------------- -------------* coffee machine 2015.max (3ds max)* coffee machine.3DS* coffee machine.obj* coffee machine.fbx* source (image and HDRI folder) .zip'],\n", + " ['3D sink',\n", + " 'w1050263',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-17',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'interior design', 'fixtures', 'sink', 'kitchen sink'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/sink',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-sink'],\n", + " ['#sink', '#Kitchen', '#tap', '#faucet', '#bibcock'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23sink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23tap',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23faucet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23bibcock'],\n", + " '#sink #Kitchen #tap #faucet #bibcock'],\n", + " ['3D model building 002',\n", + " 'vini3dmodels',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-15',\n", + " '\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nOther 2016\\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'residential building', 'house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house'],\n", + " ['architecture', 'house', 'home', 'building', 'suburb', 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/suburb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " \"This is a simple house model. Except for the curtains, it was made with very few polygons and textures. It might have some tris in the topology, but almost all of the polygons are quads.The .obj and .mtl files were exported from 3dsmax-scanline with Cinema 4D presets.The .fbx file are ready to import in Unreal Engine, unless you want to make some aditional configuration in the export settings, such as checking the 'preserve edge orientation' etc.Please, rate my model! This is the only way I can know if I'm doing a great work.\"],\n", + " ['table 3D model',\n", + " 'w1050263',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-15',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table'],\n", + " ['table', 'Kitchen', 'cooktable', 'Breakfast', 'Lunch', 'Dinner'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooktable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/breakfast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lunch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dinner'],\n", + " '* Saved as 3ds max 2015 version file.Nowadays, it is difficult for a family to gather at the table to eat. My childhood past with my parents is like a new one.As you work in 3D, the input image source and HDRI are attached as additional files.I used a v-ray renderer.Thank you for your interest. thank you.-------------------------------------------------- -------------* table 2015.max (3ds max)* table.3DS* table.obj* table.fbx* table.mtl* source (image and HDRI folder) .zip'],\n", + " ['3D CPU case fan',\n", + " 'DevmanModels',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-14',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'technology',\n", + " 'computer equipment',\n", + " 'computer components',\n", + " 'cpu cooler'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/computer-equipment',\n", + " 'https://www.turbosquid.com/3d-model/computer-components',\n", + " 'https://www.turbosquid.com/3d-model/cpu-cooler'],\n", + " ['3d', 'cpu', 'fan', 'Fan', 'Cooler', 'fan', 'Cpu', 'cooler'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cpu',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooler',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cpu',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooler'],\n", + " 'A CPU fan.Low poly and mid poly includedBlend file and obj file availableThumbnails also includedCompletely free for any use!'],\n", + " ['3D Canister',\n", + " 'MarkoffIN',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-13',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'industrial',\n", + " 'industrial container',\n", + " 'fuel container',\n", + " 'oil can'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/fuel-container',\n", + " 'https://www.turbosquid.com/3d-model/oil-can'],\n", + " ['Canister', 'vessel', 'vial', 'container', 'fuel', 'green'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/canister',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vessel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fuel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/green'],\n", + " 'Low poly fuel canister.'],\n", + " ['3D Road Spikes',\n", + " 'MarkoffIN',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-13',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'urban design',\n", + " 'street elements',\n", + " 'traffic barrier'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/street-elements',\n", + " 'https://www.turbosquid.com/3d-model/traffic-barrier'],\n", + " ['Spikes', 'Road', 'Obstacle', 'Hazard'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/spikes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/road',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obstacle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hazard'],\n", + " 'Low poly road obstacle with texture.'],\n", + " ['Chair 3D model',\n", + " 'ferhatkose',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-07-12',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'office chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/office-chair'],\n", + " ['Chair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair'],\n", + " 'Models:ChairFormats:max'],\n", + " ['3D Chemical Bottle',\n", + " 'filburn',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-12',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nWindows Bitmap \\n\\n',\n", + " ['3D Model', 'food and drink', 'food container', 'bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food-container',\n", + " 'https://www.turbosquid.com/3d-model/bottle'],\n", + " ['chemical',\n", + " 'bottle',\n", + " 'glass',\n", + " 'hazard',\n", + " 'label',\n", + " 'lab',\n", + " 'chemistry',\n", + " 'liquid',\n", + " 'pH',\n", + " 'acid',\n", + " 'container',\n", + " 'science',\n", + " 'flask',\n", + " 'petri',\n", + " 'dish'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chemical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bottle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hazard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/label',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lab',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chemistry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/liquid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ph',\n", + " 'https://www.turbosquid.com/Search/3D-Models/acid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flask',\n", + " 'https://www.turbosquid.com/Search/3D-Models/petri',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dish'],\n", + " 'Chemical bottle with generic hazards label. Used in lab environments or science experiment kits. Normally found in an industrial setting but could also be in a high school lab, college lab or even a meth lab.'],\n", + " ['Galaxy Plate Set model',\n", + " 'MikaelaDWilliams',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-12',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'tableware',\n", + " 'bowl'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/tableware',\n", + " 'https://www.turbosquid.com/3d-model/bowl'],\n", + " ['Plates', 'Galaxy', 'Dinner', 'Food', 'Tableware'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/plates',\n", + " 'https://www.turbosquid.com/Search/3D-Models/galaxy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dinner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tableware'],\n", + " 'A simple plate and cup set decorated with gold trim and a glossy galaxy finish.'],\n", + " ['3D model japanese bridge',\n", + " 'nahidhassan881',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-12',\n", + " '',\n", + " ['3D Model', 'architecture', 'urban design', 'infrastructure', 'bridge'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/infrastructure',\n", + " 'https://www.turbosquid.com/3d-model/bridge'],\n", + " ['bridge', 'city', 'fantasy', 'future', 'highway'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bridge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/future',\n", + " 'https://www.turbosquid.com/Search/3D-Models/highway'],\n", + " \"this a japanese future bridge. because of my poor english i can't write description\"],\n", + " ['3D Night sky',\n", + " 'nahidhassan881',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-12',\n", + " '',\n", + " ['3D Model', 'nature', 'weather and atmosphere', 'sky'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/weather-and-atmosphere',\n", + " 'https://www.turbosquid.com/3d-model/sky'],\n", + " ['environment', 'night', 'sky', 'cloud', 'Beautiful', 'Bridge'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/environment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/night',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sky',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cloud',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beautiful',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bridge'],\n", + " \"this is a sky environment . that come's with lot's of good staff\"],\n", + " ['3D SpillFyter',\n", + " 'filburn',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-07-12',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nWindows Bitmap \\n\\n',\n", + " ['3D Model', 'science', 'lab equipment', 'ph meter'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/lab-equipment',\n", + " 'https://www.turbosquid.com/3d-model/ph-meter'],\n", + " ['ph',\n", + " 'science',\n", + " 'experiment',\n", + " 'lab',\n", + " 'chemical',\n", + " 'test',\n", + " 'Litmus',\n", + " 'hydrion',\n", + " 'paper',\n", + " 'strips',\n", + " 'universal',\n", + " 'indicator',\n", + " 'potential',\n", + " 'hydrogen',\n", + " 'acid',\n", + " 'hazmat',\n", + " 'liquid',\n", + " 'flouride',\n", + " 'organic',\n", + " 'solvent'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ph',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/experiment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lab',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chemical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/test',\n", + " 'https://www.turbosquid.com/Search/3D-Models/litmus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hydrion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/paper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/strips',\n", + " 'https://www.turbosquid.com/Search/3D-Models/universal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indicator',\n", + " 'https://www.turbosquid.com/Search/3D-Models/potential',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hydrogen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/acid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hazmat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/liquid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flouride',\n", + " 'https://www.turbosquid.com/Search/3D-Models/organic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solvent'],\n", + " 'SpillFyter chemical test strips which is used in lab experiments to detect the acidity or alkalinity of a liquid as well as other information regarding a liquids chemical composition. Commonly used in any lab environment and can also be found in Hazmat safety kits. It may also be found in a nurses station in the event of an unintentional chemical exposure.'],\n", + " ['3D Umbridge',\n", + " 'AzDm',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-07-12',\n", + " '\\n\\n\\nFBX 2016\\n\\n',\n", + " ['3D Model', 'characters', 'people', 'woman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/woman'],\n", + " ['female', 'woman', 'umbridge', 'human'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/female',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/umbridge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human'],\n", + " 'Umbrdige model'],\n", + " ['Traffic Light 3D model',\n", + " 'w1050263',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-11',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'urban design',\n", + " 'street elements',\n", + " 'stop light'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/street-elements',\n", + " 'https://www.turbosquid.com/3d-model/traffic-light'],\n", + " ['#Traffic',\n", + " 'Light',\n", + " '#road',\n", + " '#crosswalk',\n", + " '#Red',\n", + " '#Green',\n", + " '#Electric',\n", + " 'pole',\n", + " '#city',\n", + " '#signal',\n", + " '#method',\n", + " '#rule',\n", + " '#Street',\n", + " 'lamp'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23traffic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/light',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23road',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23crosswalk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23red',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23green',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23electric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pole',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23signal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23method',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23rule',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23street',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp'],\n", + " '* Saved as 3ds max 2015 version file.It is a signal that we must obey while living the world. Traffic lights are a common sight when you walk the road or walk through the city.The image source and HDRI that I enter while working in 3D are attached as additional files.I used a v-ray renderer.Note The scanline version is not ready for rendering.Thank you for your interest. Thank you.--------------------------------------*Traffic Light 2015.max (3ds max)*Traffic Light.3DS*Traffic Light.OBJ*Traffic Light.FBX*Traffic Light_Image source (and HDRI folder).zip'],\n", + " ['3D model Barrier',\n", + " 'MarkoffIN',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-11',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'urban design',\n", + " 'street elements',\n", + " 'crowd barrier'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/street-elements',\n", + " 'https://www.turbosquid.com/3d-model/crowd-barrier'],\n", + " ['Barrier',\n", + " 'obstacle',\n", + " 'hurdle',\n", + " 'roadblock',\n", + " 'bar',\n", + " 'division',\n", + " 'divider',\n", + " 'fence',\n", + " 'rail',\n", + " 'striped',\n", + " 'railing',\n", + " 'obstruction',\n", + " 'white',\n", + " 'and',\n", + " 'red.'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/barrier',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obstacle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hurdle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/roadblock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/division',\n", + " 'https://www.turbosquid.com/Search/3D-Models/divider',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fence',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rail',\n", + " 'https://www.turbosquid.com/Search/3D-Models/striped',\n", + " 'https://www.turbosquid.com/Search/3D-Models/railing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obstruction',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/red.'],\n", + " 'A simple white and red low poly barrier with texture.'],\n", + " ['3D [Animated]Lowpoly Trash Can model',\n", + " 'wehbn',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-11',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'industrial',\n", + " 'industrial container',\n", + " 'garbage container',\n", + " 'dustbin',\n", + " 'pedal trash bin'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/garbage-container',\n", + " 'https://www.turbosquid.com/3d-model/dustbin',\n", + " 'https://www.turbosquid.com/3d-model/pedal-trash-bin'],\n", + " ['trash', 'can', 'trashcan'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/trash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/can',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trashcan'],\n", + " '- SPECS -Total Polygons: 1116Total Vertices: 637'],\n", + " ['Kitchen Sink 3D model',\n", + " 'Ukkka',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-07-11',\n", + " '',\n", + " ['3D Model', 'interior design', 'fixtures', 'sink', 'kitchen sink'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/sink',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-sink'],\n", + " ['kitchen',\n", + " 'sink',\n", + " 'blanco',\n", + " 'metra',\n", + " '6s',\n", + " 'compact',\n", + " 'mixer',\n", + " 'mida',\n", + " 'household',\n", + " 'kitchenware'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blanco',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metra',\n", + " 'https://www.turbosquid.com/Search/3D-Models/6s',\n", + " 'https://www.turbosquid.com/Search/3D-Models/compact',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mixer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mida',\n", + " 'https://www.turbosquid.com/Search/3D-Models/household',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchenware'],\n", + " 'Kitchen sink Blanco Metra 6S Compact with mixer Blanco Mida from a cast stone (artificial granite) with the mixer Blanco MidaAll 9 colors. Sink size (WxDxH) 720x500x190 mm Mixer size (WxDxH) 50x190x320 mm Renderers VRay and Corona'],\n", + " ['3D School assets',\n", + " 'Mr.Jarst',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-11',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'vehicles', 'bus', 'school bus'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/bus',\n", + " 'https://www.turbosquid.com/3d-model/school-bus'],\n", + " ['Cinema',\n", + " '4',\n", + " 'd',\n", + " 'Aset',\n", + " 'a',\n", + " 'laptop',\n", + " '3d',\n", + " 'school',\n", + " 'desk',\n", + " 'projector',\n", + " 'board',\n", + " 'book',\n", + " 'shelving'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cinema',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/a',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laptop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/school',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/projector',\n", + " 'https://www.turbosquid.com/Search/3D-Models/board',\n", + " 'https://www.turbosquid.com/Search/3D-Models/book',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shelving'],\n", + " 'School assets includeSchool bus, fifteen books, bookshelf, school desk, teachers desk, teachers desk, projector board, projector, monitor, desk for chemistry classroom, schoolchildren of five colors, starter with first-aid kit, ordinary cabinet, columnar with glass, column, mat , keyboard, system unit, bookcase, blinds, window wall, wall, wall with door, wall with large door, food tray, dining table, showcase.'],\n", + " ['pH Test Strips 3D model',\n", + " 'filburn',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-07-09',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nWindows Bitmap \\n\\n',\n", + " ['3D Model', 'science', 'lab equipment', 'ph meter'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/lab-equipment',\n", + " 'https://www.turbosquid.com/3d-model/ph-meter'],\n", + " ['ph',\n", + " 'science',\n", + " 'experiment',\n", + " 'lab',\n", + " 'chemical',\n", + " 'test',\n", + " 'Litmus',\n", + " 'hydrion',\n", + " 'paper',\n", + " 'strips',\n", + " 'universal',\n", + " 'indicator',\n", + " 'mcolorphast',\n", + " 'potential',\n", + " 'hydrogen'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ph',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/experiment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lab',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chemical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/test',\n", + " 'https://www.turbosquid.com/Search/3D-Models/litmus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hydrion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/paper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/strips',\n", + " 'https://www.turbosquid.com/Search/3D-Models/universal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indicator',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mcolorphast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/potential',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hydrogen'],\n", + " 'Litmus paper (or pH strips) which is used in lab experiments to detect the acidity or alkalinity of a liquid. Commonly used in any lab environment and can also be found in safety kits. It may also be found in a nurses station in the event of an unintentional exposure.'],\n", + " ['Audio connectors model',\n", + " 'evilvoland',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-07-09',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'technology',\n", + " 'electrical accessories',\n", + " 'a/v connector',\n", + " 'rca jack'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/electrical-accessories',\n", + " 'https://www.turbosquid.com/3d-model/av-connector',\n", + " 'https://www.turbosquid.com/3d-model/rca-jack'],\n", + " ['audio',\n", + " 'jack',\n", + " 'guitar',\n", + " 'stereo',\n", + " 'mono',\n", + " 'connector',\n", + " 'cable',\n", + " 'chrome',\n", + " 'TRS',\n", + " 'mini-jack',\n", + " 'input',\n", + " 'output',\n", + " 'adapter',\n", + " 'plug',\n", + " 'music',\n", + " 'signal',\n", + " 'interface',\n", + " 'electronic',\n", + " 'rca',\n", + " 'RF'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/audio',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/guitar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stereo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mono',\n", + " 'https://www.turbosquid.com/Search/3D-Models/connector',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chrome',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mini-jack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/input',\n", + " 'https://www.turbosquid.com/Search/3D-Models/output',\n", + " 'https://www.turbosquid.com/Search/3D-Models/adapter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/music',\n", + " 'https://www.turbosquid.com/Search/3D-Models/signal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interface',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rca',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rf'],\n", + " 'Big Jack (6,35mm), Mini Jack (3,5mm) and RCA connectors.Models have real size dimensions.Models do not have textures. Blend file contains simple materials.In the Blend file, cables are made of curves and can change bends.Polygons: 22430Vertices: 20558'],\n", + " ['Game of thrones helmet 3D model',\n", + " 'Waleed_K3452',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-07-09',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'armour',\n", + " 'helmet',\n", + " 'military helmet',\n", + " 'combat helmet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/armour',\n", + " 'https://www.turbosquid.com/3d-model/helmet',\n", + " 'https://www.turbosquid.com/3d-model/military-helmet',\n", + " 'https://www.turbosquid.com/3d-model/combat-helmet'],\n", + " ['game',\n", + " 'of',\n", + " 'thrones',\n", + " 'helmet',\n", + " 'history',\n", + " 'head',\n", + " 'metal',\n", + " 'war',\n", + " 'armor',\n", + " 'weapon',\n", + " 'shield'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/of',\n", + " 'https://www.turbosquid.com/Search/3D-Models/thrones',\n", + " 'https://www.turbosquid.com/Search/3D-Models/helmet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/history',\n", + " 'https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shield'],\n", + " 'Game of thrones helmetformats : .obj , .ma Textures : Arnold Texture images , 2D texture image'],\n", + " ['3D LowPoly trees',\n", + " 'Nellecter',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-09',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'tree', 'fantasy tree', 'cartoon tree'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/trees',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-tree',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-tree'],\n", + " ['tree',\n", + " 'trees',\n", + " 'plant',\n", + " 'plants',\n", + " 'nature',\n", + " 'green',\n", + " 'albero',\n", + " 'alberi',\n", + " 'natura',\n", + " 'verde'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trees',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plants',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/green',\n", + " 'https://www.turbosquid.com/Search/3D-Models/albero',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alberi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natura',\n", + " 'https://www.turbosquid.com/Search/3D-Models/verde'],\n", + " \"Another small Low Poly assets I've created.You can use it to create beautiful low poly environment,Enjoy and please remember to rate it and leave a review.Thank you\"],\n", + " ['Low Poly Sword 08 model',\n", + " 'akifotti',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-08',\n", + " '\\n\\n\\nFBX 1.0\\n\\n\\n\\n\\nOther 1.0\\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'sword',\n", + " 'fantasy sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-sword'],\n", + " ['lowpoly', 'fantasy', 'medieval', 'sword', 'low', 'poly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly'],\n", + " 'Fantasy low poly sword! Mobile and game ready.'],\n", + " ['3D Stalagmites',\n", + " 'wernie',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-08',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'terrain', 'cave', 'stalagmite'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/ground',\n", + " 'https://www.turbosquid.com/3d-model/cave',\n", + " 'https://www.turbosquid.com/3d-model/stalagmite'],\n", + " ['Rock', 'Lava', 'Desert', 'Cave', 'Stalagmite', 'Environment'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lava',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desert',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cave',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stalagmite',\n", + " 'https://www.turbosquid.com/Search/3D-Models/environment'],\n", + " 'Another model I made a long time ago in Sculptris. I lost the original textures, but I have included some 2048x2048 jpeg textures in 4 color options. Hope you find it useful.;P'],\n", + " ['Thermometer model',\n", + " 'epicentre',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-08',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'science',\n", + " 'medicine',\n", + " 'medical equipment',\n", + " 'medical instruments',\n", + " 'thermometer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/medicine-and-science',\n", + " 'https://www.turbosquid.com/3d-model/medical-equipment',\n", + " 'https://www.turbosquid.com/3d-model/medical-instruments',\n", + " 'https://www.turbosquid.com/3d-model/thermometer'],\n", + " ['Thermometer',\n", + " 'temperature',\n", + " 'degree',\n", + " 'heat',\n", + " 'cold',\n", + " 'celsius',\n", + " 'scale',\n", + " 'domestic',\n", + " 'indoor',\n", + " 'outdoor',\n", + " 'glass',\n", + " 'sauna'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/thermometer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/temperature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/degree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/celsius',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scale',\n", + " 'https://www.turbosquid.com/Search/3D-Models/domestic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indoor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sauna'],\n", + " 'Simple textured thermometer. Use it for free. Please rate it 5 if you dowload.'],\n", + " ['3D Rock model',\n", + " '4Engine',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-08',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'mineral', 'rock'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/mineral',\n", + " 'https://www.turbosquid.com/3d-model/rock'],\n", + " ['rock',\n", + " 'nature',\n", + " 'low-poly',\n", + " 'game-ready',\n", + " 'environment',\n", + " 'stone',\n", + " 'exterior',\n", + " 'outdoors',\n", + " 'realistic',\n", + " 'mountain',\n", + " 'cliff',\n", + " 'landscape',\n", + " 'ground',\n", + " 'tileable'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game-ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/environment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mountain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cliff',\n", + " 'https://www.turbosquid.com/Search/3D-Models/landscape',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ground',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tileable'],\n", + " 'Low poly model of the surface of the rock for the game engine. - Polycount (tris):Rock - 116,Rock-LOD1 - 58,Rock-LOD2 - 2. - Textures(.jpg, 4096x4096): Diffuse,Normal,Specular.The model was created in the program Blender 2.79. Native files are in archive BLEND. Also in the corresponding archives there are files for import: 3DS, FBX, OBJ. Textures can be found in archives TEXTURES and BONUS (additional textures that can be useful to someone in the work).'],\n", + " ['Plant model',\n", + " 'georgeg3g3g3',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-07',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'nature', 'plants'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/plants'],\n", + " ['Plant', 'flower', 'pot', 'leaves', 'leaf'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flower',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaves',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaf'],\n", + " 'Modeled and textured in Blender 3D 2.8This plant is created and textured with realistic images.I hope you like it.'],\n", + " ['Defend Tower model',\n", + " 'BekirFreelan',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-07',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'skyscraper', 'tower'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/skyscraper',\n", + " 'https://www.turbosquid.com/3d-model/tower'],\n", + " ['model', 'free', '3d', 'game', 'asset', 'download', 'building'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/download',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building'],\n", + " 'Verts 16,805Faces 16,316Uv MappedNon Textures'],\n", + " ['Simple Bar Stool 3D model',\n", + " 'winzmuc',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-07',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada 1.5\\n\\n\\n\\n\\nDXF \\n\\n\\n\\n\\nFBX 7.3\\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nVRML 2\\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/stool',\n", + " 'https://www.turbosquid.com/3d-model/bar-stool'],\n", + " ['Bar',\n", + " 'stool',\n", + " 'barstool',\n", + " 'wood',\n", + " 'metal',\n", + " 'leather',\n", + " 'interior',\n", + " 'restaurant',\n", + " 'simple',\n", + " 'legs',\n", + " 'bars',\n", + " 'seat',\n", + " 'club'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/barstool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leather',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/restaurant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/legs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bars',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/club'],\n", + " 'Just a simple bar stool LOW POLYFile is for Cinema4D but of course can be used in any other 3D software as well.Exchange files and a wood texture (Teak wood) for the legs are included.'],\n", + " ['Mars 3D Globe 1 3D',\n", + " 'Kessler_Protus',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-07',\n", + " '',\n", + " ['3D Model', 'science', 'astronomy', 'planets', 'mars'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/astronomy',\n", + " 'https://www.turbosquid.com/3d-model/planets',\n", + " 'https://www.turbosquid.com/3d-model/mars'],\n", + " ['globe',\n", + " 'tutorial',\n", + " 'Mars',\n", + " '3DGlobe',\n", + " 'planet',\n", + " 'blend',\n", + " 'lowpoly',\n", + " 'cartography',\n", + " 'astrography',\n", + " 'furniture',\n", + " 'geography',\n", + " 'map',\n", + " 'mapping'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/globe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tutorial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mars',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dglobe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/planet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blend',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartography',\n", + " 'https://www.turbosquid.com/Search/3D-Models/astrography',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/geography',\n", + " 'https://www.turbosquid.com/Search/3D-Models/map',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mapping'],\n", + " 'Globe from my first tutorial.Map to 3D globe.The ultimate goal of the method is to combine several pieces of the map into one, without stitches and distortions. The globe itself is only an intermediate.The end result is a rendered map of any part of the globe.'],\n", + " ['3D LowPoly sawed-off shotgun',\n", + " 'Nellecter',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-06',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/shotgun'],\n", + " ['lowpoly',\n", + " 'low',\n", + " 'poly',\n", + " 'gun',\n", + " 'rifle',\n", + " 'western',\n", + " 'weapon',\n", + " 'free',\n", + " 'mobile',\n", + " 'sawed-off',\n", + " 'shotgun'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rifle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/western',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mobile',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sawed-off',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shotgun'],\n", + " \"Just a Simple sawed-off shotgun i designed in order to use in a game i'm developing. It's rigged so you can easily create your reload animation.Really hope you'll like it...If you like it please rate it =)=)=)\"],\n", + " ['3D Free Models',\n", + " 'niyoo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-06',\n", + " '',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures'],\n", + " ['characters',\n", + " 'female',\n", + " 'anatomy',\n", + " 'torso',\n", + " 'head',\n", + " 'face',\n", + " 'people',\n", + " 'creatures',\n", + " 'free',\n", + " 'zbrush',\n", + " 'sculpting',\n", + " 'ztl'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/characters',\n", + " 'https://www.turbosquid.com/Search/3D-Models/female',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/torso',\n", + " 'https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/face',\n", + " 'https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/creatures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zbrush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ztl'],\n", + " 'Some free stuff.Only ztl file included.Zbrush Version 2019.1.2'],\n", + " ['3D model Creature Head',\n", + " 'caliskanuzay',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-05',\n", + " '',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures'],\n", + " ['creature',\n", + " 'head',\n", + " 'alien',\n", + " 'cute',\n", + " 'animal',\n", + " 'monster',\n", + " 'eyes',\n", + " 'green',\n", + " 'baby',\n", + " 'character',\n", + " 'cartoon'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/creature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alien',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cute',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eyes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/green',\n", + " 'https://www.turbosquid.com/Search/3D-Models/baby',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon'],\n", + " 'Model is including head, eyes and ear rings. Free to use.Hope you like it.Uzay.Instagram: caliskanuzayartArtstation: caliskanuzay'],\n", + " ['Wooden Chair 3D model',\n", + " 'moARTy',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-05',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair'],\n", + " ['chair', 'wooden', 'gameready', 'pbr', 'furniture', 'lowpoly', 'vray'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray'],\n", + " 'Low Poly Wooden Chair---------------------------------Texture 2048*2048PBR_Metal_Rough_Textures( BaseColor,Metallic,Normal,Roughness)PBR _SpecGloss_Textures( Diffuse,Specular,Normal,Glossiness)Vray_Textures(Diffuse,Glossiness,ior,Normal,Reflection)---------------------------------Rendered in vray next---------------------------------Units: CM---------------------------------File Formats::3dsMax_20203dsMax_2018FBXOBJ---------------------------------'],\n", + " ['Dragon Jaw Portal 3D model',\n", + " 'wernie',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-05',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'spacecraft',\n", + " 'science fiction spacecraft',\n", + " 'stargate'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/science-fiction-spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/stargate'],\n", + " ['Rock', 'Dragon', 'Fantasy', 'Portal', 'Lava', 'Dark', 'Game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dragon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/portal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lava',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dark',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " 'A model I made a while back in Sculptris that can be used as a portal or some other element to add interest to your scene. Model is available in various formats. Textures are available in .png and .jpeg and include Diffuse, Normal and Spec maps.'],\n", + " ['3D French Style Queen size Metal bars Bed Free model',\n", + " 'artsnbytes',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-03',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'bed', 'bedroom set'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/bed',\n", + " 'https://www.turbosquid.com/3d-model/bedroom-set'],\n", + " ['furniture',\n", + " 'room',\n", + " 'indoors',\n", + " 'table',\n", + " 'interior',\n", + " 'bedroom',\n", + " 'bed',\n", + " 'queenside',\n", + " 'kingsize',\n", + " 'double',\n", + " 'hotel',\n", + " 'sleep',\n", + " 'rest',\n", + " 'apartment',\n", + " 'condominium',\n", + " 'lodge',\n", + " 'French',\n", + " 'style'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indoors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/queenside',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kingsize',\n", + " 'https://www.turbosquid.com/Search/3D-Models/double',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hotel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sleep',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apartment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/condominium',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lodge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/french',\n", + " 'https://www.turbosquid.com/Search/3D-Models/style'],\n", + " 'This is an Elegant French style Queen size bed with ancient metal bars and its 2 bedside tables. It has been made with Cinema4d R15. So 3DS, OBJ and FBX formats are just exports from the c4d software without visualization, then you may have to revamp / remap textures.All objects are separate (and primitive-based for c4d users), so you can modify / move them around as needed. Materials are included.'],\n", + " ['Ka-bar army combat knife 3D model',\n", + " 'andriybobchuk',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-03',\n", + " '',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'knife',\n", + " 'combat knife',\n", + " 'ka-bar'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/knife',\n", + " 'https://www.turbosquid.com/3d-model/combat-knife',\n", + " 'https://www.turbosquid.com/3d-model/ka-bar'],\n", + " ['knife',\n", + " 'ka-bar',\n", + " 'combat',\n", + " 'war',\n", + " 'apocalypse',\n", + " 'army',\n", + " 'bladed',\n", + " 'weapon',\n", + " 'conflict',\n", + " 'warfare'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/knife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ka-bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/combat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apocalypse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/army',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bladed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/conflict',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warfare'],\n", + " \"Hi there, This asset contains AAA-quality KA-BAR knife model. The package provides with 2 variants of model: - HighPoly for AAA computer projects - LowPoly for small mobile gamesI did it so you'll be able to choose the one you need for your project. Besides, you can use it in any commercial purpose!Main features:- Game ready Unity prefab for both High/Low poly model- Realistic textures for blade & handle- 100% accurate scale & overall dimensions - Perfect polycount solution- Exact Ka-Bar design\"],\n", + " ['Cyberpunk Flying Car DeLorean 3D model',\n", + " 'Chaosmonger Studio',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-07-03',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'spacecraft', 'flying car'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/flying-car'],\n", + " ['cyberpunk',\n", + " 'car',\n", + " 'flying',\n", + " 'scifi',\n", + " 'sci',\n", + " 'fi',\n", + " 'delorean',\n", + " 'cars',\n", + " 'led',\n", + " 'engines',\n", + " 'futuristic',\n", + " 'future',\n", + " 'science',\n", + " 'fiction',\n", + " 'vehicle',\n", + " 'fly',\n", + " 'antigravity',\n", + " 'cyber',\n", + " 'tech',\n", + " 'concept',\n", + " 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cyberpunk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flying',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scifi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sci',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/delorean',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cars',\n", + " 'https://www.turbosquid.com/Search/3D-Models/led',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engines',\n", + " 'https://www.turbosquid.com/Search/3D-Models/futuristic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/future',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fiction',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antigravity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cyber',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tech',\n", + " 'https://www.turbosquid.com/Search/3D-Models/concept',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " 'High Quality Cyberpunk Flying DeLorean!Features:- Native and Optimized for Max 2017.- Maya conversion.- Clean FBX and OBJ interchange.- Clean topology.- Main Body Unwrapped with 4096x4096 map.- Clean naming (for meshes, textures, shaders).Notes:- Rendering Setting and Lightning not included.'],\n", + " ['Eric Rigged 001 3D',\n", + " 'Renderpeople',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-03',\n", + " '\\n\\n\\nFBX 2014\\n\\n',\n", + " ['3D Model', 'characters', 'people', 'man', 'businessman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/man',\n", + " 'https://www.turbosquid.com/3d-model/businessman'],\n", + " ['human',\n", + " '3d',\n", + " 'people',\n", + " 'realistic',\n", + " 'photorealistic',\n", + " 'scan',\n", + " 'architectural',\n", + " 'visualization',\n", + " 'renderpeople',\n", + " 'business',\n", + " 'man',\n", + " 'standing',\n", + " 'white'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/photorealistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architectural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/visualization',\n", + " 'https://www.turbosquid.com/Search/3D-Models/renderpeople',\n", + " 'https://www.turbosquid.com/Search/3D-Models/business',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/standing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white'],\n", + " 'Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS:10-15k polycount (retopologized quads)8k high-resolution texturesDiffuse, Normal, Gloss, and Alpha mapsIncludes skinned skeletonReady-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter'],\n", + " ['3D Claudia Rigged 002',\n", + " 'Renderpeople',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-03',\n", + " '\\n\\n\\nFBX 2014\\n\\n',\n", + " ['3D Model', 'characters', 'people', 'woman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/woman'],\n", + " ['human',\n", + " 'people',\n", + " 'realistic',\n", + " 'photorealistic',\n", + " '3d',\n", + " 'scan',\n", + " 'architectural',\n", + " 'visualization',\n", + " 'renderpeople',\n", + " 'business',\n", + " 'men',\n", + " 'standing',\n", + " 'white'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/photorealistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architectural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/visualization',\n", + " 'https://www.turbosquid.com/Search/3D-Models/renderpeople',\n", + " 'https://www.turbosquid.com/Search/3D-Models/business',\n", + " 'https://www.turbosquid.com/Search/3D-Models/men',\n", + " 'https://www.turbosquid.com/Search/3D-Models/standing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white'],\n", + " 'Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS: 10-15k polycount (retopologized quads) 8k high-resolution textures Diffuse, Normal, Gloss, and Alpha maps Includes skinned skeleton Ready-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter'],\n", + " ['Carla Rigged 001 3D',\n", + " 'Renderpeople',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-03',\n", + " '\\n\\n\\nFBX 2013\\n\\n',\n", + " ['3D Model', 'characters', 'people', 'woman', 'businesswoman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/woman',\n", + " 'https://www.turbosquid.com/3d-model/businesswoman'],\n", + " ['human',\n", + " 'people',\n", + " 'realistic',\n", + " 'photorealistic',\n", + " '3d',\n", + " 'scan',\n", + " 'architectural',\n", + " 'visualization',\n", + " 'renderpeople',\n", + " 'business',\n", + " 'women',\n", + " 'standing'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/photorealistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architectural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/visualization',\n", + " 'https://www.turbosquid.com/Search/3D-Models/renderpeople',\n", + " 'https://www.turbosquid.com/Search/3D-Models/business',\n", + " 'https://www.turbosquid.com/Search/3D-Models/women',\n", + " 'https://www.turbosquid.com/Search/3D-Models/standing'],\n", + " 'Renderpeople are photorealistic human 3D models. Use our human 3D models for realistic shadows & reflections, natural light and 360 usability.FACTS: 10-15k polycount (retopologized quads) 8k high-resolution textures Diffuse, Normal, Gloss, and Alpha maps Includes skinned skeleton Ready-to-use control rig_____________________FORMATS:**3ds Max + OBJ**for 3ds Max 2013 or aboveRENDERER:V-Ray 3CoronaOctaneNativeBiped & C.A.T RigIncludes Facial Rig**Maya + OBJ**for Maya 2015 or aboveRENDERER:V-Ray 3NativeHumanIK RigIncludes Facial Rig**Cinema 4D + OBJ**for Cinema 4D R15 or aboveRENDERER:VRAYforC4DCoronaOctaneNativeCustom Control RigIncludes Facial Rig**Unreal Engine 4**for Unreal Engine 4.16 or aboveRENDERER:Native**Unity**for Unity 5 or aboveRENDERER:Native**FBX**FBX 2013 or aboveMESH RESOLUTION:~10k PolygonsRetopologized QuadsUV:UV unwrapped and UV mappedTEXTURE MAPS:Diffuse, Normal & Gloss Map8k ResolutionJPG FormatUNIT SETUP:Centimeter'],\n", + " ['3D Linux Penguin model',\n", + " 'Jose Torres Adelantado',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-07-02',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'bird',\n", + " 'aquatic bird',\n", + " 'penguin',\n", + " 'cartoon penguin'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/birds',\n", + " 'https://www.turbosquid.com/3d-model/aquatic-bird',\n", + " 'https://www.turbosquid.com/3d-model/penguin',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-penguin'],\n", + " ['penguin',\n", + " 'penguins',\n", + " 'animal',\n", + " 'not',\n", + " 'flying',\n", + " 'bird',\n", + " 'linux',\n", + " 'pole',\n", + " 'polar',\n", + " 'animals',\n", + " 'south',\n", + " 'hemisphere',\n", + " 'ice',\n", + " 'free',\n", + " 'without',\n", + " 'cost'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/penguin',\n", + " 'https://www.turbosquid.com/Search/3D-Models/penguins',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/not',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flying',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bird',\n", + " 'https://www.turbosquid.com/Search/3D-Models/linux',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pole',\n", + " 'https://www.turbosquid.com/Search/3D-Models/polar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animals',\n", + " 'https://www.turbosquid.com/Search/3D-Models/south',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hemisphere',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/without',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cost'],\n", + " 'Linux PenguinLinux Penguin is based on the Linux official logo.It was created with the open source software Blender. The 3D model keeps an UV open mapwith its respective texture. All its pieces are divided as different objects. It has possibility of being articulated through the Blender software.'],\n", + " ['building 001 model',\n", + " 'vini3dmodels',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-02',\n", + " '',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'commercial building',\n", + " 'office building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/commercial-building',\n", + " 'https://www.turbosquid.com/3d-model/office-building'],\n", + " ['office', 'architecture', 'background', 'brick', 'building'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/background',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building'],\n", + " 'This 3D model resembles to a simple office building. It was made with few polygons and textures. All materials and objects are named properly.'],\n", + " ['3D Low Poly Nature',\n", + " 'Nellecter',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-02',\n", + " '\\n\\n\\nOBJ 1.0\\n\\n\\n\\n\\nOther 1.0\\n\\n',\n", + " ['3D Model', 'architecture', 'site components', 'fence', 'wooden fence'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/fence',\n", + " 'https://www.turbosquid.com/3d-model/wooden-fence'],\n", + " ['Lowpoly', 'nature', 'tree', 'rock', 'fence', 'log'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fence',\n", + " 'https://www.turbosquid.com/Search/3D-Models/log'],\n", + " \"A small collection of lowpoly models i've used in a game i developed.Perfect for make a lowpoly nature environment.Material use a single image texure for all the models, perfect if you want to make a really light mobile game in term of size. Hope you'll like it.Nellecter\"],\n", + " ['Modern Table 3D model',\n", + " '3D.ERA',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-02',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'furnishings', 'table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table'],\n", + " ['modern',\n", + " 'table',\n", + " 'furniture',\n", + " 'realistic',\n", + " 'room',\n", + " 'living',\n", + " 'interior',\n", + " 'design',\n", + " 'PBR',\n", + " 'beautiful',\n", + " 'tableware',\n", + " 'bedroom',\n", + " 'livingroom',\n", + " 'house',\n", + " 'houseware',\n", + " 'elements'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beautiful',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tableware',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/livingroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/houseware',\n", + " 'https://www.turbosquid.com/Search/3D-Models/elements'],\n", + " \"Modern TableSuitable for realistic work PBR, real world movies and videos, Interiors and professional cartoons. It includes Materials.It is high poly design, and very high quality Modern Table Design with 83,845 vertices and 73,962 polygons.It's for free..Hope you like it.\"],\n", + " ['pki 3D model',\n", + " 'cilio01',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-01',\n", + " '',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'bear',\n", + " 'cartoon bear'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/bears',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-bear'],\n", + " ['comics'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/comics'],\n", + " 'comics'],\n", + " ['Glass Cup 3D',\n", + " 'pchekurkov',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-01',\n", + " '',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'water glass'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/water-glass'],\n", + " ['glass', 'cup', 'equipment', 'houseware', 'kitchen', 'household', 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/equipment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/houseware',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/household',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " 'Simple hexagonal glass cup'],\n", + " ['3D Old Antique Standing Globe',\n", + " 'MovART',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-01',\n", + " '\\n\\n\\nFBX 2018\\n\\n\\n\\n\\nOBJ 2018\\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'globe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/globe-decor'],\n", + " ['antique',\n", + " 'old',\n", + " 'retro',\n", + " 'wood',\n", + " 'wooden',\n", + " 'decorative',\n", + " 'vintage',\n", + " 'globe',\n", + " 'unity',\n", + " 'unreal',\n", + " 'game',\n", + " 'pbr',\n", + " 'presentation',\n", + " 'worldmap',\n", + " 'free',\n", + " 'stanging',\n", + " 'earth',\n", + " 'orbit',\n", + " 'exploration',\n", + " 'geography'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/antique',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decorative',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/globe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/presentation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/worldmap',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stanging',\n", + " 'https://www.turbosquid.com/Search/3D-Models/earth',\n", + " 'https://www.turbosquid.com/Search/3D-Models/orbit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exploration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/geography'],\n", + " '**Standing Globe High Quality 3D Model ( Ready for Games AR/VR and Visualization)** **MODEL** Standing Globe is made from 1 polygonal objects... Model is not triangulated. Polycount:Poly - 9 528Verts - 9 464**MATERIALS**Materials are prepared for Unity and Marmoset renderers. Scanline and FBX has only basic materials and will NOT render the same as in preview images.OBJ file has no materials, but has UVW coordinates intact.**TEXTURES**Model has 1 sets of high quality PBR textures.Maps - Base_colour, Ambient_occlusion, Roughness,Metallic,Resolution - 2048 x 2048.Format - PNG. Textures are collected in one archive and are delivered in separate file.**SCENE**Model is scaled to accurate real world dimensions.Objects, materials and textures has meaningful and matching names.Transformations has been reset and model is placed at scene origin [0, 0, 0 XYZ].All texture paths are set to relative.**FILE FORMATS** Maya - Standart Renderer 3ds Max - Scanline RendererFBX OBJUnityPacakge**GENERAL**Modeled in Maya.\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Preview images are rendered with Marmoset Toolbag.Images are straight from rendering apps. No post processing were applied.Render scenes are not included.***Please contact me if you have questions or need assistance with the models.'],\n", + " ['Low Poly Dungeon Scene 3D model',\n", + " 'zephyrextreme',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-07-01',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'interior design', 'interior', 'industrial spaces', 'dungeon'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/interior',\n", + " 'https://www.turbosquid.com/3d-model/industrial-spaces',\n", + " 'https://www.turbosquid.com/3d-model/dungeon'],\n", + " ['low', 'poly', 'dungeon', 'blender', '3d', 'free', 'download'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dungeon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/download'],\n", + " \"Just made a little something, you can use it wherever you want! I'd like to see your stuff so do send me where you use it.\"],\n", + " ['Hot Dog G06 3D model',\n", + " 'OHOW',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-30',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ 1.0\\n\\n\\n\\n\\nPNG 1.0\\n\\n',\n", + " ['3D Model',\n", + " 'food and drink',\n", + " 'food',\n", + " 'snack food and fast food',\n", + " 'hot dog'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food',\n", + " 'https://www.turbosquid.com/3d-model/snack-food-and-fast-food',\n", + " 'https://www.turbosquid.com/3d-model/hot-dog'],\n", + " ['hotdog', 'game', 'lowpoly', 'pbr', 'unity', 'unreal', 'food'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/hotdog',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food'],\n", + " 'Created with BlenderTexture Formats : 512 x 512File Formats : FBX / OBJ'],\n", + " ['3D Machine Gun Low Poly',\n", + " 'vuoriov4',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-30',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nPNG \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'machine gun'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/machine-gun'],\n", + " ['machine', 'gun'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/machine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun'],\n", + " 'Machine gun 3d model'],\n", + " ['Demon of the Foundry 3D model',\n", + " 'Mr_Nousagi',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-30',\n", + " '\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'statue', 'statuette', 'figurine'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/statue',\n", + " 'https://www.turbosquid.com/3d-model/statuette',\n", + " 'https://www.turbosquid.com/3d-model/figurine'],\n", + " ['demon',\n", + " 'monstre',\n", + " 'monster',\n", + " 'cratures',\n", + " 'fantasy',\n", + " '3dprint',\n", + " 'statue',\n", + " 'Jewelry',\n", + " 'sculpture',\n", + " 'people',\n", + " 'portrait',\n", + " 'baroque',\n", + " 'gold',\n", + " 'silver',\n", + " 'decoration',\n", + " 'print',\n", + " 'art',\n", + " 'nou'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/demon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monstre',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cratures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dprint',\n", + " 'https://www.turbosquid.com/Search/3D-Models/statue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/portrait',\n", + " 'https://www.turbosquid.com/Search/3D-Models/baroque',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nou'],\n", + " \"Hi it's Mr.NousagiTo this day I propose a model of Demon of the Foundry for printing :)\"],\n", + " ['3D model House Destroyed',\n", + " 'InsectOnWorx',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-29',\n", + " '\\n\\n\\n3D Studio 1\\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'destroyed building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/destroyed-building'],\n", + " ['House', 'Destroyed', 'Little', 'Wall', 'Designer'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/destroyed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/little',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/designer'],\n", + " 'This is a little House, that I made for one of my Games. I hope somebody finds it useful, enjoy!'],\n", + " ['3D Flat Screen Television',\n", + " 'shara_d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/video-devices',\n", + " 'https://www.turbosquid.com/3d-model/tv',\n", + " 'https://www.turbosquid.com/3d-model/flatscreen-television'],\n", + " ['television',\n", + " '3DModel',\n", + " 'Cheap',\n", + " 'flatscreen',\n", + " 'materials',\n", + " 'unwrapped',\n", + " 'electronics',\n", + " 'video',\n", + " 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/television',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dmodel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cheap',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flatscreen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/materials',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unwrapped',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/video',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'If you like the model please leave a rating and let me know what you did and/or did not like about it.Thank you for downloading! I hope you enjoy.'],\n", + " ['3D Surveyor',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-29',\n", + " '',\n", + " ['3D Model', 'industrial', 'tools', 'forestry tools', 'survey level'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/forestry-tools',\n", + " 'https://www.turbosquid.com/3d-model/survey-level'],\n", + " ['Surveyor', 'construction', 'building', 'architecture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/surveyor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/construction',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture'],\n", + " 'Mesh : 1Textures : 0Polygons : 860 Vertex : 1167'],\n", + " ['3D Old anvil (low poly)',\n", + " 'wther',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nPNG \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'industrial tools', 'anvil'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/industrial-tools',\n", + " 'https://www.turbosquid.com/3d-model/anvil'],\n", + " ['anvil', 'iron', 'smith', 'metalwork', 'forge'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/anvil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/iron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/smith',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metalwork',\n", + " 'https://www.turbosquid.com/Search/3D-Models/forge'],\n", + " 'Game ready low poly 3D model of the anvil.512x512 normal map1024x1024 albedo'],\n", + " ['Turkish Tea Glass - RC model',\n", + " 'RcAnimationStudios',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-28',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup',\n", + " 'teacup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup',\n", + " 'https://www.turbosquid.com/3d-model/teacup'],\n", + " ['tea',\n", + " 'glass',\n", + " 'turkish',\n", + " 'low',\n", + " 'poly',\n", + " 'game',\n", + " 'ready',\n", + " 'free',\n", + " 'metal',\n", + " 'traditional',\n", + " 'drink',\n", + " 'hot',\n", + " 'unity',\n", + " 'unreal',\n", + " 'kitchen',\n", + " 'table',\n", + " 'spoon',\n", + " 'home',\n", + " '3d',\n", + " 'pbr',\n", + " 'vray'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/turkish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/traditional',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray'],\n", + " '==============================Turkish Tea Glass - RC (Game Ready)All models have fully textured and was originally modeled in 3ds Max 2014Nice, High resolution!! 2048x2048 px (png 16) textures==============================Features:---- Each Model in folder separately , you can use each of them one by one* _ ( thumbnail is for show the set)-Low polygonal models, correctly scaled for an accurate representation of the original object.-Easily subdividable for more realism. It depends on you-Models resolutions are optimized for polygon efficiency.-No cleaning up necessary just drop your models into the scene and start rendering.-No special plugin needed to open scene.-Models does not include any backgrounds or scenes-All unwrapped UV s are non-overlapping-No lights or HDRI mapping-Display Unit Scale = Centimeters (cm)==============================Game Ready ( Unity or Unreal Engine ect. )MAPS INCLUDEDPBRBase ColorHeightMetallicNormalRoughnessUnityAlbedoMetallic SmoothnessNormalUnreal EngineBase ColorNormalOcclusion Roughness Metallic==============================File Formats:3ds Max 2014FBXOBJ (Multi Format)ColladaTextures (2048X2048 png)===============================Warning: Depending on which software package you are using, the exchange formats (.obj, .3ds and .fbx) may not match the preview images exactly. Due to the nature of these formats, there may be some textures that have to be loaded by hand and possibly triangulated geometry.==============================Rendered in Marmoset Toolbagand you can notice difference on thumbnails , because rendered in several different light setup and sceneThanks!Also check out my other models'],\n", + " ['3D Water Bottle',\n", + " 'Joshua Kolby',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-27',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'food and drink', 'food container', 'bottle', 'water bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food-container',\n", + " 'https://www.turbosquid.com/3d-model/bottle',\n", + " 'https://www.turbosquid.com/3d-model/water-bottle'],\n", + " ['water', 'bottle', 'metal', 'blender'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bottle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender'],\n", + " 'The water bottle is free to use for whatever you need.If you have any questions contact support'],\n", + " ['Motorola One Vision Bronze gradient And Sapphire gradient 3D model',\n", + " 'ES_3D',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-27',\n", + " '\\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n\\nOBJ 2011\\n\\n\\n\\n\\nVRML 2011\\n\\n',\n", + " ['3D Model', 'technology', 'phone', 'cellphone', 'smartphone'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/phone',\n", + " 'https://www.turbosquid.com/3d-model/cellphone',\n", + " 'https://www.turbosquid.com/3d-model/smartphone'],\n", + " ['3d',\n", + " 'model',\n", + " '3ds',\n", + " 'max',\n", + " 'Motorola',\n", + " 'One',\n", + " 'Vision',\n", + " 'Bronze',\n", + " 'And',\n", + " 'Sapphire',\n", + " 'gradient',\n", + " 'electronic',\n", + " 'phone',\n", + " 'cellular',\n", + " 'computer',\n", + " 'pda',\n", + " 'andriod',\n", + " 'best',\n", + " 'top',\n", + " 'rated',\n", + " 'vray',\n", + " 'studio'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/motorola',\n", + " 'https://www.turbosquid.com/Search/3D-Models/one',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vision',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bronze',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sapphire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gradient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/phone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cellular',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pda',\n", + " 'https://www.turbosquid.com/Search/3D-Models/andriod',\n", + " 'https://www.turbosquid.com/Search/3D-Models/best',\n", + " 'https://www.turbosquid.com/Search/3D-Models/top',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rated',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/studio'],\n", + " 'Detailed High definition model of Motorola One Vision Bronze gradient And Sapphire gradient.The main format is 3ds max 2011.max, also available in many formats.And click on my username ES_3D And See More Quality Models And Collections .Available in the following file formats:- 3ds Max with mental ray materials (.max)- 3ds Max with V-Ray materials (.max)- 3ds Max with Scanline materials (.max)- 3D Studio (.3ds)- FBX (.fbx)- Geometry: 3ds Max version (For Each)- In formats 3ds Max 2011 , 3ds , OBJ, FBX , VMRL , Mental ray, Default Scanline Renderer, - model exported to standard materials (textures), not contain V-Ray shaders.In these formats, shaders need to be edited for the new studio for the final rendering.- High quality textures,and high resolution renders.- fbx formats contains medium high-poly.- 3ds and obj format comes from low poly.- Every part of the model is named properly- Model is placed to 0,0,0 scene coordinates.- 3ds Max 2011 and all higher versions.- all textures included separately for all formats into each zipped folder.- Other formats may vary slightly depending on your software.- You can make the poly count higher by the MeshSmooth and TurboSmooth level.- Includes V-Ray materials and textures only in 3ds Max format.- A file without V-Ray shader is included with standard materials.- The .3ds and .obj formats are geometry with texture mapping coordinates. No materials attached.- Textures format JPEG.- No object missing,- 3ds Max files included Standard materials and V-Ray materials.- This 3d model objects have the correct names and stripped the texture paths.- NOTE: V-Ray is required for the V-Ray 3ds Max scene and Studio setup is not included.- I hope you will like all my products. Thanks for buying'],\n", + " ['AK-47 model',\n", + " 'Maga Batukaev',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-27',\n", + " '\\n\\n\\n3D Studio 2014\\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'automatic rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/automatic-rifle'],\n", + " ['Riffle',\n", + " 'AK',\n", + " '74',\n", + " 'AKS',\n", + " '74M',\n", + " 'AKM',\n", + " 'kalashnikov',\n", + " 'machinegun',\n", + " 'gun',\n", + " 'weapon',\n", + " 'Russian',\n", + " 'army',\n", + " 'automatic',\n", + " 'carbine',\n", + " 'firearm',\n", + " 'soviet',\n", + " 'terrorist'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/riffle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ak',\n", + " 'https://www.turbosquid.com/Search/3D-Models/74',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aks',\n", + " 'https://www.turbosquid.com/Search/3D-Models/74m',\n", + " 'https://www.turbosquid.com/Search/3D-Models/akm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kalashnikov',\n", + " 'https://www.turbosquid.com/Search/3D-Models/machinegun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/russian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/army',\n", + " 'https://www.turbosquid.com/Search/3D-Models/automatic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carbine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/firearm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soviet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/terrorist'],\n", + " '3ds Max 20113ds max 2014FBXOBJTexture size for body -4096x4096 (Albedo, Occlusion, Normal, Metalness and Roughness)The main and supporting renders are done using Marmoset 3.0'],\n", + " ['Fence and Gate model',\n", + " 'Joshua Kolby',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-27',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'fence',\n", + " 'wrought iron fence'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/fence',\n", + " 'https://www.turbosquid.com/3d-model/wrought-iron-fence'],\n", + " ['fence', 'gate', 'blender', 'architecture', 'house', 'outside', 'nature'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fence',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outside',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature'],\n", + " 'The Fence and Gate is good for games and simple architecture scenes.You can download the fence and gate separate if you need to.If you have any questions contact support.'],\n", + " ['Clarinet 3D model',\n", + " 'Joshua Kolby',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-27',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'music', 'woodwind', 'clarinet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/musical-instrument',\n", + " 'https://www.turbosquid.com/3d-model/woodwind',\n", + " 'https://www.turbosquid.com/3d-model/clarinet'],\n", + " ['clarinet', 'musical', 'instrument', 'blender', 'woodwind', 'reed'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/clarinet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/musical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/instrument',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woodwind',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reed'],\n", + " 'Clarinet- editable in blender- free to use in any sceneIf you have any questions contact support'],\n", + " ['Coffee Maker 3D model',\n", + " 'Joshua Kolby',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-26',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'appliance',\n", + " 'household appliance',\n", + " 'kitchen appliance',\n", + " 'coffee maker'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/appliance',\n", + " 'https://www.turbosquid.com/3d-model/household-appliance',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-appliance',\n", + " 'https://www.turbosquid.com/3d-model/coffee-maker'],\n", + " ['coffee', 'maker', 'simple', 'lowpoly', 'cup', 'pot', 'blender', 'model'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model'],\n", + " \"Simple Coffee Maker-Cord and Cordless versions, download your preference.-Cord only editable in blender. If not using blender you probably want to download a NoCord version.-Game-ready. Low polygon count so it doesn't lag games.-Free to useIf you have any questions contact support.\"],\n", + " ['Old Wood Chair 3D model',\n", + " 'Marc Mons',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-26',\n", + " '\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair'],\n", + " ['chair',\n", + " 'bench',\n", + " 'cartoon',\n", + " 'art',\n", + " 'videogame',\n", + " 'town',\n", + " 'city',\n", + " 'eat',\n", + " 'granite',\n", + " 'stone',\n", + " 'architecture',\n", + " 'garden',\n", + " 'decoration',\n", + " 'toon',\n", + " 'park',\n", + " 'unity3d',\n", + " 'seat',\n", + " '3d',\n", + " 'maya',\n", + " 'obj',\n", + " 'fbx',\n", + " 'free',\n", + " 'freechair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bench',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/videogame',\n", + " 'https://www.turbosquid.com/Search/3D-Models/town',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/granite',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/park',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maya',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/freechair'],\n", + " \"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support.\"],\n", + " ['3D Falling - male anatomy model',\n", + " 'cvbtruong',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-26',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'statue'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/statue'],\n", + " ['male',\n", + " 'sculpture',\n", + " 'anatomy',\n", + " 'statue',\n", + " 'classical',\n", + " 'man',\n", + " 'sculpt',\n", + " 'abstract',\n", + " 'anatomical'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/statue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/abstract',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomical'],\n", + " 'Hi, This is the anatomy project I did when learning at DauPhaiGiaiPhau References are from Bodiesinmotion. Files include: - .obj files & textures. - Substance painter files. - Maya file with Redshift rendering setup. - Zbrush file with subdivisions. Free to download and use. Cheers, Truong Cg Artist'],\n", + " ['Lowpoly Old Car model',\n", + " 'Joshua Kolby',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-25',\n", + " '\\n\\n\\nFBX 1.0\\n\\n\\n\\n\\nOBJ 1.0\\n\\n\\n\\n\\nSTL 1.0\\n\\n',\n", + " ['3D Model', 'vehicles', 'car'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car'],\n", + " ['Lowpoly', 'Car', 'Old', 'Blender'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender'],\n", + " 'This car is free to use in games and scenes, it is also very easy to edit the model to your liking. It is game ready for engines such as unity or unreal.'],\n", + " ['3D model Gas Cylinder',\n", + " 'rahulwarrier96',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-25',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'industrial',\n", + " 'industrial container',\n", + " 'fuel container',\n", + " 'gas cylinder',\n", + " 'home propane tank'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/fuel-container',\n", + " 'https://www.turbosquid.com/3d-model/gas-cylinder',\n", + " 'https://www.turbosquid.com/3d-model/home-propane-tank'],\n", + " ['gas', 'cylinder'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/gas',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cylinder'],\n", + " '3d model of a gas cylinder'],\n", + " ['3D Submarines of the project 671',\n", + " 'CoFate',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-25',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model', 'vehicles', 'vessel', 'military vessel', 'submarine'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vessel',\n", + " 'https://www.turbosquid.com/3d-model/military-vessel',\n", + " 'https://www.turbosquid.com/3d-model/submarine'],\n", + " ['of', 'the', 'project', '671', 'Submarines'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/of',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/project',\n", + " 'https://www.turbosquid.com/Search/3D-Models/671',\n", + " 'https://www.turbosquid.com/Search/3D-Models/submarines'],\n", + " \"The submarines of the project 671 'Yorsh' - a series of Soviet nuclear torpedo submarines.27911 Vertices27824 Polygons- forms and proportions of The 3D model most similar to the real object- detailed enough for close-up renders\"],\n", + " ['3D Free Ghost model',\n", + " 'A_Akhtar',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-25',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster',\n", + " 'ghost'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster',\n", + " 'https://www.turbosquid.com/3d-model/ghoul'],\n", + " ['free',\n", + " 'ghost',\n", + " '3d',\n", + " 'scary',\n", + " 'funny',\n", + " 'carton',\n", + " 'cartoonish',\n", + " 'cloth',\n", + " 'horror',\n", + " 'phantom',\n", + " 'fear',\n", + " 'flying'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ghost',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/funny',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carton',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoonish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cloth',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horror',\n", + " 'https://www.turbosquid.com/Search/3D-Models/phantom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fear',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flying'],\n", + " 'Hello friends this is a free ghost model. I have got some premium quality models in my portfolio So, feel free to checkout my other models as well. Feel free to use this product in your projects and do not forget to provide your valuable feedback.-----------------| General Features |----------------- Relative texture paths- Subdividable and clean geometry- Real world scale- Units: cm- Comes with PBR textures- Completely UV mapped & UVs unwrapped- Native scene with all Vray settings- Model is fully textured with all materials applied.- Model does not include lights and cameras- Faces\\xa0\\xa0\\xa0= 4234 (subdivison level 0) & 16936 (subdivison level 1)- Vertices=4296 (subdivison level 0) & 17061 (subdivison level 1)-----------------| Textures |--------------Native file has 3 textures of 4096x4096 and Texture sets are also available:- PBR (Metalness)- PBR (Specular)- PNG Displacement Map-----------------| Requirements |----------------- Ghost-MB (V-ray).zip requires V-Ray 2.39- Rest of the files do not require any third party pluginIf you liked the product then dont forget to check out other models in my portfolio and provide your valuable feed back'],\n", + " ['3D model Low Poly Fire Pit',\n", + " 'Vertici',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-24',\n", + " '',\n", + " ['3D Model', 'architecture', 'site components', 'fireplace', 'fire pit'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/fireplace',\n", + " 'https://www.turbosquid.com/3d-model/fire-pit'],\n", + " ['Fire', 'campfire', 'camp', 'roast', 'pit'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/campfire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/camp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/roast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pit'],\n", + " 'Low poly fire pit made in Blender 2.8All of the lighting is baked into the texture.'],\n", + " ['Sony Playstation 4 Low Poly Free 3D model 3D',\n", + " 'cesarfrias31',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-24',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'technology', 'video devices', 'video games', 'game console'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/video-devices',\n", + " 'https://www.turbosquid.com/3d-model/video-games',\n", + " 'https://www.turbosquid.com/3d-model/game-console'],\n", + " ['playstation',\n", + " 'play',\n", + " 'ps4',\n", + " 'video-game',\n", + " 'video',\n", + " 'game',\n", + " 'ps4controller',\n", + " 'controller',\n", + " 'sony',\n", + " 'playstation4',\n", + " 'console',\n", + " 'videoconsole',\n", + " 'blender'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/playstation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/play',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ps4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/video-game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/video',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ps4controller',\n", + " 'https://www.turbosquid.com/Search/3D-Models/controller',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sony',\n", + " 'https://www.turbosquid.com/Search/3D-Models/playstation4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/console',\n", + " 'https://www.turbosquid.com/Search/3D-Models/videoconsole',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender'],\n", + " 'Like it if you liked the model. Thank you. Features:\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Low poly model\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Optimized for the highest performance\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Colors can be easily modified(Last Image for Example)\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Original model optimized for Cycles Blender\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview)'],\n", + " ['3D Hand Cartoon',\n", + " 'Roger William',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-22',\n", + " '',\n", + " ['3D Model',\n", + " 'science',\n", + " 'anatomy',\n", + " 'superficial anatomy',\n", + " 'arms',\n", + " 'hand',\n", + " 'cartoon hand'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/anatomy',\n", + " 'https://www.turbosquid.com/3d-model/superficial-anatomy',\n", + " 'https://www.turbosquid.com/3d-model/arms',\n", + " 'https://www.turbosquid.com/3d-model/hand',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-hand'],\n", + " ['Hand', 'cartoon', 'rig'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rig'],\n", + " 'Simples Hand - Rig - Cartoon style, All Free'],\n", + " ['School Chair and Desk model',\n", + " 'Shermadini',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-24',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther Textures\\n\\n',\n", + " ['3D Model', 'furnishings', 'desk', 'school desk'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk',\n", + " 'https://www.turbosquid.com/3d-model/school-desk'],\n", + " ['3d',\n", + " 'wood',\n", + " 'wooden',\n", + " 'school',\n", + " 'chair',\n", + " 'desk',\n", + " 'red',\n", + " 'table',\n", + " 'metal',\n", + " 'furniture',\n", + " 'interior',\n", + " 'children',\n", + " 'kids',\n", + " 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/school',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/red',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/children',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kids',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " \"3D School Chair and Desk modelAVAILABLE FILE FORMATS:- FBX- OBJ- DAE- STLThese are quick models I made for BlenderFiftyTwo challenge. I decided to share it with everyone for free, since the poly count isn't as low as it should be. It has 3,869 Verticis and 2,838 Faces. Wood Textures are included! Enjoy!\"],\n", + " ['3D Grail model',\n", + " 'Reddler',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-23',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'symbols', 'religious objects', 'holy grail'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/symbols-and-shapes',\n", + " 'https://www.turbosquid.com/3d-model/religious-objects',\n", + " 'https://www.turbosquid.com/3d-model/holy-grail'],\n", + " ['grail',\n", + " 'holy',\n", + " 'jesus',\n", + " 'christ',\n", + " 'christianity',\n", + " 'christian',\n", + " 'jew',\n", + " 'jewish',\n", + " 'judaism',\n", + " 'catholic',\n", + " 'moses',\n", + " 'solomon',\n", + " 'cup',\n", + " 'drink',\n", + " 'sacred',\n", + " 'blood',\n", + " 'last',\n", + " 'supper',\n", + " 'medieval',\n", + " 'wine',\n", + " 'goblet'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/grail',\n", + " 'https://www.turbosquid.com/Search/3D-Models/holy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jesus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/christ',\n", + " 'https://www.turbosquid.com/Search/3D-Models/christianity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/christian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jew',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/judaism',\n", + " 'https://www.turbosquid.com/Search/3D-Models/catholic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moses',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solomon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sacred',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/last',\n", + " 'https://www.turbosquid.com/Search/3D-Models/supper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/goblet'],\n", + " \"This is a Holy Grail from Christian Mythology. Used to hold Jesus' blood at the crucifixion and used at the last supper, perfect for religious and medieval themes.Contains 5 PBR 2K Textures.Base ColorHeightmapMetallicNormalRoughness14,590 Triangles7,431 VerticesNo N-Gons\"],\n", + " ['3D Telephone',\n", + " 'rahulwarrier96',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-22',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'technology', 'phone', 'office phone'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/phone',\n", + " 'https://www.turbosquid.com/3d-model/office-phone'],\n", + " ['phone', 'telephone', 'landline'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/phone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/telephone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/landline'],\n", + " '3D model of landline telephone'],\n", + " ['3D Free Foot highpoly 3D model',\n", + " 'patrickart90',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-22',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'science', 'anatomy', 'superficial anatomy', 'legs', 'foot'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/anatomy',\n", + " 'https://www.turbosquid.com/3d-model/superficial-anatomy',\n", + " 'https://www.turbosquid.com/3d-model/legs',\n", + " 'https://www.turbosquid.com/3d-model/foot'],\n", + " ['foot',\n", + " 'feet',\n", + " 'leg',\n", + " 'human',\n", + " 'body',\n", + " 'male',\n", + " 'female',\n", + " 'realistic',\n", + " 'shape',\n", + " 'anatomy',\n", + " 'highpoly',\n", + " 'sculpt',\n", + " 'character',\n", + " '3D',\n", + " 'toes',\n", + " 'toenail',\n", + " 'heel',\n", + " 'ankle',\n", + " 'tool'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/foot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/feet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/female',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shape',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/highpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toenail',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ankle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool'],\n", + " 'Hi guys, check this out. Here is free sample of Foot with high poly 3D model.Available formats: OBJ (highpoly) -ztl (high poly)You can import this foot you like in zbrush and attached to your model, then dynamesh it! Or either way, u can manually add more detail to this foot 3D model as you like.Repacking or selling by other persons is strictly not allowed! Feel free to use this to speed up your process of creation. Thank you!Cheers!'],\n", + " ['Fat Tony 3D model',\n", + " 'Zerg3d',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-21',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'characters', 'people', 'man', 'cartoon man', 'cartoon boss'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/man',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-man',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-boss'],\n", + " ['human',\n", + " 'character',\n", + " 'anime',\n", + " 'cartoon',\n", + " 'man',\n", + " 'Fat',\n", + " 'Tony',\n", + " 'Simpsons',\n", + " 'mob',\n", + " 'boss',\n", + " 'sculptris',\n", + " 'basemesh'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anime',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tony',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simpsons',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mob',\n", + " 'https://www.turbosquid.com/Search/3D-Models/boss',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculptris',\n", + " 'https://www.turbosquid.com/Search/3D-Models/basemesh'],\n", + " 'Fat Tony base mesh.File formats: .fbx, .obj, .stlGeometry: 914566 triangles, 457309 vertices'],\n", + " ['House with Pool 3D model',\n", + " 'gabryx82',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-21',\n", + " '',\n", + " ['3D Model', 'architecture', 'building', 'residential building', 'house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house'],\n", + " ['House', 'Pool'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pool'],\n", + " 'A typical L.A house with pool'],\n", + " ['Decorative Sphere 3D model',\n", + " 'outofourlives',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-21',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther abc\\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOther e3d\\n\\n\\n\\n\\nFBX 7.4\\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther orbx\\n\\n\\n\\n\\nOther spp\\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther textures4K\\n\\n\\n\\n\\nOther textures8K\\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'home decor'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/home-decor'],\n", + " ['gold',\n", + " 'brass',\n", + " 'decor',\n", + " 'decoration',\n", + " 'decorative',\n", + " 'design',\n", + " 'element',\n", + " 'scifi',\n", + " 'fantasy',\n", + " 'sculpture',\n", + " 'bathroom',\n", + " 'vase',\n", + " 'office',\n", + " 'old',\n", + " 'bedroom',\n", + " 'art',\n", + " 'lamp',\n", + " 'pendant',\n", + " 'jewel',\n", + " 'props'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decorative',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/element',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scifi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bathroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vase',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pendant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props'],\n", + " \"Decorative sphere with hexagonal holes.All preview images shown are rendered in Octane Render. Plus some extra screenshots at the end so you can see how the model looks in the UI of some of the exchange formats. Environments and lighting setups are not included, but let me know if you want them aswell. The phone is just for scale, and is not included. But if you want it too, check my profile.\\xa0\\xa0\\xa0 Model Dimensions: 10.6 cm * 10.6 cm * 10.6 cm.\\xa0\\xa0\\xa0 All geometry is subdivision ready (Rendered at Subdiv Lv. 1).\\xa0\\xa0\\xa0 Fully unwrapped, non-overlapping UV's.\\xa0\\xa0\\xa0 8K PBR Textures.\\xa0\\xa0\\xa0 No N-gons, Isolated Vertices, or Complex Poles.\\xa0\\xa0\\xa0 Water tight geometry, you can displace it by the Height map, if you want to print it with the bump detail.Files include:_SPP - Substance Painter Project file. You can edit the textures for all the formats._DAE - Collada exported from Substance Painter. Embeded textures are 4K jpg files (Metal/Rough PBR)._TEX - Textures exported from Substance Painter and used for all the files bellow. Unpack in the root folder. Textures are 4K 8bit png files (Spec/Gloss PBR). All files point to the 4K texture paths by default._TEX_8K - Textures exported from Substance Painter and used for all the files bellow. Unpack in the root folder. Textures are 8K 8bit png files (Spec/Gloss PBR). You dont need to download the 8K textures if you dont need as much detail.Polycount for all files bellow: 14,400._C4D_Octane - Cinema 4D project file with Octane shaders using the pbr textures. This is where all the renders come from. Screenshot attached._ORBX - Octane Standalone Package. Can be unpacked into OCS, or imported._FBX - Autodesk FBX. You may need to re-tweak the shaders abit, depending on the program you open it in, but all pbr textures should maintain link._C4D - Cinema 4D project file with Physical/Standard shaders, using the PBR textures in the texture pack. Screnshot attached._E3D - Ready to use in Video Copilot's Element 3D, plus an After Effects project file with the model already loaded. You may need to re-link the model/textures upon opening it for the first time, so just point to the root folder, where you extracted the pbr texture pack. Screnshot attached._OBJ - OBJ/MTL exported from Cinema 4D._MAX - 3ds Max project file with default shaders, using the PBR textures. May need adjustments.All files are zipped.\"],\n", + " ['Heart Pendant with Beads 3D model',\n", + " 'KhatriCad',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-21',\n", + " '\\n\\n\\nSTL \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'necklace',\n", + " 'pendant necklace',\n", + " 'heart necklace'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/necklace',\n", + " 'https://www.turbosquid.com/3d-model/pendant-necklace',\n", + " 'https://www.turbosquid.com/3d-model/heart-necklace'],\n", + " ['3d',\n", + " 'model',\n", + " 'fashion',\n", + " 'beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'stl',\n", + " 'printable',\n", + " 'print',\n", + " 'pendant',\n", + " 'heart',\n", + " 'beads',\n", + " 'gold',\n", + " 'silver',\n", + " 'indian',\n", + " 'necklace',\n", + " 'love',\n", + " 'pendants'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beauty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apparel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/printable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pendant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heart',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beads',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/necklace',\n", + " 'https://www.turbosquid.com/Search/3D-Models/love',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pendants'],\n", + " 'Indian Style Heart pendant for wedding and Casual use. Preferred Metal: Gold and silver. Gemsize: 1.85mm Thickness: 1.00mmPictures Contains Model Weight If you Want to customize this model before purchasing, Increasing or decreasing Thickness andSize of the piece. Please contact me. i will be happy to obliged.*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review'],\n", + " ['3D Barrel model',\n", + " 'iShad',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-21',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'industrial', 'industrial container', 'barrel', 'steel barrel'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/barrel',\n", + " 'https://www.turbosquid.com/3d-model/steel-barrel'],\n", + " ['Barrel', 'FBX', 'Unreal', 'Blender', 'Substance'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/barrel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/substance'],\n", + " 'Single Barrel made on blander and textured on substance painter.verts:336edges:620faces:285Mesh .fbx + uv + material for unreal'],\n", + " ['Free sample of 3 EARS with high poly and low poly 3D model 3D model',\n", + " 'patrickart90',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-21',\n", + " '\\n\\n\\nOther obj\\n\\n\\n\\n\\nOther fbx\\n\\n',\n", + " ['3D Model', 'science', 'anatomy', 'superficial anatomy', 'ear'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/anatomy',\n", + " 'https://www.turbosquid.com/3d-model/superficial-anatomy',\n", + " 'https://www.turbosquid.com/3d-model/ear'],\n", + " ['anatomy',\n", + " 'character',\n", + " 'human',\n", + " 'tribe',\n", + " 'native',\n", + " 'ears',\n", + " 'earring',\n", + " 'girl',\n", + " 'male',\n", + " 'realistic',\n", + " 'facial',\n", + " 'face',\n", + " 'head',\n", + " 'person',\n", + " '3d',\n", + " 'game',\n", + " 'shape',\n", + " 'creation',\n", + " 'tool'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tribe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/native',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ears',\n", + " 'https://www.turbosquid.com/Search/3D-Models/earring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/girl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/facial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/face',\n", + " 'https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/person',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shape',\n", + " 'https://www.turbosquid.com/Search/3D-Models/creation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool'],\n", + " 'Hi guys, check this out. Here is free sample of 3 ears with high poly and low poly 3D model.Available formats: OBJ (3 separated high poly and low poly ears) -FBX (3 separated high poly and low poly ears)You can import these ears you like in zbrush and attached to your model, then dynamesh it! Or either way, u can manually connect the low poly mesh to your model as well.Repacking or selling by other persons is strictly not allowed!Feel free to use this collection of ears to speed up your process of creation. Thank you!Cheers!'],\n", + " ['Waste Recycling Building 3D model',\n", + " 'arch_3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-20',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building'],\n", + " ['waste',\n", + " 'recycling',\n", + " 'building',\n", + " 'recycle',\n", + " 'block',\n", + " 'modern',\n", + " 'house',\n", + " 'trash',\n", + " 'apartment',\n", + " 'brick',\n", + " 'architecture',\n", + " 'exterior',\n", + " 'simple',\n", + " 'urban',\n", + " 'city',\n", + " 'American',\n", + " 'LA',\n", + " 'European',\n", + " 'England'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/waste',\n", + " 'https://www.turbosquid.com/Search/3D-Models/recycling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/recycle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/block',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apartment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/urban',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/american',\n", + " 'https://www.turbosquid.com/Search/3D-Models/la',\n", + " 'https://www.turbosquid.com/Search/3D-Models/european',\n", + " 'https://www.turbosquid.com/Search/3D-Models/england'],\n", + " 'GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Waste Recycling Building.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 9 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 11911 polygons- 13725 verticesTEXTURE INFORMATION:-- 7 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 5 JPG file.- 1018x1024 - 1 JPG file.- 1024x1021 - 1 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 11 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included.'],\n", + " ['Hobs collection 3D',\n", + " 'DDD_Artist',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-20',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'appliance',\n", + " 'household appliance',\n", + " 'kitchen appliance',\n", + " 'cooktop'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/appliance',\n", + " 'https://www.turbosquid.com/3d-model/household-appliance',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-appliance',\n", + " 'https://www.turbosquid.com/3d-model/cooktop'],\n", + " ['cooktop',\n", + " 'ceramic',\n", + " 'glass',\n", + " 'induction',\n", + " 'hob',\n", + " 'cooker',\n", + " 'stove',\n", + " 'heater',\n", + " 'built-in',\n", + " 'panel',\n", + " 'plate',\n", + " 'surface',\n", + " 'top',\n", + " 'zone',\n", + " 'home',\n", + " 'kitchen',\n", + " 'interior',\n", + " 'appliance',\n", + " 'appliances',\n", + " 'cooking',\n", + " 'cook'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cooktop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ceramic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/induction',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hob',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stove',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heater',\n", + " 'https://www.turbosquid.com/Search/3D-Models/built-in',\n", + " 'https://www.turbosquid.com/Search/3D-Models/panel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/surface',\n", + " 'https://www.turbosquid.com/Search/3D-Models/top',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/appliance',\n", + " 'https://www.turbosquid.com/Search/3D-Models/appliances',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooking',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cook'],\n", + " \"This is a collection of medium-detailed 3d models of hobs, made using 3ds max, rendered via Corona renderer.Textures are 1024px by wide sideEnvironment/lights setup includedYou can get it for free now! And please, don't forget to check my other productsThanks!\"],\n", + " ['Building 14 3D model',\n", + " 'arch_3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-20',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building'],\n", + " ['building',\n", + " 'block',\n", + " 'modern',\n", + " 'house',\n", + " 'home',\n", + " 'apartment',\n", + " 'brick',\n", + " 'architecture',\n", + " 'exterior',\n", + " 'office',\n", + " 'simple',\n", + " 'urban',\n", + " 'city',\n", + " 'beach',\n", + " 'American',\n", + " 'LA',\n", + " 'design',\n", + " 'European',\n", + " 'England'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/block',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apartment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/urban',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beach',\n", + " 'https://www.turbosquid.com/Search/3D-Models/american',\n", + " 'https://www.turbosquid.com/Search/3D-Models/la',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/european',\n", + " 'https://www.turbosquid.com/Search/3D-Models/england'],\n", + " 'GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Building 14.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 8 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 25331 polygons- 33896 verticesTEXTURE INFORMATION:-- 4 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 4 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 9 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included.'],\n", + " ['3D model Cartoon Character_1',\n", + " 'Xpro4b',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-20',\n", + " '',\n", + " ['3D Model', 'characters', 'people', 'man', 'cartoon man'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/man',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-man'],\n", + " ['Character',\n", + " 'low',\n", + " 'poly',\n", + " 'with',\n", + " 'bones',\n", + " 'game',\n", + " 'controlled',\n", + " 'cartoon',\n", + " 'ready',\n", + " 'for',\n", + " 'animation'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/with',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bones',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/controlled',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animation'],\n", + " 'FREE TO THE END OF THE WEEK !!!Low poly cartoon man model. Attention!!! All movements of the model and additional objects in the form of weapons in the photo are made as an example! Only a character model with bones and no animation will be present in the project!The project includes:- Model of low poly character (vert - 1082 edges -2147 faces - 1078) in format blend,FBX, OBJ.- Textures for the model with a resolution of 2048x2048 pixels in png format.Made UV scan without intersections. The name of the material corresponds to the name of the texture.'],\n", + " ['Building_1(1) model',\n", + " 'tkarci1',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-20',\n", + " '\\n\\n\\n3D Studio 2018\\n\\n\\n\\n\\nFBX 2018\\n\\n\\n\\n\\nOther 2018\\n\\n\\n\\n\\nOBJ 2018\\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'commercial building',\n", + " 'office building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/commercial-building',\n", + " 'https://www.turbosquid.com/3d-model/office-building'],\n", + " ['house', 'building', 'vray', '3ds', 'max', 'architehture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architehture'],\n", + " 'High quality detailed exterior model. Modelled with 3ds Max 2018 and rendered with V-Ray 4.1 V-Ray Lighting, environment, all textures and materials are included.You can use this modern design in games or projects.Because the coating quality is high, rendering may take a long time, but I received the rendering in a short time.In addition, since the modeling is entirely mine, almost all of them are made as poly modeling.Changing the Colors of the Models is very easy.I tried to keep the price cheap.Thanks...'],\n", + " ['Sc-fi Mixer 01 3D',\n", + " 'BartalamBane',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-20',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'technology', 'electrical accessories', 'induction coil'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/electrical-accessories',\n", + " 'https://www.turbosquid.com/3d-model/induction-coil'],\n", + " ['SciFi',\n", + " 'UE4',\n", + " 'blender',\n", + " 'industry',\n", + " 'technology',\n", + " 'gamedev',\n", + " 'lowpoly',\n", + " 'device',\n", + " 'electronics',\n", + " 'future',\n", + " 'science',\n", + " 'laboratory',\n", + " 'cyberpunk',\n", + " 'leveldesign',\n", + " 'PBR'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/scifi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ue4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/technology',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gamedev',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/device',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/future',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laboratory',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cyberpunk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leveldesign',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr'],\n", + " \"3D Low Poly Model 'Sc-fi Mixer 01' for Game Engines.This 'Sc-fi Mixer 01' can be used as an element of the environment at your game level, or for other purposes.The model was tested on the game engine UE4.- Model format:1. FBX2. Obj3. Blender\"],\n", + " ['3D Gladius model',\n", + " 'woxec',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-19',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/gladius'],\n", + " ['low', 'poly', 'pbr', 'melee', 'weapon', 'sword', 'gladius'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gladius'],\n", + " 'This is a high quality low poly ancient Gladius. Modeled in 3ds max and textured in Substance Painter.FBX,MAX, OBJ files are provided.TEXTURES2048 and 2048 resolutions are provided.Base color Height Metallic AO Normal RoughnessUnity3D-Albedo -Normal -MetallicUE4-Base Color -Normal -OcclusionRoughnessMetallic'],\n", + " ['Game-ready Spaceship Free low-poly 3D model 3D',\n", + " 'thomas simon mattia',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-19',\n", + " '\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'spacecraft',\n", + " 'science fiction spacecraft',\n", + " 'space battleship'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/science-fiction-spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/space-battleship'],\n", + " ['spaceship', 'spacecraft', 'space', 'starfighter', 'starship', 'sci-fi'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/spaceship',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spacecraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/space',\n", + " 'https://www.turbosquid.com/Search/3D-Models/starfighter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/starship',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sci-fi'],\n", + " \"I'm giving away this model I've put a big effort on for free, please rate and comment, it would help me a lotPBR Low-poly VR/AR Game-ready 3D model of a spaceshipA Corvette is a small starfighter swith light arms. Due to its high maneuverability it's great in atmoshere-level battlefields.The model is great for game development, VFX, AR/VR and other real-time applications.Works in Unity, Unreal Engine and suchIncludes: .fbx, .obj, .dae, .3ds, .ply\"],\n", + " ['Nelson Swag Leg Rectangular Dining Table 3D',\n", + " '3Dmitruk',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-19',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX 2009\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'dining table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/dining-table'],\n", + " ['George',\n", + " 'Nelson',\n", + " 'Swag',\n", + " 'desk',\n", + " 'Scandinavian',\n", + " 'Furniture',\n", + " 'Danish',\n", + " 'wooden',\n", + " 'mid-century',\n", + " 'midcentury',\n", + " 'table',\n", + " 'dinner',\n", + " 'traditional',\n", + " 'trendy',\n", + " 'walnut',\n", + " 'minimalism'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/george',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nelson',\n", + " 'https://www.turbosquid.com/Search/3D-Models/swag',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/danish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century',\n", + " 'https://www.turbosquid.com/Search/3D-Models/midcentury',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dinner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/traditional',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trendy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/walnut',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalism'],\n", + " 'Dimensions: 915 x 1370 x 750 mm;2 different table top materials are available.- Lighting setup is not included in the file!- No additional plugin is needed to open the model.- High quality models. Detailed enough for close-up renders.- The models is highly accurate and based on the manufacturers original dimensions and technical data.- In the archive you can find files in the format .max 2011, vray .fbx, .obj, .3ds- Geometry: Polygonal- Polygons: 23,088- Vertices: 23,184- Textures: Yes- Materials: Yes- Rigged: No- Animated: No- UV Mapped: Yes- Unwrapped UVs: Yes, non-overlapping'],\n", + " ['3D Nelson Swag Leg Rectangular Work Table',\n", + " '3Dmitruk',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-19',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX 2009\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'desk', 'writing desk'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk',\n", + " 'https://www.turbosquid.com/3d-model/writing-desk'],\n", + " ['George',\n", + " 'Nelson',\n", + " 'Swag',\n", + " 'desk',\n", + " 'Scandinavian',\n", + " 'Furniture',\n", + " 'Danish',\n", + " 'wooden',\n", + " 'mid-century',\n", + " 'midcentury',\n", + " 'table',\n", + " 'traditional',\n", + " 'walnut',\n", + " 'work',\n", + " 'space'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/george',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nelson',\n", + " 'https://www.turbosquid.com/Search/3D-Models/swag',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/danish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century',\n", + " 'https://www.turbosquid.com/Search/3D-Models/midcentury',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/traditional',\n", + " 'https://www.turbosquid.com/Search/3D-Models/walnut',\n", + " 'https://www.turbosquid.com/Search/3D-Models/work',\n", + " 'https://www.turbosquid.com/Search/3D-Models/space'],\n", + " 'Dimensions: 915 x 1370 x 750 mm;2 different table top materials are available.- Lighting setup is not included in the file!- No additional plugin is needed to open the model.- High quality models. Detailed enough for close-up renders.- The models is highly accurate and based on the manufacturers original dimensions and technical data.- In the archive you can find files in the format .max 2011, vray .fbx, .obj, .3ds- Geometry: Polygonal- Polygons: 14,806- Vertices: 14,876- Textures: Yes- Materials: Yes- Rigged: No- Animated: No- UV Mapped: Yes- Unwrapped UVs: Yes, non-overlapping'],\n", + " ['3D Low Poly Fantasy Dagger 3D',\n", + " 'Blitzerpop',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'sword',\n", + " 'fantasy sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-sword'],\n", + " ['dagger',\n", + " 'knife',\n", + " 'asset',\n", + " 'lowpoly',\n", + " 'game',\n", + " 'enchanted',\n", + " 'rune',\n", + " 'water',\n", + " 'elemental'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dagger',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/enchanted',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rune',\n", + " 'https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/elemental'],\n", + " '3D Dagger Game Ready Low Poly ModelPBR Textures 4096x4096 (Seperate for blade and the holder) - Hand Painted. (can be found under supporting items)1. Base color2. Roughness3. Normal4. Metallic5. Height6. EmissiveHigh poly .obj and .fbx file included.A very low poly model consisting of 426 polygons.Tested in Unity.'],\n", + " ['Fantasy Turtle Sculpture 3D model',\n", + " 'Diktas',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'statue', 'animal statue'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/statue',\n", + " 'https://www.turbosquid.com/3d-model/animal-statue'],\n", + " ['sculpting',\n", + " 'turtle',\n", + " 'dragon',\n", + " 'fantasy',\n", + " 'animal',\n", + " 'reptile',\n", + " 'underwater',\n", + " '3d',\n", + " 'model'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sculpting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/turtle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dragon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reptile',\n", + " 'https://www.turbosquid.com/Search/3D-Models/underwater',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model'],\n", + " 'Simple Sculpting. Turtle with Dragon head and cave on the back. Sculpting with Autodesk Maya 2018.'],\n", + " ['3D Mega Man Star Force: Wave Scanner (REDESIGN)',\n", + " 'Erick Bueno da Silva',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-18',\n", + " '',\n", + " ['3D Model',\n", + " 'technology',\n", + " 'video devices',\n", + " 'video games',\n", + " 'handheld game console'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/video-devices',\n", + " 'https://www.turbosquid.com/3d-model/video-games',\n", + " 'https://www.turbosquid.com/3d-model/handheld-game-console'],\n", + " ['Mega',\n", + " 'Man',\n", + " 'Star',\n", + " 'Force',\n", + " 'Ryuusei',\n", + " 'no',\n", + " 'Rockman',\n", + " 'Wave',\n", + " 'Scanner'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mega',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/star',\n", + " 'https://www.turbosquid.com/Search/3D-Models/force',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ryuusei',\n", + " 'https://www.turbosquid.com/Search/3D-Models/no',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rockman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wave',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scanner'],\n", + " '////////////////////////////////////////////////////////////////////////////////////////////////////////////// This is the second terminal in the mega man starforce series. It is first seen as the terminal of gemini spark in the anime, later it becomes the primary terminal after the wave transer is destroyed. Unfortunately it never made a apeanrence in the second starforce as it used the Star Carrier istead. Takara released a wave scanner handheld game that you cound connect to the NDS and use phsical battle card thru the wave scanner scaning the bar codes, The wave scanner design are inconsitent in the anime so i decided to make a redesign. THEME=REALISM/FUTURISM /+/-//-X+///////////////////////////////////////////////////////////////////////////////////////////////////////////////'],\n", + " ['Mosque model',\n", + " 'arch_3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-17',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'religious building', 'mosque'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/religious-building',\n", + " 'https://www.turbosquid.com/3d-model/mosque'],\n", + " ['3d',\n", + " 'model',\n", + " 'mosque',\n", + " 'muslim',\n", + " 'prayer',\n", + " 'space',\n", + " 'holy',\n", + " 'arab',\n", + " 'arabian',\n", + " 'asian',\n", + " 'building',\n", + " 'modern',\n", + " 'brick',\n", + " 'architecture',\n", + " 'exterior',\n", + " 'simple',\n", + " 'urban',\n", + " 'city',\n", + " 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mosque',\n", + " 'https://www.turbosquid.com/Search/3D-Models/muslim',\n", + " 'https://www.turbosquid.com/Search/3D-Models/prayer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/space',\n", + " 'https://www.turbosquid.com/Search/3D-Models/holy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arab',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arabian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/urban',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " 'GEOMETRY AND OBJECTS INFORMATION:-- Realistic 3D model of a Mosque.- Real-world scale in feet/inch.- No detailed interior included, only basic walls.- Model split into 9 objects.- objects attached for easy selection and objects are logically named.- Whole object is one group.FILE FORMATS:-- Original file format - 3ds max 2009 + Vray and Scanline version with materials- 3ds, obj, fbx (Multi Format)POLYCOUNT(without Subdivision):- 34967 polygons- 34584 verticesTEXTURE INFORMATION:-- 3 textures included.- All textures are in diffuse map.- All texture paths are cleared.TEXTURE SPECIFICATIONS:-- 1024x1024 - 3 JPG file.MATERIALS:-- 3ds max files included Standard materials and Vray-Shaders- 7 materials in one Multi Sub-Object.SCENE INFORMATION:- Render scene is not included.'],\n", + " ['3D Stair',\n", + " 'Brombur',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-17',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nOther 2016\\n\\n\\n\\n\\n3D Studio 2016\\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building components', 'stair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/stairs'],\n", + " ['stair', 'vray', 'architecture', 'wood', 'house'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/stair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house'],\n", + " 'Render VrayH- 3000 mmL- 3700 mmW-4000 mmArchives included:-3d max scene 2016 -3d max scene 2013 -OBJ -FBX -materials -3dsThanks for downloading my models. I will highly appreciate your opinion regarding the quality of my models.'],\n", + " ['Stylized Girl 2019 Free Edition 3D model',\n", + " 'Rodesqa',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-16',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'characters', 'people', 'woman', 'cartoon woman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/woman',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-woman'],\n", + " ['Stylized',\n", + " 'Female',\n", + " 'Girl',\n", + " 'High',\n", + " 'poly',\n", + " 'base',\n", + " 'lowpoly',\n", + " '3d',\n", + " 'blender',\n", + " 'Zbrush',\n", + " 'maya',\n", + " '3dsMax'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/stylized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/female',\n", + " 'https://www.turbosquid.com/Search/3D-Models/girl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/high',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/base',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zbrush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maya',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dsmax'],\n", + " 'With this package, you get all the object files both high and low poly and you get the Zbrush file.'],\n", + " ['simple stylus/pen 3D',\n", + " 'Minshu',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-16',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'office',\n", + " 'office supplies',\n", + " 'writing instrument',\n", + " 'pen',\n", + " 'stylus'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/office-category',\n", + " 'https://www.turbosquid.com/3d-model/office-supplies',\n", + " 'https://www.turbosquid.com/3d-model/writing-instrument',\n", + " 'https://www.turbosquid.com/3d-model/pen',\n", + " 'https://www.turbosquid.com/3d-model/stylus'],\n", + " ['stylus',\n", + " 'pen',\n", + " 'simple',\n", + " 'apple',\n", + " 'blender',\n", + " 'editable',\n", + " 'cycles',\n", + " 'render',\n", + " 'white'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/stylus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/editable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cycles',\n", + " 'https://www.turbosquid.com/Search/3D-Models/render',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white'],\n", + " '.blend container material and easily'],\n", + " ['3D Wooden Crate',\n", + " 'Shermadini',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-16',\n", + " '\\n\\n\\nOther textures\\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'box', 'wooden box'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/box',\n", + " 'https://www.turbosquid.com/3d-model/wooden-box'],\n", + " ['wood',\n", + " 'wooden',\n", + " 'crate',\n", + " 'box',\n", + " 'industrial',\n", + " 'cargo',\n", + " 'storage',\n", + " 'game',\n", + " 'prop',\n", + " 'low-poly',\n", + " 'pbr',\n", + " 'ue4',\n", + " 'unity',\n", + " 'unreal',\n", + " 'exterior',\n", + " 'container',\n", + " 'other'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cargo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/storage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/prop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ue4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/other'],\n", + " 'Wooden Crate/Box 3D model.AVAILABLE FILE FORMATS: -FBX -OBJ -Collada(DAE) -STLFREE low-poly wooden crate/box. Can be used for renderings with high detail or games. Was tested in Blender 2.8 as well as UE4. Includes Textures like: Albedo, Normal, Roughness, AO, Displacement. Has only 78 Polys and 80 Faces. You can check out more models like this by clicking on my name.IF YOU HAVE ANY PROBLEMS, CONTACT ME.'],\n", + " ['Gothic art Wall Corner Design 3D model',\n", + " 'Toon coffer',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-15',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'interior design', 'finishes', 'molding', 'corner element'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/finishes',\n", + " 'https://www.turbosquid.com/3d-model/molding',\n", + " 'https://www.turbosquid.com/3d-model/corner-element'],\n", + " ['ornament', 'VIP', 'Gothic', 'art', 'wall', 'luxury', 'ornaments', 'decor'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ornament',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vip',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gothic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/luxury',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ornaments',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor'],\n", + " 'this is free model for the all artist you can use this model but you cant sale this model because this is free open model ( you can download this model for practices not for sale )more information go and search on youtube ( toon coofer )'],\n", + " ['RCA Plug 3D',\n", + " 'cesarfrias31',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-13',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'technology',\n", + " 'electrical accessories',\n", + " 'a/v connector',\n", + " 'rca jack'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/electrical-accessories',\n", + " 'https://www.turbosquid.com/3d-model/av-connector',\n", + " 'https://www.turbosquid.com/3d-model/rca-jack'],\n", + " ['electronics',\n", + " 'video',\n", + " 'audio',\n", + " 'rca',\n", + " 'plug',\n", + " 'tv',\n", + " 'television',\n", + " 'conectors'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/electronics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/video',\n", + " 'https://www.turbosquid.com/Search/3D-Models/audio',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rca',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/television',\n", + " 'https://www.turbosquid.com/Search/3D-Models/conectors'],\n", + " 'Like it if you liked the model. Thank you. Features:\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Low poly model\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Optimized for the highest performance\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Colors can be easily modified\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Original model optimized for Cycles Blender\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview)'],\n", + " ['3D KALININ',\n", + " 'edikm1',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-13',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'statue', 'bust'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/statue',\n", + " 'https://www.turbosquid.com/3d-model/bust'],\n", + " ['Mikhail',\n", + " 'Kalinin',\n", + " '1917',\n", + " 'socialism',\n", + " 'is',\n", + " 'equality',\n", + " 'independence',\n", + " 'progress'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mikhail',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kalinin',\n", + " 'https://www.turbosquid.com/Search/3D-Models/1917',\n", + " 'https://www.turbosquid.com/Search/3D-Models/socialism',\n", + " 'https://www.turbosquid.com/Search/3D-Models/is',\n", + " 'https://www.turbosquid.com/Search/3D-Models/equality',\n", + " 'https://www.turbosquid.com/Search/3D-Models/independence',\n", + " 'https://www.turbosquid.com/Search/3D-Models/progress'],\n", + " 'Mikhail Kalinin (November 19, 1875 - June 3, 1946)vertices - 21816 , faces - 43628,1.diff.jpg - 8192x81922.cavity .tiff - 8192x81923.object_normals.tiff - 8192x81924.tangent_normals .tiff - 8192x8192Feel free to leave your opinion in comments.'],\n", + " ['3D Atlantic bluefin tuna',\n", + " 'mimi3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-12',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'animal', 'sea creatures', 'fish', 'tuna'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/sea-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fish-animal',\n", + " 'https://www.turbosquid.com/3d-model/tuna'],\n", + " ['sea', 'ocean', 'marine', 'animal', 'fish', 'atlantic', 'bluefin'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ocean',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/atlantic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bluefin'],\n", + " 'This lowpoly model is using 3dmax 2016 the texture is 1024x1024 .TGAavailable in .FBX, .OBJ, .MAX(this is sample)'],\n", + " ['Centaur model',\n", + " 'ByrdRigs',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-12',\n", + " '',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster',\n", + " 'centaur'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster',\n", + " 'https://www.turbosquid.com/3d-model/centaur'],\n", + " ['Centaur', 'Rigged', 'Male', 'Human', 'Mythology', 'Creatures'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/centaur',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mythology',\n", + " 'https://www.turbosquid.com/Search/3D-Models/creatures'],\n", + " 'A centaur that was modeled by baqstudio. I rigged and changed some of the materials a little. All I ask is that you give credit to baqstudio for the model and ByrdRigs for the rig! Enjoy!'],\n", + " ['Canada Avro CF-105 (Rev) Arrow Solid Assembly Model ( Free) model',\n", + " 'RodgerSaintJohn',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-12',\n", + " '\\n\\n\\nOther Step 203\\n\\n\\n\\n\\nOther Sat 17\\n\\n\\n\\n\\nAutoCAD drawing \\n\\n\\n\\n\\nDXF \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'aircraft',\n", + " 'airplane',\n", + " 'military airplane',\n", + " 'fighter plane',\n", + " 'fighter jet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/aircraft',\n", + " 'https://www.turbosquid.com/3d-model/airplane',\n", + " 'https://www.turbosquid.com/3d-model/military-airplane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-plane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-jet'],\n", + " ['Canada',\n", + " 'Avro',\n", + " 'CF105',\n", + " 'Arrow',\n", + " 'Aircraft',\n", + " 'Airplane',\n", + " 'Structure',\n", + " 'Aeronautics',\n", + " 'Aerodynamics',\n", + " 'Engine',\n", + " 'Propulsion',\n", + " 'Interceptor',\n", + " 'Fighter'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/canada',\n", + " 'https://www.turbosquid.com/Search/3D-Models/avro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cf105',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arrow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aircraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/airplane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/structure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aeronautics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aerodynamics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/propulsion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interceptor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fighter'],\n", + " 'The Canada Avro CF-105 Arrow Solid Assembly Model is defined by 23 sub assembly modules consisting of 200 part primitives.All of my models are developed specifically for use by conceptual designers, experimenters, educators, students and hobbyists. The models are constructed from scratch employing scaling of publicly released simple 3 view drawings and experienced based assumptions. Although general representation is very good - detail accuracy and accountability can be compromised by this approach'],\n", + " ['3D Sovremenny Warship LOD1',\n", + " 'ES3DStudios',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-12',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'vessel', 'military vessel', 'destroyer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vessel',\n", + " 'https://www.turbosquid.com/3d-model/military-vessel',\n", + " 'https://www.turbosquid.com/3d-model/destroyer'],\n", + " ['Sovremenny',\n", + " 'Warship',\n", + " 'Game',\n", + " 'Destroyer',\n", + " 'Frigate',\n", + " 'Russian',\n", + " 'Russia',\n", + " 'Navy',\n", + " 'Naval',\n", + " 'USSR',\n", + " 'Soviet',\n", + " 'Battle',\n", + " 'Fleet',\n", + " 'Warfare',\n", + " 'War',\n", + " 'LOD',\n", + " 'Nastoychivyy',\n", + " 'DDG',\n", + " 'DD',\n", + " 'Guided',\n", + " 'Missile',\n", + " 'Ship'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sovremenny',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warship',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/destroyer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/frigate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/russian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/russia',\n", + " 'https://www.turbosquid.com/Search/3D-Models/navy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/naval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ussr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soviet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fleet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warfare',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lod',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nastoychivyy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ddg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/guided',\n", + " 'https://www.turbosquid.com/Search/3D-Models/missile',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ship'],\n", + " \"Sovremenny Class Destroyer LOD1 (level of detail model) untextured. Higher detail fully textured versions of this asset are also available, please see TS I.D. 867321 Instructions on how to obtain the textures are included.Part of a huge collection available from ES3DStudios. Many more linked sets available from ES3DStudios in a range of formats. Click 'ES3DStudios' for full range. Renders created with 3ds Max mental ray.Native format is 3DSMax 2014. No 3rd party plugins required. This model is not intended for subdivision. Model built to real-world scale - units used are meters.-----------------\"],\n", + " ['Tobias Lion Maya rig 3D',\n", + " 'cvbtruong',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-12',\n", + " '',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'big cats',\n", + " 'lion'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/big-cats',\n", + " 'https://www.turbosquid.com/3d-model/lion'],\n", + " ['lion',\n", + " 'realistic',\n", + " 'game',\n", + " 'unreal',\n", + " 'engine',\n", + " 'unity',\n", + " 'big',\n", + " 'cat',\n", + " 'male'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/big',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male'],\n", + " 'Tobias Lion Maya rig.Modeled and textured by Tobias Frey.Rigged by Truong Cg Artist.Available for non-commercial use only. Software: Maya 2014 (or higher). Rigged using Advanced Skeleton.Happy animating!Truong Cg artistps: click on my username for more. Cheers.'],\n", + " ['Mug 3D model',\n", + " 'Abscay',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-11',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup'],\n", + " ['fbx', 'obj', 'blend'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blend'],\n", + " 'mug normal'],\n", + " ['Tree Stump 3D model',\n", + " 'Ideas Unlimited',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-11',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'plants',\n", + " 'plant elements',\n", + " 'tree trunk',\n", + " 'tree stump'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/plants',\n", + " 'https://www.turbosquid.com/3d-model/plant-elements',\n", + " 'https://www.turbosquid.com/3d-model/trunk',\n", + " 'https://www.turbosquid.com/3d-model/tree-stump'],\n", + " ['tree',\n", + " 'stump',\n", + " 'nature',\n", + " 'scan',\n", + " 'scanned',\n", + " 'realistic',\n", + " 'wood',\n", + " 'woods',\n", + " 'plant',\n", + " 'old',\n", + " 'forest',\n", + " 'backgrounds',\n", + " 'elements',\n", + " 'bark',\n", + " 'trunk',\n", + " 'ground',\n", + " 'environment',\n", + " 'cracked',\n", + " 'log',\n", + " 'branch',\n", + " 'landscape'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stump',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scanned',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woods',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/forest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/backgrounds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/elements',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bark',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trunk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ground',\n", + " 'https://www.turbosquid.com/Search/3D-Models/environment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cracked',\n", + " 'https://www.turbosquid.com/Search/3D-Models/log',\n", + " 'https://www.turbosquid.com/Search/3D-Models/branch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/landscape'],\n", + " 'Tree Stump 3D Model. Model recreated from 3D Scan Data and completed in Lightwave 3D and Cinema 4DHigh resolution, fully detailed and textured Tree Stump.Detailed enough for close-up renders. Comes with detailed textures.Originally modelled in Lightwave 3d. Final images rendered with Lightwave. This model has been created to real world scale giving very accurate detail and dimensions.Extreme care has been taken to keep polygon count to a minimum to ease render times. Lightwave and Cinema 4D version comes with scene files with object parented to null object.Main features:* This model is suitable for use in broadcast, high-res, advertising, design visualization etc. * The model is an accurate with the real world size and scale.* Model resolutions are optimized for polygon efficiency* No special plugins needed to open scene.* Created with Lightwave 3dFile formats:* Lightwave.lwo* Cinema 4D .C4D* .obj (Multi Format)Notes:* Lightwave and Cinema 4D scene files are included.* Unit system is set to metric.* Model size 800mm* All textures and materials are included and assigned to their relevant objects* 4 textures are included:-Stump_C .png 4096 x 4096Stump _D .png 4096 x 4096Stump _N .png 4096 x 4096Stump _B .png 8192 x 8192Polycount:* 14789 faces and 14531 vertices* Quads: 13986* Triangles: 803* Points: 14531* Previews rendered in Lightwave 3d* Originally rendered in 2015.3 but is backwards compatible.Interested in other models, just click on my user name to see complete selection.Thank you'],\n", + " ['Napkin with old napkin ring 3D model',\n", + " 'Diza',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-11',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'napkin'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/napkin'],\n", + " ['napkin',\n", + " 'ring',\n", + " 'blackened',\n", + " 'silver',\n", + " 'classical',\n", + " 'restaurant',\n", + " 'eating',\n", + " 'towel',\n", + " 'dinning',\n", + " 'set',\n", + " 'hand',\n", + " 'serviette',\n", + " 'accessories',\n", + " 'vray',\n", + " 'max',\n", + " 'detaile'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/napkin',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blackened',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/restaurant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eating',\n", + " 'https://www.turbosquid.com/Search/3D-Models/towel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dinning',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/serviette',\n", + " 'https://www.turbosquid.com/Search/3D-Models/accessories',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/detaile'],\n", + " 'Classical napkin with right.Model is built to real-world scaleUnits used: millimetersModel Dimensions: 210 mm x 330 mm x 85 mm'],\n", + " ['3D Asteroid small model',\n", + " 'Mykhailo Ohorodnichuk',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-10',\n", + " '',\n", + " ['3D Model', 'science', 'astronomy', 'asteroid'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/astronomy',\n", + " 'https://www.turbosquid.com/3d-model/asteroid'],\n", + " ['3D',\n", + " 'model',\n", + " 'Science',\n", + " 'Astronomy',\n", + " 'Asteroids',\n", + " 'SGI',\n", + " 'Animation',\n", + " 'Space',\n", + " 'Meteor',\n", + " 'Traditional',\n", + " 'Game',\n", + " 'art',\n", + " 'aerolite'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/astronomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asteroids',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sgi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/space',\n", + " 'https://www.turbosquid.com/Search/3D-Models/meteor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/traditional',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aerolite'],\n", + " 'This is pack of 6 small asteroids for your projectasteroid 1 - 704 facesasteroid 2 - 761 facesasteroid 3 - 700 facesasteroid 4 - 636 facesasteroid 5 - 716 facesasteroid 6 - 856 facesWith 2K color and normal textures'],\n", + " ['a monument to the terror in Russia 3D model',\n", + " 'edikm1',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-10',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'landscape architecture',\n", + " 'monument'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/landscape-architecture',\n", + " 'https://www.turbosquid.com/3d-model/monument'],\n", + " ['a',\n", + " 'monument',\n", + " 'to',\n", + " 'the',\n", + " 'terror',\n", + " 'Russia',\n", + " 'suppression',\n", + " 'of',\n", + " 'rebellious',\n", + " 'slaves',\n", + " 'in',\n", + " 'Russia'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/a',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monument',\n", + " 'https://www.turbosquid.com/Search/3D-Models/to',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/terror',\n", + " 'https://www.turbosquid.com/Search/3D-Models/russia',\n", + " 'https://www.turbosquid.com/Search/3D-Models/suppression',\n", + " 'https://www.turbosquid.com/Search/3D-Models/of',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rebellious',\n", + " 'https://www.turbosquid.com/Search/3D-Models/slaves',\n", + " 'https://www.turbosquid.com/Search/3D-Models/in',\n", + " 'https://www.turbosquid.com/Search/3D-Models/russia'],\n", + " 'vertices - 27661 , faces - 55318,1.diff.jpg - 8192x81922.cavity .tiff - 8192x81923.object_normals.tiff - 8192x81924.tangent_normals .tiff - 8192x8192Feel free to leave your opinion in comments.'],\n", + " ['3D model Simple Cup',\n", + " 'IMANSAHA',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-09',\n", + " '',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup'],\n", + " ['Simple', 'look', 'standard', 'cup', 'or', 'coffee', 'mug'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/look',\n", + " 'https://www.turbosquid.com/Search/3D-Models/standard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/or',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mug'],\n", + " 'Model dimension :Length - 10 c.mWidth - 5 c.mThickness - 0.7 c.m'],\n", + " ['Knife model',\n", + " 'Game mob',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-08',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'knife',\n", + " 'hunting knife'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/knife',\n", + " 'https://www.turbosquid.com/3d-model/hunting-knife'],\n", + " ['free', 'Knife'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knife'],\n", + " 'Simple knife, one of my first project enjoy.'],\n", + " ['Chandelier-GameReady 3D model',\n", + " 'Mimzz',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-08',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp',\n", + " 'chandelier'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp',\n", + " 'https://www.turbosquid.com/3d-model/chandelier'],\n", + " ['chandelier', 'gameasset'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chandelier',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameasset'],\n", + " \"A game ready chandelier that comes with ready-made textures. I used this for my personal project and I'm willing to give it away to other peoples needs. This took 5 days to make with many details added.\"],\n", + " ['3D Marquise ring',\n", + " 'KhatriCad',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-08',\n", + " '\\n\\n\\nSTL 5.0\\n\\n\\n\\n\\nOBJ 5.0\\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'ring',\n", + " 'gold ring'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/ring',\n", + " 'https://www.turbosquid.com/3d-model/gold-ring'],\n", + " ['3D',\n", + " 'Model',\n", + " 'and',\n", + " 'beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'fashion',\n", + " 'ring',\n", + " 'sterling',\n", + " 'STL',\n", + " 'Printable',\n", + " 'Print',\n", + " 'Marquise',\n", + " 'Rose',\n", + " 'Petals'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beauty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apparel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sterling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/printable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marquise',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rose',\n", + " 'https://www.turbosquid.com/Search/3D-Models/petals'],\n", + " 'Beautiful Leaf Petals Ring or Marquise shaped ring for gold and silver purpose.Thickness: 1.5mm Ringsize: 18mm Diameter USA ring Size: 8 Gem Size: 1.55 mmPictures Contains Model WeightIf you Want to customize this model before purchasing, Increasing or decreasing Thickness andSize of the piece. Please contact me. i will be happy to obliged.*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review'],\n", + " ['3D Heart Shape Dual Ring',\n", + " 'KhatriCad',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-08',\n", + " '\\n\\n\\nSTL 5.0\\n\\n\\n\\n\\nOBJ 5.0\\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'ring',\n", + " 'fashion ring'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/ring',\n", + " 'https://www.turbosquid.com/3d-model/fashion-ring'],\n", + " ['3D',\n", + " 'Model',\n", + " 'and',\n", + " 'beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'fashion',\n", + " 'ring',\n", + " 'Heart',\n", + " 'Shaped',\n", + " 'Wedding',\n", + " 'STL',\n", + " 'Printable',\n", + " 'Print'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beauty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apparel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heart',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shaped',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wedding',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/printable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print'],\n", + " 'Heart Shape Dual Engagement ringGemsize: 1.65mm Thickness: 2.2mm (Idle for Gold, Silver and other Metal)i can reduce Thickness if requested.If you Want to customize this model before purchasing like Increasing and decreasing Thickness or Size of the piece. Please contact me. i will happy to obliged*All My STLS are Repaired In Appropriate Printing Software Before publish*If you Like my work please leave a review'],\n", + " ['3D Oval Shaped Earrings model',\n", + " 'KhatriCad',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-08',\n", + " '\\n\\n\\nSTL 5.0\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'earrings'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/earrings'],\n", + " ['Jewelry',\n", + " 'Earrings',\n", + " 'Gold',\n", + " 'Silver',\n", + " 'Apparel',\n", + " 'Indian',\n", + " '3D',\n", + " 'model',\n", + " 'Fashion',\n", + " 'Engagement',\n", + " 'Ring',\n", + " 'Style'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/earrings',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apparel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indian',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engagement',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/style'],\n", + " 'Pave Oval Shaped Indian Style Earrings Designed for Gold and Silver casting. Thickess is appropriate for Silver casting. Althrough if request i can change thickness and reduce it if anyone want less Weight Item for Gold.Thickness: 1.0mmGem size: 1.55 and 1.35mm Comes with 2 piecesIf you Want to customize this model before purchasing like Increasing and decreasing Thickness or Size of the piece. Please contact me. i will happy to obliged***All My STLS are Repaired In Appropriate Printing Software Before publish***'],\n", + " ['Simple box model',\n", + " 'andylights',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-08',\n", + " '',\n", + " ['3D Model', 'architecture', 'building components', 'balustrade'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/balustrade'],\n", + " ['box'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/box'],\n", + " 'Just a simple box Its uselessMaybe not to you though'],\n", + " ['3D model Wicker armchair',\n", + " 'YKPRO',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-07',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'furnishings',\n", + " 'seating',\n", + " 'chair',\n", + " 'dining chair',\n", + " 'captains chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/dining-chair',\n", + " 'https://www.turbosquid.com/3d-model/captains-chair'],\n", + " ['chair', 'seat', 'armchair', 'furniture', 'interior', 'wicher'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armchair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wicher'],\n", + " 'Wicker armchairCreated with 3d max 2018 (saved as 2015 version)Adapted for Corona render and VrayHigh quality of modelFile formats:max 3ds Max 2015fbxobj'],\n", + " ['3D deer model',\n", + " 'oryx1234',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-07',\n", + " '\\n\\n\\nOBJ 2018\\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'deer',\n", + " 'cartoon reindeer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/deer',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-reindeer'],\n", + " ['deer', 'wild', 'animal', 'antelope', 'blender'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/deer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wild',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antelope',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender'],\n", + " \"This model has no texture or materials since i couldn't figure out any way to put them in.\"],\n", + " ['F16C Falcon Watermark 3D',\n", + " 'ES3DStudios',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-07',\n", + " '\\n\\n\\nOther Textures\\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nAutoCAD drawing \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOpenFlight \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nVRML \\n\\n\\n\\n\\nDirectX \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'aircraft',\n", + " 'airplane',\n", + " 'military airplane',\n", + " 'fighter plane',\n", + " 'fighter jet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/aircraft',\n", + " 'https://www.turbosquid.com/3d-model/airplane',\n", + " 'https://www.turbosquid.com/3d-model/military-airplane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-plane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-jet'],\n", + " ['F16',\n", + " 'F-16',\n", + " 'F16C',\n", + " 'F-16C',\n", + " 'Viper',\n", + " 'USAF',\n", + " 'Game',\n", + " 'LOD',\n", + " 'Sim',\n", + " 'US',\n", + " 'Air',\n", + " 'Force',\n", + " 'Fighter',\n", + " 'Jet',\n", + " 'Warplane',\n", + " 'Attack',\n", + " 'HARM',\n", + " 'JDAM',\n", + " 'American',\n", + " 'Falcon',\n", + " 'Mod',\n", + " 'Block',\n", + " '50'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/f16',\n", + " 'https://www.turbosquid.com/Search/3D-Models/f-16',\n", + " 'https://www.turbosquid.com/Search/3D-Models/f16c',\n", + " 'https://www.turbosquid.com/Search/3D-Models/f-16c',\n", + " 'https://www.turbosquid.com/Search/3D-Models/viper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/usaf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lod',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sim',\n", + " 'https://www.turbosquid.com/Search/3D-Models/us',\n", + " 'https://www.turbosquid.com/Search/3D-Models/air',\n", + " 'https://www.turbosquid.com/Search/3D-Models/force',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fighter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warplane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/attack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/harm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jdam',\n", + " 'https://www.turbosquid.com/Search/3D-Models/american',\n", + " 'https://www.turbosquid.com/Search/3D-Models/falcon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mod',\n", + " 'https://www.turbosquid.com/Search/3D-Models/block',\n", + " 'https://www.turbosquid.com/Search/3D-Models/50'],\n", + " 'F16 Falcon low poly 3D model (free version) of the US Air Force. Single 512 square diffuse texture, with watermark. This asset is part of a huge related collection available from ES3DStudios.Texture Res: Single 512 x 512 diffuse map (with watermark).Please note: texture comes in its own zip download. (download this file with whatever format you require). Higher poly resolution versions of this model are also available - approx 10k polys (TS I.D 792387)This free version is provided as a sample and is not for commercial use.-----------'],\n", + " ['3D spinny thing',\n", + " 'Razeh',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-06',\n", + " '',\n", + " ['3D Model', 'toys and games', 'toys', 'spinning top', 'fidget spinner'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/toys',\n", + " 'https://www.turbosquid.com/3d-model/spinning-top',\n", + " 'https://www.turbosquid.com/3d-model/fidget-spinner'],\n", + " ['spin'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/spin'],\n", + " 'This is a 3d model of a fidget spinner.'],\n", + " ['TV-Low Poly 3D model',\n", + " 'cesarfrias31',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-06-06',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/video-devices',\n", + " 'https://www.turbosquid.com/3d-model/tv',\n", + " 'https://www.turbosquid.com/3d-model/flatscreen-television'],\n", + " ['TV', 'televisions', 'screen', 'display', 'video'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/televisions',\n", + " 'https://www.turbosquid.com/Search/3D-Models/screen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/display',\n", + " 'https://www.turbosquid.com/Search/3D-Models/video'],\n", + " 'Like it if you liked the model. Thank you. Features:\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Low poly model\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Optimized for the highest performance\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Colors can be easily modified\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Original model optimized for Cycles Blender\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0Includes texture This model has been done natively in Blender 2.80(Depending on the software that is using the final result of the render may vary according to the preview)'],\n", + " ['3D model Bed 02',\n", + " 'sandrarocko',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-06',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'bed', 'queen bed'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/bed',\n", + " 'https://www.turbosquid.com/3d-model/queen-bed'],\n", + " ['bed', 'bedroom', 'interior', 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " \"3D model of the Bed*The materials are available in the blend file format*Scene lighting and is included in .blend file*Renderer Cycles in Blender*All the objects of the model are named*X,Y,Z (0,0,0) *Subdivision level: 1/2*Wireframe on subdivision level: 1/2*For additional formats, all materials are included in 'supporting items'\"],\n", + " ['3D Black Hanging Lamp 3D Model model',\n", + " 'cgaxis',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-05',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nOther textures\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['black',\n", + " 'hanging',\n", + " 'glass',\n", + " 'decorative',\n", + " 'lamp',\n", + " 'lightsource',\n", + " 'electric',\n", + " 'lighting',\n", + " 'power',\n", + " 'lightbulb',\n", + " 'interior'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/black',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hanging',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decorative',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lightsource',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/power',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lightbulb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior'],\n", + " 'Black hanging lamp 3d model with glass lightshade and decorative lightbulb. Compatible with 3ds max 2010 (V-Ray, Mental Ray, Corona) or higher, Cinema 4D R15 (V-Ray, Advanced Renderer), Unreal Engine, FBX and OBJ.'],\n", + " ['3D Sword',\n", + " 'blurrypxl',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-05',\n", + " '',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'longsword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/longsword'],\n", + " ['weapon', 'melee', 'two-handed', 'sword'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/two-handed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword'],\n", + " 'This is my first upload, i dunno to descript it. I just hope you like it.'],\n", + " ['3D model WW2 Czech Hedgehog Anti Tank',\n", + " 'The3DBadger',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-05',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'site components', 'military obstacle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/military-obstacle'],\n", + " ['ww2',\n", + " 'czech',\n", + " 'hedgehog',\n", + " 'anti',\n", + " 'tank',\n", + " 'stopper',\n", + " 'trap',\n", + " 'the3dbadger',\n", + " '3d',\n", + " 'pbr',\n", + " 'model',\n", + " 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ww2',\n", + " 'https://www.turbosquid.com/Search/3D-Models/czech',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hedgehog',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anti',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tank',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stopper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trap',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the3dbadger',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " \"Ready to render PBR 3D model of a Czech hedgehog, created in Maya 2018.The Czech hedgehog is a static anti-tank obstacle defense made of metal angle beams or I-beams (that is, lengths with an L- or I-shaped cross section). The hedgehog is very effective in keeping light to medium tanks and vehicles from penetrating a line of defense; it maintains its function even when tipped over by a nearby explosion. Although Czech hedgehogs may provide some scant cover for infantry, infantry forces are generally much less effective against fortified defensive positions than mechanized units.ABOUT- This model was originally created to be used in modern render engines- High quality polygonal model built to accurate real-world scale- PBR textures- Game ready- Optimized, non-overlapping UVs- Optimized mesh for maximum texel density- Relative texture paths- Clean scene that opens without any errorsSPECIFICATIONS- This model was created using real-life reference and is modeled in a real-world scale using meters- The .mb/.ma scene contains 1 object with correct naming and pivots for easy-use/animation- Total faces - 1876- Total vertices - 1945- Correct smoothing groups, centered pivot at 0,0,0- 1 Group (CzechHedgehog_grp)- All parts can be seperated easily to make custom groups if needed- 2 Display layers - Mesh, cameras + lights- Contains some poles on flat surfaces, but does not affect the model's renders whatsoeverFILE FORMATS- .mb (maya, native)- .ma (maya, native)- .obj- .fbxRENDERS- All shown images are rendered using Marmoset ToolbagTEXTURES- All nescessary maps are included to make sure the model can render in any modern engine- 1x CzechHedgehog PBR 4K 4096x2096 .png (Diffuse, Metallic, Roughness, AO, Normal, Glossiness, IOR, Reflection, MetallicSmoothness)Thank you for your support.The3DBadger\"],\n", + " ['3D semi auto rifle model',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-04',\n", + " '',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/raygun'],\n", + " ['smei', 'automatic', 'rifle', 'gun', 'fantasy'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/smei',\n", + " 'https://www.turbosquid.com/Search/3D-Models/automatic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rifle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy'],\n", + " 'A semi automatic rifle I made for fun.'],\n", + " ['CUP 3D',\n", + " 'lazaro322',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-04',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nCollada 1.5\\n\\n\\n\\n\\nDXF \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nVRML \\n\\n\\n\\n\\nDirectX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup'],\n", + " ['cup',\n", + " 'mug',\n", + " 'coffee',\n", + " 'tea',\n", + " 'drink',\n", + " 'ceramic',\n", + " 'glass',\n", + " 'kitchen',\n", + " 'editable',\n", + " 'subdivide',\n", + " 'low',\n", + " 'poly',\n", + " '3d',\n", + " 'model',\n", + " 'max',\n", + " 'fbx',\n", + " 'obj'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ceramic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/editable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/subdivide',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj'],\n", + " 'Mug. Model is 10 aprox------------------------------------------------------------------------------Native File Format: c4d'],\n", + " ['Polygonal island model',\n", + " 'lazaro322',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-04',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nDXF \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nDirectX \\n\\n\\n\\n\\nCollada 1.5\\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'island'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/island'],\n", + " ['landscape',\n", + " 'nature',\n", + " 'tree',\n", + " 'cloud',\n", + " 'horizon',\n", + " 'natural',\n", + " 'environment',\n", + " 'low',\n", + " 'poly',\n", + " 'quality',\n", + " 'lowpoly',\n", + " 'island',\n", + " 'stylized',\n", + " 'sky',\n", + " 'cartoon',\n", + " 'real',\n", + " 'time',\n", + " 'game',\n", + " 'engine',\n", + " 'pine',\n", + " '3d',\n", + " 'floating'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/landscape',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cloud',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horizon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/environment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/quality',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/island',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stylized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sky',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/real',\n", + " 'https://www.turbosquid.com/Search/3D-Models/time',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floating'],\n", + " 'Isla poligonal con detalle medio, modelada en Cinema 4D'],\n", + " ['3D Viking Helmet model',\n", + " 'HeeHee23',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-04',\n", + " '\\n\\n\\nOther 2016\\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'armour',\n", + " 'helmet',\n", + " 'military helmet',\n", + " 'medieval helmet',\n", + " 'viking helmet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/armour',\n", + " 'https://www.turbosquid.com/3d-model/helmet',\n", + " 'https://www.turbosquid.com/3d-model/military-helmet',\n", + " 'https://www.turbosquid.com/3d-model/medieval-helmet',\n", + " 'https://www.turbosquid.com/3d-model/viking-helmet'],\n", + " ['#helmet'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23helmet'],\n", + " 'Viking Helmet'],\n", + " ['3D Backdrop treeline with alpha channel',\n", + " 'Lewiw',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-03',\n", + " '',\n", + " ['3D Model', 'nature', 'landscapes', 'forest'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/forest'],\n", + " ['treeline',\n", + " 'treelines',\n", + " 'tree',\n", + " 'alpha',\n", + " 'channel',\n", + " 'transparent',\n", + " 'transparency',\n", + " 'png',\n", + " 'hdri',\n", + " 'backdrop',\n", + " 'image',\n", + " 'picture',\n", + " 'interior',\n", + " 'exterior',\n", + " 'background',\n", + " 'outdoor'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/treeline',\n", + " 'https://www.turbosquid.com/Search/3D-Models/treelines',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alpha',\n", + " 'https://www.turbosquid.com/Search/3D-Models/channel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transparent',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transparency',\n", + " 'https://www.turbosquid.com/Search/3D-Models/png',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hdri',\n", + " 'https://www.turbosquid.com/Search/3D-Models/backdrop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/image',\n", + " 'https://www.turbosquid.com/Search/3D-Models/picture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/background',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoor'],\n", + " 'WARNING! This is not a 3D model.(Easier to find with 3D model category.)This is a free pack of backdrop treelines. These are backdrop images for 3D scenes. They can be used eg. interior design, exterior scenes or anywhere to hide the edge of the plane. You can add life to your interior scene with these png images with alpha channel. These images react with the sun due to the alpha channels. This zip file cointains a blender file,a rendered image from the blender file and 7. Each of these images have different dimensions. The description information of the polygons and vertices, are fake. Lewiw'],\n", + " ['3D Realistic Machine Pistole (Gameready, rigged)',\n", + " 'renedominick1999',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-03',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther png\\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'firearms',\n", + " 'rifle',\n", + " 'assault rifle',\n", + " 'p90'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/assault-rifle',\n", + " 'https://www.turbosquid.com/3d-model/p90'],\n", + " ['Weapon',\n", + " 'Gun',\n", + " 'Machine',\n", + " 'Pistol',\n", + " 'Game',\n", + " 'rigged',\n", + " 'optimized',\n", + " '4k',\n", + " 'textures',\n", + " 'uv',\n", + " 'modern',\n", + " 'scope',\n", + " 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/machine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pistol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/optimized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4k',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scope',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'HIgh-quality 3D model of a realist-looking Machine Pistol.Includes:-realworld-scaled, rigged Model of a Machine Pistol-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.'],\n", + " ['3D Realistic Pistol Model (gameready, rigged)',\n", + " 'renedominick1999',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-06-02',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther png\\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'firearms',\n", + " 'handgun',\n", + " 'semi-automatic pistol'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/handgun',\n", + " 'https://www.turbosquid.com/3d-model/semi-automatic-pistol'],\n", + " ['Weapon',\n", + " 'Gun',\n", + " 'PIstol',\n", + " 'Game',\n", + " 'rigged',\n", + " 'optimized',\n", + " '4k',\n", + " 'textures',\n", + " 'uv',\n", + " 'modern',\n", + " 'lowpoly',\n", + " 'Glock',\n", + " '18'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pistol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/optimized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4k',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/18'],\n", + " 'High-quality 3D model of a realist-looking Pistol.Includes:-realworld-scaled, rigged Model of a Pistol-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.'],\n", + " ['3D Realistic Silenced Sniper Rifle (Gameready, rigged) model',\n", + " 'renedominick1999',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-02',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther png\\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sniper rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/sniper-rifle'],\n", + " ['Weapon',\n", + " 'Gun',\n", + " 'Sniper',\n", + " 'Rifle',\n", + " 'Game',\n", + " 'rigged',\n", + " 'optimized',\n", + " '4k',\n", + " 'textures',\n", + " 'uv',\n", + " 'modern',\n", + " 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sniper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rifle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/optimized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4k',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'High-quality 3D model of a realist-looking Sniper Rifle.Includes:-realworld-scaled, rigged Model of a Sniper Rifle-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.'],\n", + " ['Door of the moon 3D model',\n", + " 'DuDeHTM',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-01',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'landscape architecture',\n", + " 'monument'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/landscape-architecture',\n", + " 'https://www.turbosquid.com/3d-model/monument'],\n", + " ['door',\n", + " 'relistic',\n", + " 'low',\n", + " 'poly',\n", + " 'monument',\n", + " 'rock',\n", + " 'stone',\n", + " 'old',\n", + " 'architecture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/door',\n", + " 'https://www.turbosquid.com/Search/3D-Models/relistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monument',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture'],\n", + " ''],\n", + " ['Realistic Assault Rifle (Gameready, rigged) model',\n", + " 'renedominick1999',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-01',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther png\\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'assault rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/assault-rifle'],\n", + " ['Weapon',\n", + " 'Gun',\n", + " 'Assault',\n", + " 'Rifle',\n", + " 'Game',\n", + " 'rigged',\n", + " 'optimized',\n", + " '4k',\n", + " 'textures',\n", + " 'uv',\n", + " 'modern',\n", + " 'lowpoly',\n", + " 'G',\n", + " '36'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/assault',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rifle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/optimized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4k',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/g',\n", + " 'https://www.turbosquid.com/Search/3D-Models/36'],\n", + " 'High-quality 3D model of a realist-looking Assault Rifle.Includes:-realworld-scaled, rigged Model of an Assault Rifle-2 different 4k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.'],\n", + " ['3D Simple dirty bed',\n", + " 'nestofgames',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-01',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'bed', 'double bed'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/bed',\n", + " 'https://www.turbosquid.com/3d-model/double-bed'],\n", + " ['dirty',\n", + " 'dust',\n", + " 'horror',\n", + " 'games',\n", + " 'bed',\n", + " 'bedroom',\n", + " 'ue4',\n", + " 'unity',\n", + " 'maya',\n", + " 'game',\n", + " 'asset',\n", + " 'old',\n", + " 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dirty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horror',\n", + " 'https://www.turbosquid.com/Search/3D-Models/games',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ue4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maya',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'Old dirty bed for horror games.The pillows and blanket are separated from the bed, so you can arrange them as you like.2 variants of textures: a clean one and a dirty oneFile formats:.OBJ.FBX.ma2k texturesCreated in MayaTextured in Substance PainterTextures are compressed for a better performance of the game.Textures are optimized for Unreal Engine 4Base ColorNormalPacked Occlusion Roughness Metallic'],\n", + " ['house in the beach 3D model',\n", + " 'DuDeHTM',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-06-01',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'residential building',\n", + " 'house',\n", + " 'fantasy house',\n", + " 'cartoon house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-house',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-house'],\n", + " ['house',\n", + " 'wood',\n", + " 'water',\n", + " 'toon',\n", + " 'casa',\n", + " 'rock',\n", + " 'lamp',\n", + " 'window',\n", + " 'door',\n", + " 'grass',\n", + " 'architecture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/casa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/window',\n", + " 'https://www.turbosquid.com/Search/3D-Models/door',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture'],\n", + " 'enjoy'],\n", + " ['A log of wood 3D model',\n", + " 'TdeX',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-31',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model', 'nature', 'plants', 'plant elements', 'log'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/plants',\n", + " 'https://www.turbosquid.com/3d-model/plant-elements',\n", + " 'https://www.turbosquid.com/3d-model/log'],\n", + " ['a', 'log', 'of', 'wood'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/a',\n", + " 'https://www.turbosquid.com/Search/3D-Models/log',\n", + " 'https://www.turbosquid.com/Search/3D-Models/of',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood'],\n", + " '_________________________________________A LOG OF WOOD:Verts:5890Polygons:5888Tris:11776Made in blender version 2.79Model is UV unwrapedsupporting item is texture__________________________________________FILES:OBJ, FBX, 3DSThank you! and please rate it.'],\n", + " ['3D Realistic Shotgun Model (gameready, rigged) model',\n", + " 'renedominick1999',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-31',\n", + " '\\n\\n\\nFBX 1.0\\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/shotgun'],\n", + " ['Weapon',\n", + " 'Gun',\n", + " 'Shotgun',\n", + " 'Game',\n", + " 'rigged',\n", + " 'optimized',\n", + " '2k',\n", + " 'textures',\n", + " 'uv',\n", + " 'modern',\n", + " 'scope',\n", + " 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shotgun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/optimized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/2k',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scope',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'HIgh-quality 3D model of a realist-looking Shotgun.Includes:-realworld-scaled, rigged Model of a Sniper Rifle-3 different 2k Texturesets (default channels + optimized multichannel texture (Red channel = Ambient Occlusion, Green channel = Roughness, Blue channel = Metallicness))- working file (Blender 2.8)=========================================If you like this model, please consider taking a look at my other products.'],\n", + " ['3D model teapot',\n", + " 'Nand3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-31',\n", + " '',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'kitchenware',\n", + " 'cookware',\n", + " 'teapot'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/kitchenware',\n", + " 'https://www.turbosquid.com/3d-model/cookware',\n", + " 'https://www.turbosquid.com/3d-model/teapot'],\n", + " ['teapot'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/teapot'],\n", + " 'teapot'],\n", + " ['3D model Toasts 02',\n", + " 'cgaustria',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-31',\n", + " '\\n\\n\\nFBX 2015\\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ 2015\\n\\n',\n", + " ['3D Model', 'food and drink', 'food', 'baked goods', 'bread', 'toast'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food',\n", + " 'https://www.turbosquid.com/3d-model/baked-goods',\n", + " 'https://www.turbosquid.com/3d-model/bread',\n", + " 'https://www.turbosquid.com/3d-model/toast'],\n", + " ['toast',\n", + " 'toasts',\n", + " 'obj',\n", + " 'fbx',\n", + " 'vray',\n", + " '3d',\n", + " 'model',\n", + " 'breakfast',\n", + " 'bakery',\n", + " 'dark',\n", + " 'lunch',\n", + " 'meal',\n", + " 'food',\n", + " 'snack',\n", + " 'french',\n", + " 'baked',\n", + " 'bun',\n", + " 'cooking',\n", + " 'bread',\n", + " 'crusty',\n", + " 'baguette',\n", + " 'slice',\n", + " 'lowpoly',\n", + " 'game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/toast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toasts',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/breakfast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bakery',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dark',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lunch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/meal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food',\n", + " 'https://www.turbosquid.com/Search/3D-Models/snack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/french',\n", + " 'https://www.turbosquid.com/Search/3D-Models/baked',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooking',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bread',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crusty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/baguette',\n", + " 'https://www.turbosquid.com/Search/3D-Models/slice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " 'High detailed 3D model from cleaned retopology scan data of a toasts in checkmate pro quality by Cgaustria.For free quality check.Thank you for purchasing Cgaustria models!If you like this model I would kindly ask you to rate it.Real world scale.Preview renders just rendered with diffuse and normal map, there is no post production.Retopologized and reunwrapped for easy editing.AVAILABLE 3D FILES for download:- 3ds Max 2015 with V-Ray (3.6) shaders, textures, cameras, lights, render settings- OBJ incl. mtl file- FBXINFORMATION about 3ds Max 2015 FileSCALE:- Model at world center and real scale:\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Metric in centimeter \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 1 unit= 1 centimeterPOLYCOUNT:-polys: 7.822-100% quads\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 Textures:1. toasts02_diffuse.png - 4096x4096 px2. toasts02_displacement.png - 4096x4096 px3. toasts02_normals.png - 4096x4096 px'],\n", + " ['3D model adjustable working table',\n", + " '4ivers',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-31',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'desk', 'office desk', 'drafting table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk',\n", + " 'https://www.turbosquid.com/3d-model/office-desk',\n", + " 'https://www.turbosquid.com/3d-model/drafting-table'],\n", + " ['workbench',\n", + " 'factory',\n", + " 'garage',\n", + " 'workshop',\n", + " 'tool',\n", + " 'equpment',\n", + " 'fabrication',\n", + " 'craft',\n", + " 'industrial',\n", + " 'working',\n", + " 'table',\n", + " 'desk',\n", + " 'worktop',\n", + " 'craftsman',\n", + " 'repair',\n", + " 'v-ray'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/workbench',\n", + " 'https://www.turbosquid.com/Search/3D-Models/factory',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/workshop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/equpment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fabrication',\n", + " 'https://www.turbosquid.com/Search/3D-Models/craft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/working',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/worktop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/craftsman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/repair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/v-ray'],\n", + " 'This adjustable working table high quality, photo real model. The model is accurate with the real world size and scale. The model is suitable for the layout of workshops and production rooms.Ready to RENDER. HDRI map includedHigh quality model for TurboSmoothOriginally created with 3ds Max 2013Model prepared for V-Ray 2.40.03Included in the scene - VRay plane Includes Formats FBX and OBJ (not smoothed)- Model is built to real-world scale- Units used: mm- No third-party renderer or plug-insGeometry:No smooth: -Polygons: 150172-Vertices: 148500Subdivision Level 1-Polygons: 1194928-Vertices: 597404'],\n", + " ['Art Vase 3D',\n", + " 'VectorInc',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-30',\n", + " '',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'vase'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/vase'],\n", + " ['Vase', 'Art', 'Decoration', 'Decor', 'Furnishing'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/vase',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furnishing'],\n", + " 'A vase I created for a scene a while back! I I hope you guys enjoy it!'],\n", + " ['Picnic Table model',\n", + " 'thatsruddiculous',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'picnic table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/picnic-table'],\n", + " ['picnic',\n", + " 'table',\n", + " 'park',\n", + " 'exterior',\n", + " 'furniture',\n", + " 'wood',\n", + " 'wooden',\n", + " 'metal',\n", + " 'public',\n", + " 'bench'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/picnic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/park',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/public',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bench'],\n", + " 'This is a low-poly, game ready, pbr, prop. This is a picnic table that is good for outdoor park scenes. The object sits on the ground plane at the origin (0,0,0). Includes fbx and obj file formats. All textures are 2048x2048 png files.'],\n", + " ['Garbage Bag 3D',\n", + " 'thatsruddiculous',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'industrial', 'industrial container', 'bag', 'garbage bag'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/bag',\n", + " 'https://www.turbosquid.com/3d-model/garbage-bag'],\n", + " ['bag', 'garbage', 'trash', 'refuse', 'sack'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bag',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garbage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/refuse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sack'],\n", + " 'This is a low-poly, game ready, pbr, prop. This is a trash bag that is good for outdoor scenes next to dumpsters, or indoor a very messy or abandoned house. Includes fbx and obj file formats. All textures are 2048x2048 png files.'],\n", + " ['3D Wooden Crate',\n", + " 'thatsruddiculous',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'industrial', 'industrial container', 'crate'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/crate'],\n", + " ['crate',\n", + " 'wooden',\n", + " 'shipping',\n", + " 'container',\n", + " 'wood',\n", + " 'box',\n", + " 'ship',\n", + " 'contain',\n", + " 'cube'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/crate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shipping',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ship',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cube'],\n", + " 'This is a game-ready pbr wooden crate. It is very low poly and ready for any project. The object sits on the ground plane at the origin (0,0,0). All textures are 2048x2048 png format. Includes fbx and obj files.'],\n", + " ['3D LIVING ROOM PHOTO - SKETCHUP 2018 AND VRAY NEXT',\n", + " 'DesignerHugoGonzales',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-28',\n", + " '',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'interior',\n", + " 'residential spaces',\n", + " 'living room'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/interior',\n", + " 'https://www.turbosquid.com/3d-model/residential-spaces',\n", + " 'https://www.turbosquid.com/3d-model/living-room'],\n", + " ['SKETCHUP',\n", + " '2018',\n", + " 'AND',\n", + " 'VRAY',\n", + " 'NEXT',\n", + " 'READY',\n", + " 'MODEL',\n", + " 'LIVING',\n", + " 'ROOM',\n", + " 'PHOTO'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sketchup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/2018',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/next',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/photo'],\n", + " 'LIVING ROOM IN SKETCHUP 2018, RENDER WITH VRAY NEXT'],\n", + " ['Captain Marve - Victorie 3D model',\n", + " 'bewolf56',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-05-28',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'characters', 'superhero'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/superhero'],\n", + " ['captain',\n", + " 'marve',\n", + " 'victorie',\n", + " 'heaven',\n", + " 'avengers',\n", + " 'blonde',\n", + " 'heroine',\n", + " 'czech',\n", + " 'model',\n", + " 'superhero'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/captain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marve',\n", + " 'https://www.turbosquid.com/Search/3D-Models/victorie',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heaven',\n", + " 'https://www.turbosquid.com/Search/3D-Models/avengers',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blonde',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heroine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/czech',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/superhero'],\n", + " 'Captain Marve from Avengers movie with Victorie Heaven czech model'],\n", + " ['Greek Sword 3D model',\n", + " 'guitcho',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-28',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/gladius'],\n", + " ['greek',\n", + " 'armor',\n", + " 'protection',\n", + " 'soldier',\n", + " 'warrior',\n", + " 'roman',\n", + " 'legionary',\n", + " '3d',\n", + " 'model',\n", + " 'medieval',\n", + " 'military',\n", + " 'sword',\n", + " 'knight',\n", + " 'bladed',\n", + " 'weapon',\n", + " 'melee'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/greek',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/protection',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soldier',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warrior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/roman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/legionary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bladed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee'],\n", + " \"sword of Greek inspiration:This model was created on the blender software and the PBR material addon. It's a highpoly model.Files Formates:-blender (.blend) -Fbx (.fbx) -Wavefront (.obj) -collada (.dae) -alembic (.abc) -3D Studio (.3ds) -Standford (.ply) -X3d Extensible 3D (.x3d) -Stl (.stl)Hope you like it.If you like my work do not hesitate to share my content and come see my other creations on my profile !\"],\n", + " ['3D asteroids pack model',\n", + " 'Mykhailo Ohorodnichuk',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-28',\n", + " '',\n", + " ['3D Model', 'science', 'astronomy', 'asteroid'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/astronomy',\n", + " 'https://www.turbosquid.com/3d-model/asteroid'],\n", + " ['3D',\n", + " 'model',\n", + " 'Science',\n", + " 'Astronomy',\n", + " 'Asteroids',\n", + " 'SGI',\n", + " 'Animation',\n", + " 'Space',\n", + " 'Meteor',\n", + " 'Traditional',\n", + " 'Game',\n", + " 'art',\n", + " 'aerolite'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/astronomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asteroids',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sgi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/space',\n", + " 'https://www.turbosquid.com/Search/3D-Models/meteor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/traditional',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aerolite'],\n", + " 'This is pack of 4 asteroids for your projectasteroid 1 - 47432 facesasteroid 2 - 38084 facesasteroid 3 - 53392 facesasteroid 4 - 10084 facesvideo presentation of this pack you can found in my YoutUbe channel: Mykhailo Ohorodnichuk'],\n", + " ['Scissor 3D',\n", + " 'Devansh Kaushik',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-28',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'cutting tools', 'scissors'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/cutting-tools',\n", + " 'https://www.turbosquid.com/3d-model/scissors'],\n", + " ['blender', '3d', 'scissor', 'scissors', 'cycles', 'metal'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scissor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scissors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cycles',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal'],\n", + " \"This is blender made 3D Scissor Model, that's free to use in your animations and games as well. The model is rigged and well topologised. The textures used are available as packed images which includes the skydome as well. Th material is derived from Principled BSDF Shader of Blender Cycles. Also the polish mask is available for distinguishing between the polished surfaces. At last, use this and give your views.\"],\n", + " ['3D Food Photogrammetry Intro Pack',\n", + " 'jdbensonCG',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-28',\n", + " '\\n\\n\\nOther 001\\n\\n',\n", + " ['3D Model',\n", + " 'food and drink',\n", + " 'food',\n", + " 'vegetable',\n", + " 'root vegetables',\n", + " 'carrot'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food',\n", + " 'https://www.turbosquid.com/3d-model/vegetable',\n", + " 'https://www.turbosquid.com/3d-model/root-vegetables',\n", + " 'https://www.turbosquid.com/3d-model/carrot'],\n", + " ['photogrammetry',\n", + " 'food',\n", + " 'fruit',\n", + " 'vegetable',\n", + " 'bread',\n", + " 'crumpet',\n", + " 'scan',\n", + " 'textures',\n", + " 'lowpoly',\n", + " 'grapefruit',\n", + " 'apple',\n", + " 'pineapple',\n", + " 'pear',\n", + " 'lemon',\n", + " 'seeds',\n", + " 'carrot',\n", + " 'garlic',\n", + " 'onion',\n", + " 'potato'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/photogrammetry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fruit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vegetable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bread',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crumpet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grapefruit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pineapple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pear',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lemon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seeds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carrot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garlic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/onion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/potato'],\n", + " 'Small Intro Collection of Photogrammetry food. Includes 13 assets, that all come with textures for PBR rendering. Mesh has been retoplogized for low poly rendering including game engines. Archived pack into a single .rar each asset is .OBJ format.Looking to develop collections photogrammetry products aimed at small studios/freelancers. Scanned and modeled to a high quality. Future packs will contain more assets. Please get in touch if there are any assets you would like to be included.'],\n", + " ['3D Treasure Chest model',\n", + " 'creativeslot144',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-27',\n", + " '\\n\\n\\nOBJ 1.1\\n\\n\\n\\n\\nFBX 1.1\\n\\n\\n\\n\\n3D Studio 1.1\\n\\n',\n", + " ['3D Model', 'furnishings', 'chest', 'wooden chest', 'treasure chest'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/chest',\n", + " 'https://www.turbosquid.com/3d-model/wooden-chest',\n", + " 'https://www.turbosquid.com/3d-model/treasure-chest'],\n", + " ['treasure',\n", + " 'chest',\n", + " 'toy',\n", + " 'medieval',\n", + " 'box',\n", + " 'play',\n", + " 'game',\n", + " '3D',\n", + " 'object',\n", + " 'old',\n", + " 'rust',\n", + " 'metal',\n", + " 'wood'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/treasure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/play',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/object',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood'],\n", + " \"First 3D object i have made please sned message or comment on how it is. it is FREE. Treasure chest, Medieval (oldish) container put onto your horror/medieval game.Has Animation setup to open!!Also includes the wood texture and Three different metal/Rust materials for you to use. Use just one or All three.!Also has normal's.\"],\n", + " ['3D model Metal Paper Clip',\n", + " '3d_ranensinha',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-27',\n", + " '\\n\\n\\nFBX 2015\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'office', 'office supplies', 'paper clip'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/office-category',\n", + " 'https://www.turbosquid.com/3d-model/office-supplies',\n", + " 'https://www.turbosquid.com/3d-model/paper-clip'],\n", + " ['metal',\n", + " 'clip',\n", + " 'fastener',\n", + " 'gemclip',\n", + " 'paper',\n", + " 'paperclip',\n", + " 'clamp',\n", + " 'collection',\n", + " 'set',\n", + " 'stationery',\n", + " 'work',\n", + " 'office',\n", + " 'desk',\n", + " 'props',\n", + " 'realistic',\n", + " 'photoreal'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clip',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fastener',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gemclip',\n", + " 'https://www.turbosquid.com/Search/3D-Models/paper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/paperclip',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/collection',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stationery',\n", + " 'https://www.turbosquid.com/Search/3D-Models/work',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/photoreal'],\n", + " 'Its a high quality and photo real model of a Metal Paper Clip. This will add more value and enhance details to your rendering projects like medical presentation, cinematic, VFX shots etc and games. The model is applied with materials and textures, with very detailed design that allows for close-up renders. This model originally modeled in 3ds MAX 2015 and rendered with Vray 3.20.02 and converted formats are FBX and OBJ.--------------------------------------------Features:- Multiple formats added.- High quality polygonal model, correctly scaled for an accurate representation.-The model properly named, grouped and logically grouped so no confusion when importing several models into a scene also kept in properly named layer.- No cleaning up necessary, just drop your models into the scene or open the given scene and start rendering.- Models resolutions are optimized for polygon efficiency. (In 3ds Max, the Turbosmooth modifier or smoothing modifier in other respective application can be used to increase mesh resolution if necessary.)-All texture colors can be easily modified.-Model does not include any lights, backgrounds or scenes used in preview images but a separate version is added with light setup and HDRI as seen in preview images.--------------------------------------------Polygons: 4224Vertices: 4214--------------------------------------------File Formats:- 3ds Max 2015 Vray 3.20.02- obj- FBX--------------------------------------------Texture sizes areAll textures are 2048*2048--------------------------------------------Model dimension (Unit setup is CM)X- 0.9* Y- 3.02 * Z- 0.19-------------------------------------------Hope you like the model.Please RATE the product if you are satisfied.Also check out my other models, click on my user name to see complete gallery.'],\n", + " ['3D z chair',\n", + " 'mohsen_ga',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-25',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/stool',\n", + " 'https://www.turbosquid.com/3d-model/bar-stool'],\n", + " ['chair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair'],\n", + " 'z-chair designed by Oleksii Karman. litewheight and unwrapped texture.'],\n", + " ['LPipe model',\n", + " 'Huge Wild Cube',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-25',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building components',\n", + " 'plumbing equipment',\n", + " 'plumbing pipe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/plumbing-equipment',\n", + " 'https://www.turbosquid.com/3d-model/pipe-plumbing'],\n", + " ['pipe',\n", + " 'props',\n", + " 'set',\n", + " 'collection',\n", + " 'water',\n", + " 'oil',\n", + " 'gas',\n", + " 'lowpoly',\n", + " 'joint',\n", + " 'link',\n", + " 'tube',\n", + " 'industry',\n", + " 'factory',\n", + " 'power',\n", + " 'plant',\n", + " 'machine',\n", + " 'petrol',\n", + " 'system',\n", + " 'Sewage',\n", + " 'pack',\n", + " 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pipe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/collection',\n", + " 'https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gas',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/joint',\n", + " 'https://www.turbosquid.com/Search/3D-Models/link',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tube',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/factory',\n", + " 'https://www.turbosquid.com/Search/3D-Models/power',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/machine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/petrol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/system',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sewage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " \"This is a free sample from 'Pipe pack vol.1'. Go to my profile and check out the rest.\"],\n", + " ['office set 3D model',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-24',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'desk'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk'],\n", + " ['office',\n", + " 'set',\n", + " 'desk',\n", + " 'mug',\n", + " 'guest',\n", + " 'rolling',\n", + " 'chair',\n", + " 'frame',\n", + " 'picture',\n", + " 'trophy'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/guest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rolling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/frame',\n", + " 'https://www.turbosquid.com/Search/3D-Models/picture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trophy'],\n", + " 'an office with items included such as an office chair with 2 guest chairs, a trophy, picture frame, a mug and exterior walls with a door and a floor.'],\n", + " ['Sexy Elf Bath model',\n", + " 'Predteck',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-24',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'statue', 'woman statue'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/statue',\n", + " 'https://www.turbosquid.com/3d-model/woman-statue'],\n", + " ['woman', 'nude', 'naughty', 'erotic', 'wow', '3dprint'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/woman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nude',\n", + " 'https://www.turbosquid.com/Search/3D-Models/naughty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/erotic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dprint'],\n", + " '3D Print concept.A sexy elf takes a bath. WoW style. Whole model. Included .ztl, .obj and .stl formats. Enjoy! ;)'],\n", + " ['Deer Skull 3D model',\n", + " 'leon017',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-24',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX 2018\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'animal anatomy',\n", + " 'animal skeleton',\n", + " 'animal skull',\n", + " 'deer skull'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/animal-anatomy',\n", + " 'https://www.turbosquid.com/3d-model/animal-skeleton',\n", + " 'https://www.turbosquid.com/3d-model/animal-skull',\n", + " 'https://www.turbosquid.com/3d-model/deer-skull'],\n", + " ['deer',\n", + " 'skull',\n", + " 'bones',\n", + " 'skeleton',\n", + " 'wildlife',\n", + " 'anatomy',\n", + " 'dead',\n", + " 'hunting',\n", + " 'horns',\n", + " 'moose',\n", + " 'forest',\n", + " 'nature'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/deer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/skull',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bones',\n", + " 'https://www.turbosquid.com/Search/3D-Models/skeleton',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wildlife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dead',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hunting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horns',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moose',\n", + " 'https://www.turbosquid.com/Search/3D-Models/forest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature'],\n", + " '3D model of deer skull with diffuse, specular, normal, occlusion and displacement maps. 6160 polygons.'],\n", + " ['3D model Cartoon Low Poly Starfish Illustration',\n", + " 'Anton Moek',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-24',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'sea creatures',\n", + " 'sea star',\n", + " 'cartoon starfish'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/sea-creatures',\n", + " 'https://www.turbosquid.com/3d-model/sea-star',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-starfish'],\n", + " ['cartoon',\n", + " 'low',\n", + " 'poly',\n", + " 'illustration',\n", + " 'art',\n", + " 'simple',\n", + " 'free',\n", + " 'download',\n", + " 'starfish',\n", + " 'lowpoly',\n", + " 'low-poly',\n", + " 'antonmoek',\n", + " 'sea',\n", + " 'seaweed',\n", + " 'water',\n", + " 'game',\n", + " 'design',\n", + " 'ar',\n", + " 'vr',\n", + " 'browser',\n", + " 'cinema4d'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/illustration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/download',\n", + " 'https://www.turbosquid.com/Search/3D-Models/starfish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antonmoek',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seaweed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/browser',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cinema4d'],\n", + " '- Cartoon Low Poly Starfish 3d Illustration- Created on Cinema 4d R17- 3814 Polygons- Procedural Textured- Game Ready, VR Ready'],\n", + " ['3D model Realistic Glass Table',\n", + " 'Bang Moron',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-23',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'glass table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/glass-table'],\n", + " ['Furniture', 'Table', 'Glass', 'Realistic'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic'],\n", + " 'Free for u'],\n", + " ['3D Simple ring model',\n", + " 'Diversantka',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-23',\n", + " '\\n\\n\\nFBX 2012-2018\\n\\n\\n\\n\\nOBJ 2014-2018\\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'ring',\n", + " 'diamond ring'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/ring',\n", + " 'https://www.turbosquid.com/3d-model/diamond-ring'],\n", + " ['ring',\n", + " 'gold',\n", + " 'silver',\n", + " 'diamond',\n", + " 'brilliant',\n", + " 'set',\n", + " '3D',\n", + " 'Model',\n", + " 'fashion',\n", + " 'and',\n", + " 'beauty',\n", + " 'jewelry',\n", + " 'platinum',\n", + " 'decorative'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/diamond',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brilliant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beauty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/platinum',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decorative'],\n", + " 'A simple diamond ring.Three variants of precious metal and four colors of stones. The model is suitable for creating separate parts of the interior, as well as an independent element.To create a model used 3dsMax2018 version 20.0.0.966 compatible with 2014With anti-aliasing:points 43083polygons 52281physical volume 4072.0 mvirtual volume 5481.4 mThe scene contains 33 objects As part of the archive set of textures 6 PCs., including:blue diamond.jpggreen_diamond.jpgred diamond.jpgwhite diamond.jpgmetal.jpgand Files:preview1_Simple_ring_with_diamond.jpgpreview2_Simple_ring_with_diamond.jpgpreview3_Simple_ring_with_diamond.jpgGrid_Simple_ring_with_diamond.jpgSimple_ring_with_diamond_fbxSimple_ring_with_diamond_objSimple_ring_with_diamond_3D Max'],\n", + " ['3D Dirty Horse Shoe',\n", + " 'GetDeadEntertainment',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-22',\n", + " '\\n\\n\\nFBX FBX\\n\\n\\n\\n\\nOther MTL\\n\\n\\n\\n\\nOBJ OBJ\\n\\n\\n\\n\\nOther PNG\\n\\n',\n", + " ['3D Model',\n", + " 'industrial',\n", + " 'agriculture',\n", + " 'animal accessories',\n", + " 'horse accessories',\n", + " 'horseshoe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/agriculture',\n", + " 'https://www.turbosquid.com/3d-model/animal-accessories',\n", + " 'https://www.turbosquid.com/3d-model/horse-accessories',\n", + " 'https://www.turbosquid.com/3d-model/horseshoe'],\n", + " ['horseshoe',\n", + " 'horse',\n", + " 'shoe',\n", + " 'horse',\n", + " 'luck',\n", + " 'lucky',\n", + " 'gamble',\n", + " 'chance',\n", + " 'medieval',\n", + " 'decor',\n", + " 'junk',\n", + " 'steel',\n", + " 'decoration',\n", + " 'horse',\n", + " 'props',\n", + " 'props',\n", + " 'ground',\n", + " 'clutter',\n", + " 'metal',\n", + " 'horseshoes',\n", + " 'iron',\n", + " 'exteri'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/horseshoe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shoe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/luck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lucky',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gamble',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chance',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/junk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ground',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clutter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horseshoes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/iron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exteri'],\n", + " 'Dirty Horse Shoe 3D ModelPBR Textures 4096x4096All Renders were done in Marmoset Toolbag 3.07By The Creators at Get Dead Entertainment . :) Please Like, Follow and Rate!'],\n", + " ['Realistic Plastic CupBoard 3D model',\n", + " 'Bang Moron',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-22',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'cabinet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/cabinet'],\n", + " ['Cupboard'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cupboard'],\n", + " 'Free for u'],\n", + " ['3D Table model',\n", + " 'arch.melsayed',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-22',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nDXF \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'coffee table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/coffee-table'],\n", + " ['table',\n", + " 'modern',\n", + " 'wooden',\n", + " 'interior',\n", + " 'steel',\n", + " 'living',\n", + " 'reception',\n", + " 'bed',\n", + " 'room',\n", + " 'metal'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reception',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal'],\n", + " '-The table is a high quality model that will enhance details to any of your rendering projects. The model has a fully textured, detailed design that allows for close-up renders, and was originally modeled in 3ds Max 2011 and rendered with V-Ray.Features: -High quality polygonal model, correctly scaled for an accurate representation of the original object. -Models resolutions are optimized for polygon efficiency.-All colors can be easily modified. -Model is fully textured with all materials applied.-All textures and materials are included .-No special plugin needed to open scene. -Model does not include any backgrounds or scenes used in preview images.File Formats:-3ds Max 2011.-OBJ . -FBX . -3ds . -dxf . -stl-Hope you like it! Also check out my other models, just click on my user name to see complete gallery.'],\n", + " [' model',\n", + " 'esmileonline',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-22',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'appliance',\n", + " 'household appliance',\n", + " 'cleaning appliance',\n", + " 'vacuum cleaner',\n", + " 'robot vacuum cleaner'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/appliance',\n", + " 'https://www.turbosquid.com/3d-model/household-appliance',\n", + " 'https://www.turbosquid.com/3d-model/cleaning-appliance',\n", + " 'https://www.turbosquid.com/3d-model/vacuum-cleaner',\n", + " 'https://www.turbosquid.com/3d-model/robot-vacuum-cleaner'],\n", + " ['robot',\n", + " 'carpet',\n", + " 'floor',\n", + " 'cleaner',\n", + " 'robot',\n", + " 'carpet',\n", + " 'floor',\n", + " 'cleaner',\n", + " 'vacuum',\n", + " 'cleaner',\n", + " 'home',\n", + " 'appliance',\n", + " 'smart',\n", + " 'household',\n", + " 'tools'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/robot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carpet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cleaner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/robot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carpet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cleaner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vacuum',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cleaner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/appliance',\n", + " 'https://www.turbosquid.com/Search/3D-Models/smart',\n", + " 'https://www.turbosquid.com/Search/3D-Models/household',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tools'],\n", + " 'obot carpet floor cleaner'],\n", + " ['Low Poly Beach Items Pack 3D',\n", + " 'chroma3D',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-22',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'toys and games', 'toys', 'outdoor toys', 'paddle ball'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/toys',\n", + " 'https://www.turbosquid.com/3d-model/outdoor-toys',\n", + " 'https://www.turbosquid.com/3d-model/paddle-ball'],\n", + " ['low',\n", + " 'poly',\n", + " 'beach',\n", + " 'items',\n", + " 'pack',\n", + " 'ball',\n", + " 'summer',\n", + " 'fun',\n", + " 'racket',\n", + " 'tennis',\n", + " 'sports',\n", + " 'equipment'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beach',\n", + " 'https://www.turbosquid.com/Search/3D-Models/items',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ball',\n", + " 'https://www.turbosquid.com/Search/3D-Models/summer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/racket',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tennis',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sports',\n", + " 'https://www.turbosquid.com/Search/3D-Models/equipment'],\n", + " 'This is a low poly 3d beach assets pack. The low poly pack was modeled and prepared for low-poly style renderings, background, general CG visualization. Topology with quads and tris.You will get those 4 objects :2 Rackets 1 Racket Ball 1 beach BallVerts : 614 Faces: 606Simple diffuse colors.No ring, maps and no UVW mapping is available.The original file was created in blender. You will receive a 3DS, OBJ, FBX, blend, DAE, STL.All preview images were rendered with Blender Cycles. Product is ready to render out-of-the-box. Please note that the lights, cameras, and background is only included in the .blend file. The model is clean and alone in the other provided files, centered at origin and has real-world scale.'],\n", + " ['Basic Laptop With Lenovo Logo model',\n", + " 'Efad Safi',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-22',\n", + " '\\n\\n\\n3D Studio 0.1\\n\\n\\n\\n\\nCollada 0.1\\n\\n\\n\\n\\nAutoCAD drawing 0.1\\n\\n\\n\\n\\nDXF 0.1\\n\\n\\n\\n\\nFBX 0.1\\n\\n\\n\\n\\nOther 0.1\\n\\n\\n\\n\\nOBJ 0.1\\n\\n',\n", + " ['3D Model', 'technology', 'computer', 'laptop'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/computer',\n", + " 'https://www.turbosquid.com/3d-model/laptop'],\n", + " ['Laptop',\n", + " 'ideapad',\n", + " 'Computer',\n", + " 'Pc',\n", + " 'Computers',\n", + " 'Poly',\n", + " 'Laptops',\n", + " 'Low',\n", + " 'Lenovo',\n", + " 'Laptops.'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/laptop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ideapad',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computers',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laptops',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lenovo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laptops.'],\n", + " 'This is an extremely low poly & low size laptop. It has an Lenovo logo in it. Suitable for Interior decoration, game development etc.'],\n", + " ['Fantasy Medieval Weapon Pack 3D model',\n", + " 'Tetrahedron',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-22',\n", + " '\\n\\n\\n3D Studio 1.0\\n\\n\\n\\n\\nCollada 1.0\\n\\n\\n\\n\\nFBX 1.0\\n\\n\\n\\n\\nOBJ 1.0\\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'broadsword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/broadsword'],\n", + " ['Sword', 'Weapon', 'Armor', 'melee'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee'],\n", + " '-------------------------------------------------------------Presenting Fantasy Medieval Weapon Pack.-------------------------------------------------------------Two swords a Broadsword and a Longsword.Broadsword Polygons: 808. Verticies: 420.Longsword Polygons: 456. Verticies: 251.A default material from your Software of choice can be used. Set your own material glossiness and roughness etc.Does not require 3rd party renderers, plug-ins or scripts.They are designed to have minimal polygons so are not subdividable.Orign/Pivot point is placed in the centre of the handle.Real world scale of both swords is 0.89m oe 89cm in length.1024x1024px texture maps:Diffuse Color.Ambient Occlusion.Combined Diffuse and AO.Transparant UV Layout.Specular gloss.'],\n", + " ['Espresso Machine 3D model',\n", + " 'alandell',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-21',\n", + " '',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'appliance',\n", + " 'household appliance',\n", + " 'kitchen appliance',\n", + " 'coffee maker',\n", + " 'espresso maker'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/appliance',\n", + " 'https://www.turbosquid.com/3d-model/household-appliance',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-appliance',\n", + " 'https://www.turbosquid.com/3d-model/coffee-maker',\n", + " 'https://www.turbosquid.com/3d-model/espresso-maker'],\n", + " ['espresso',\n", + " 'machine',\n", + " 'coffee',\n", + " 'cafe',\n", + " 'barista',\n", + " 'latte',\n", + " 'mocha',\n", + " 'cartoon',\n", + " 'retro',\n", + " 'coffeemaker'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/espresso',\n", + " 'https://www.turbosquid.com/Search/3D-Models/machine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cafe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/barista',\n", + " 'https://www.turbosquid.com/Search/3D-Models/latte',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mocha',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffeemaker'],\n", + " 'Cartoon-style espresso machine.'],\n", + " ['3D Tutorials - Project Files - Free Series 01',\n", + " 'Project01 Design Studio',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-21',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'holidays', 'holiday accessories', 'balloons'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/seasons-and-holidays',\n", + " 'https://www.turbosquid.com/3d-model/holiday-accessories',\n", + " 'https://www.turbosquid.com/3d-model/balloons'],\n", + " ['3ds',\n", + " 'max',\n", + " 'after',\n", + " 'effects',\n", + " 'vray',\n", + " 'candle',\n", + " 'soccer',\n", + " 'volley',\n", + " 'golf',\n", + " 'ball',\n", + " 'fire',\n", + " 'smoke',\n", + " 'liquid'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/after',\n", + " 'https://www.turbosquid.com/Search/3D-Models/effects',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/candle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soccer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/volley',\n", + " 'https://www.turbosquid.com/Search/3D-Models/golf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ball',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/smoke',\n", + " 'https://www.turbosquid.com/Search/3D-Models/liquid'],\n", + " \"Hello Everyone,We are providing you all Project Files of our Tutorial from YouTube Channel 'Project.01 Design School' for Free.So Hurry... & Grab the Opportunity.You can Find all Tutorials on YouTube using name 'Project01 Design School'.Thank you Team Project.01 Design School\"],\n", + " ['3D model bathroom design',\n", + " 'iosebi',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-05-21',\n", + " '\\n\\n\\nJPEG \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'interior',\n", + " 'residential spaces',\n", + " 'restroom'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/interior',\n", + " 'https://www.turbosquid.com/3d-model/residential-spaces',\n", + " 'https://www.turbosquid.com/3d-model/restroom'],\n", + " ['batch', 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/batch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " 'bathrooms'],\n", + " ['Disco Ball 3D model',\n", + " 'dimitriwittmann',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-21',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'stage light',\n", + " 'strobe',\n", + " 'discoball'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/stage-light',\n", + " 'https://www.turbosquid.com/3d-model/strobe',\n", + " 'https://www.turbosquid.com/3d-model/discoball'],\n", + " ['discoball', 'disco', 'ball', 'mirrorball'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/discoball',\n", + " 'https://www.turbosquid.com/Search/3D-Models/disco',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ball',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mirrorball'],\n", + " 'Low poly Discoball. The geometry is clean. Polygonal Quads only.'],\n", + " ['Starter Short Sword 3D',\n", + " 'GetDeadEntertainment',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-20',\n", + " '\\n\\n\\nOther PNG\\n\\n\\n\\n\\nFBX fbx\\n\\n\\n\\n\\nOther mtl\\n\\n\\n\\n\\nOBJ obj\\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword'],\n", + " ['sword',\n", + " 'weapon',\n", + " 'dagger',\n", + " 'sharp',\n", + " 'steel',\n", + " 'military',\n", + " 'bladed',\n", + " 'weapon',\n", + " 'knight',\n", + " 'fantasy',\n", + " 'medieval',\n", + " 'starter',\n", + " 'sword',\n", + " 'war',\n", + " 'crusader',\n", + " 'worn',\n", + " 'junk',\n", + " 'warrior',\n", + " 'warrior',\n", + " 'army',\n", + " 'old',\n", + " 'dirty',\n", + " 'mel'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dagger',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sharp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bladed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/starter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crusader',\n", + " 'https://www.turbosquid.com/Search/3D-Models/worn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/junk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warrior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warrior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/army',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dirty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mel'],\n", + " 'Worn Sword 3D ModelPRB Texture 4096x4096Renders were done in Marmoset Toolbag 3.06'],\n", + " ['Gold Band Ring model',\n", + " 'GetDeadEntertainment',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-20',\n", + " '\\n\\n\\nFBX fbx\\n\\n\\n\\n\\nOther mtl\\n\\n\\n\\n\\nOBJ obj\\n\\n\\n\\n\\nOther PNG\\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'jewelry',\n", + " 'ring',\n", + " 'gold ring'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/ring',\n", + " 'https://www.turbosquid.com/3d-model/gold-ring'],\n", + " ['jewelry',\n", + " 'gold',\n", + " 'ring',\n", + " 'wedding',\n", + " 'fashion',\n", + " 'ring',\n", + " 'engagement',\n", + " 'clothing',\n", + " 'medieval',\n", + " 'loot',\n", + " 'character',\n", + " 'treasure',\n", + " 'sterling',\n", + " 'fashion',\n", + " 'and',\n", + " 'beauty',\n", + " 'apparel',\n", + " 'jewellery',\n", + " 'props',\n", + " 'jewel'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wedding',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engagement',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clothing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/loot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/treasure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sterling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fashion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beauty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apparel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewellery',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewel'],\n", + " 'Simple Gold band Ring 3D Model.PBR Texture in: 4096x4096 and 2048x2048All Preview Renders were done in Marmoset Toolbag 3.06.If you like it, please give us a like and a follow. :)'],\n", + " ['3D Pen',\n", + " 'Zky3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-20',\n", + " '',\n", + " ['3D Model',\n", + " 'office',\n", + " 'office supplies',\n", + " 'writing instrument',\n", + " 'pen',\n", + " 'ballpoint pen'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/office-category',\n", + " 'https://www.turbosquid.com/3d-model/office-supplies',\n", + " 'https://www.turbosquid.com/3d-model/writing-instrument',\n", + " 'https://www.turbosquid.com/3d-model/pen',\n", + " 'https://www.turbosquid.com/3d-model/ballpoint-pen'],\n", + " ['Pencil', 'Blue', 'Pen', 'Lapicera', 'Lapiz', 'Marcador', 'Parker'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pencil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lapicera',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lapiz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marcador',\n", + " 'https://www.turbosquid.com/Search/3D-Models/parker'],\n", + " 'Pen made it in Cinema 4D.'],\n", + " ['3D Wooden Chess Set Complete',\n", + " 'usman039',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-20',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'toys and games', 'games', 'chess', 'chess set'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/chess',\n", + " 'https://www.turbosquid.com/3d-model/chess-set'],\n", + " ['Chess',\n", + " 'Pawn',\n", + " 'Knight',\n", + " 'Bishop',\n", + " 'Rook',\n", + " 'Queen',\n", + " 'King',\n", + " 'Board',\n", + " 'Chessboard',\n", + " 'White',\n", + " 'Black',\n", + " 'Wood',\n", + " 'Wooden',\n", + " '3DS',\n", + " 'Max',\n", + " 'Game',\n", + " 'Boardgame',\n", + " 'Checkmate',\n", + " 'Check',\n", + " 'Kasparov',\n", + " 'Fischer'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chess',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pawn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bishop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rook',\n", + " 'https://www.turbosquid.com/Search/3D-Models/queen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/king',\n", + " 'https://www.turbosquid.com/Search/3D-Models/board',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chessboard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white',\n", + " 'https://www.turbosquid.com/Search/3D-Models/black',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/boardgame',\n", + " 'https://www.turbosquid.com/Search/3D-Models/checkmate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/check',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kasparov',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fischer'],\n", + " 'A traditional chess set complete with real ash, oak and walnut textures. There has been many beautiful chess sets created for this wonderful game I hope this is one of them. Includes reflection mapping for subtle chess board effect and subtle shadows for even more effect.'],\n", + " ['3D model Monster Truck Wheels model',\n", + " 'usman039',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-20',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'truck wheel'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-wheel'],\n", + " ['monster',\n", + " 'truck',\n", + " 'wheel',\n", + " 'tire',\n", + " 'rim',\n", + " 'concept',\n", + " 'par',\n", + " 'vehicle',\n", + " 'offroad',\n", + " 'allterrain',\n", + " 'monstertruck'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rim',\n", + " 'https://www.turbosquid.com/Search/3D-Models/concept',\n", + " 'https://www.turbosquid.com/Search/3D-Models/par',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/offroad',\n", + " 'https://www.turbosquid.com/Search/3D-Models/allterrain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monstertruck'],\n", + " 'Low poly Monster Truck wheel concept. Model Contains rubber wheel and rim.Modeled and rendered in AutoDesk Softimage.Formats: FBX,'],\n", + " ['Cream Starter 3D model',\n", + " 'auxiliary_',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-19',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'ordnance accessories',\n", + " 'weapon foregrip'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/ordnance-accessories',\n", + " 'https://www.turbosquid.com/3d-model/weapon-foregrip'],\n", + " [\"Jojo's\", 'Bizzare', 'Adventure'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/jojo%27s',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bizzare',\n", + " 'https://www.turbosquid.com/Search/3D-Models/adventure'],\n", + " \"Cream Starter, the stand of Hot Pants from Jojo's Bizarre Adventure Part 7: Steel Ball run.\"],\n", + " ['PHILIPS 3D model',\n", + " 'iosebi',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-19',\n", + " '',\n", + " ['3D Model', 'technology', 'computer', 'desktop computer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/computer',\n", + " 'https://www.turbosquid.com/3d-model/desktop-computer'],\n", + " ['Computer'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/computer'],\n", + " 'Computer'],\n", + " ['Roman Pack 3D model',\n", + " 'MSvenTorjusC1999',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-19',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons'],\n", + " ['Roman',\n", + " '3D',\n", + " 'History',\n", + " 'Weapons',\n", + " 'Shield',\n", + " 'Helmet',\n", + " 'Tower',\n", + " 'Spike',\n", + " 'Wall',\n", + " 'Sword',\n", + " 'Pilum',\n", + " 'Rack',\n", + " 'Stand',\n", + " 'Ballista',\n", + " 'War'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/roman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/history',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapons',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shield',\n", + " 'https://www.turbosquid.com/Search/3D-Models/helmet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tower',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spike',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pilum',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ballista',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war'],\n", + " \"This bundle contains 13 models for things I most associate with ancient Rome:Roman ShieldGladius (Roman Sword)Roman HelmetBallistaPilumPilum RackSpike WallsWatch TowerLong BowWeapon/Shield RackWooden Barbarian ShieldReenforced Barbarian ShieldBarbarian SwordAll the models have been textured to the best of my ability. The Models are stored in the 'Individual Models' folder and the textures/height maps/ normal maps etc in the 'Textures' folder. There is also a .obj file that shows all the models in one place for demonstration purposes.\"],\n", + " ['3D Health Gun Free low-poly 3D model',\n", + " 'cycodev',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-18',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/raygun'],\n", + " ['health', 'gun', 'pick', 'up', 'medkit', 'meds', 'medic', 'game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/health',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/up',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medkit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/meds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " 'Health Gun pickup made for consol/PC and mobile games. Model is low poly and all textures are on a single UV tile ready to be placed into the game engine.Features:Full UVed and textured model.Consol, PC and mobile Game Ready.1024x1024 resolution textures.works well with the Health Box pickup model (Check my models for this asset).Enjoy and also check out my other models!'],\n", + " ['3D model Easy chair 02',\n", + " 'Tjasablabla',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-18',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair'],\n", + " ['easychair', 'chair', 'furniture', 'wood', 'sofa'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/easychair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sofa'],\n", + " 'Wooden easy chair'],\n", + " ['3D classic wall panel',\n", + " 'rasull',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-05-18',\n", + " '',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'picture frame'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/picture-frame'],\n", + " ['classic', 'panel', '3d', 'model', 'interior', 'design', 'free', 'wall'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/panel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall'],\n", + " 'classic wall panel you can use for your interior and exterior projects'],\n", + " ['3D model Atom Molecule',\n", + " 'kiankh',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'science', 'chemistry', 'atom'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/chemistry',\n", + " 'https://www.turbosquid.com/3d-model/atom'],\n", + " ['molecule', 'science', 'atom', 'chart', 'of', 'the', 'elements'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/molecule',\n", + " 'https://www.turbosquid.com/Search/3D-Models/science',\n", + " 'https://www.turbosquid.com/Search/3D-Models/atom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chart',\n", + " 'https://www.turbosquid.com/Search/3D-Models/of',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/elements'],\n", + " 'Atom Molecule'],\n", + " ['3D cartoonish lowpoly grass patch model',\n", + " 'usman039',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'plants',\n", + " 'grasses',\n", + " 'ornamental grass',\n", + " 'summer grass'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/plants',\n", + " 'https://www.turbosquid.com/3d-model/grasses',\n", + " 'https://www.turbosquid.com/3d-model/ornamental-grass',\n", + " 'https://www.turbosquid.com/3d-model/summer-grass'],\n", + " ['plant',\n", + " 'dirt',\n", + " 'rock',\n", + " 'boulder',\n", + " 'jag',\n", + " 'jagged',\n", + " 'desert',\n", + " 'soil',\n", + " 'sand',\n", + " 'area',\n", + " 'sandy',\n", + " 'cross',\n", + " 'grass',\n", + " 'grassy',\n", + " 'section',\n", + " 'dune',\n", + " 'dunes',\n", + " 'deserts',\n", + " 'landscape',\n", + " 'land',\n", + " 'terrain',\n", + " 'part'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dirt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/boulder',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jag',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jagged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desert',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/area',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sandy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cross',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grassy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/section',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dune',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dunes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/deserts',\n", + " 'https://www.turbosquid.com/Search/3D-Models/landscape',\n", + " 'https://www.turbosquid.com/Search/3D-Models/land',\n", + " 'https://www.turbosquid.com/Search/3D-Models/terrain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/part'],\n", + " 'The model was originally created in Maya 3D 2018, then fully textured and rendered using arnold.Features: -All textures and materials are tailored and applied for high quality render results. -All objects have fully unwrapped UVs. -No extra plugins are needed for this model. Specifications: \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 -Model is included in fbx formats. \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 -OBJ \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 -Model consists of 86864 Faces and 52600 Vertices. \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 -Model consists of quads only. \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0 -All Textures are JPG format file.'],\n", + " ['mini bar 3D model',\n", + " 'mehdaoui_saleh',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-16',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model', 'furnishings', 'bar counter', 'tiki bar'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/bar-counter',\n", + " 'https://www.turbosquid.com/3d-model/tiki-bar'],\n", + " ['mini', 'bar'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mini',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar'],\n", + " 'a liitle wooden tiki bar'],\n", + " ['3D Glass',\n", + " 'TdeX',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-15',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'wine glass'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/wine-glass'],\n", + " ['Glass', 'wine', 'with', 'wine.'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/with',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wine.'],\n", + " 'WINE GLASS:2 glasses: with and without wine.No liquid modifier just materials: red glass and white.Object has 1026 polygons and 1088 verts.no texturesEnjoy it.'],\n", + " ['Pan Low Poly 3D model',\n", + " 'diggy17',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-14',\n", + " '\\n\\n\\nOBJ 2017\\n\\n\\n\\n\\nFBX 2017\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'kitchenware',\n", + " 'cookware',\n", + " 'pan',\n", + " 'frying pan'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/kitchenware',\n", + " 'https://www.turbosquid.com/3d-model/cookware',\n", + " 'https://www.turbosquid.com/3d-model/pan',\n", + " 'https://www.turbosquid.com/3d-model/frying-pan'],\n", + " ['Low', 'poly', 'pan', 'for', 'games'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/games'],\n", + " 'Made with 3DS MAX2017POLY:766VERTS:766Textured and unwrapped.No subdivide polys :201 ,verts:183'],\n", + " ['Kettle 3D model',\n", + " 'VIR7',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-14',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'kitchenware',\n", + " 'cookware',\n", + " 'kettle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/kitchenware',\n", + " 'https://www.turbosquid.com/3d-model/cookware',\n", + " 'https://www.turbosquid.com/3d-model/kettle'],\n", + " ['kettle', 'kitchen', 'kitchenware', 'tea', 'coffee'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/kettle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchenware',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffee'],\n", + " \"Simple kettleSubdivision readyClean geometryUnwrapped UV's\"],\n", + " ['3D WIne Barrel model',\n", + " 'TdeX',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-14',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'industrial',\n", + " 'industrial container',\n", + " 'barrel',\n", + " 'wooden barrel',\n", + " 'wine barrel'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/barrel',\n", + " 'https://www.turbosquid.com/3d-model/wooden-barrel',\n", + " 'https://www.turbosquid.com/3d-model/wine-barrel'],\n", + " ['Wine', 'Barrel', 'beer', 'wood', 'metal', 'liquid', 'old'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/barrel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/liquid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old'],\n", + " 'WINE BARREL:Object made in blender (version: 2.79).Polygons and Verts:Verts: 1849Polygons: 1804Object is UV unwrapped.Files: OBJ FBX including textures.'],\n", + " ['3D model four pack of soda can',\n", + " 'usman039',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-14',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'food and drink', 'beverages', 'soda', 'soda can'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/beverages',\n", + " 'https://www.turbosquid.com/3d-model/soda',\n", + " 'https://www.turbosquid.com/3d-model/soda-can'],\n", + " ['can', 'beer', 'cola', 'juice', 'drink', 'soda', 'beverage'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/can',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cola',\n", + " 'https://www.turbosquid.com/Search/3D-Models/juice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soda',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beverage'],\n", + " 'Model are extremely detailed, suitable for photo realistic scenes and closeups alike. Model is high poly, and intended for photo real arnold scenes.'],\n", + " ['3D model Cardboard - Game Ready Free low-poly 3D model',\n", + " 'Latannan',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-13',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'box', 'cardboard box'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/box',\n", + " 'https://www.turbosquid.com/3d-model/cardboard-box'],\n", + " ['Cardboard', 'Box', 'Delivery', 'Warehouse', 'Package'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cardboard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/delivery',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warehouse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/package'],\n", + " 'Basic Game-Ready Mesh. Everything was done by me and you can do with it what you want.1024x1024 texture *.png double-sided Mesh texture is unbaked to give you the option to change the texture'],\n", + " ['3D model Shield',\n", + " 'Drakulla',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-13',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'armour', 'shield'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/armour',\n", + " 'https://www.turbosquid.com/3d-model/shield'],\n", + " ['shield',\n", + " 'viking',\n", + " 'antique',\n", + " 'Medieval',\n", + " 'Knight',\n", + " 'Fantasy',\n", + " 'Historic',\n", + " 'Max',\n", + " 'armour',\n", + " 'armor',\n", + " 'battle',\n", + " 'war',\n", + " 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/shield',\n", + " 'https://www.turbosquid.com/Search/3D-Models/viking',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antique',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/historic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armour',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " 'Lowpoly model of wooden shield in handpaint style- 340 polygons- 371 verticesCorrect geometryTexture size 2048x2048, PNG format'],\n", + " ['3D Sport bottle',\n", + " 'MusiritoKun',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-13',\n", + " '',\n", + " ['3D Model', 'sports', 'exercise equipment', 'sports bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/sports',\n", + " 'https://www.turbosquid.com/3d-model/exercise-equipment',\n", + " 'https://www.turbosquid.com/3d-model/sports-bottle'],\n", + " ['sports',\n", + " 'design',\n", + " \"musirito's\",\n", + " 'for',\n", + " 'free',\n", + " 'high',\n", + " 'quality',\n", + " 'bottle'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sports',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/musirito%27s',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/high',\n", + " 'https://www.turbosquid.com/Search/3D-Models/quality',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bottle'],\n", + " 'a sports bottle i designed it and modeled it by blender check it out and tell me your opinion took me few hours i added material and rendering .'],\n", + " ['M1911 3D',\n", + " 'AJSGaming',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-12',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'firearms',\n", + " 'handgun',\n", + " 'semi-automatic pistol'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/handgun',\n", + " 'https://www.turbosquid.com/3d-model/semi-automatic-pistol'],\n", + " ['Gun',\n", + " 'M1911',\n", + " 'Pistol',\n", + " 'Colt',\n", + " 'Weapons',\n", + " 'Weaponry',\n", + " 'Arms',\n", + " 'Armory',\n", + " 'Handgun',\n", + " 'military',\n", + " 'old',\n", + " 'marines'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/m1911',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pistol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapons',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weaponry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arms',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armory',\n", + " 'https://www.turbosquid.com/Search/3D-Models/handgun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marines'],\n", + " 'This is a high quality, realistic model of the Remington model 1911.It comes textured which was created in substance painter and UV unwrapped in blender, the UV maps are not perfect but allow the texture to cover the weapon well.High poly model contains over 700,000 vertsI have included the High poly and Low poly files.Each object in the model is its own object, meaning each object is UV unwrapped and texture to the best of my current ability. I think the model came out really well!Thank you for viewing my model!'],\n", + " ['Ka-Bar high poly 3D model',\n", + " 'XwarX _ Serob Tsarukyan',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-12',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'knife',\n", + " 'combat knife',\n", + " 'ka-bar'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/knife',\n", + " 'https://www.turbosquid.com/3d-model/combat-knife',\n", + " 'https://www.turbosquid.com/3d-model/ka-bar'],\n", + " ['KABAR',\n", + " 'KA-BAR',\n", + " 'knife',\n", + " 'marines',\n", + " 'war',\n", + " 'fighting',\n", + " 'combat',\n", + " 'army',\n", + " 'blade',\n", + " 'weapon',\n", + " '3d',\n", + " '3dsmax',\n", + " 'high',\n", + " 'highpoly',\n", + " '4k'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/kabar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ka-bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/marines',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/combat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/army',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dsmax',\n", + " 'https://www.turbosquid.com/Search/3D-Models/high',\n", + " 'https://www.turbosquid.com/Search/3D-Models/highpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4k'],\n", + " 'Model of the KA-BAR knife is a high quality, photo real model that will enhance detail and realism to any of your rendering projects. The model has a fully textured, detailed design that allows for close-up renders, and was originally modeled in 3ds Max 2018 and rendered with V-Ray. Fidelity is optimal up to a 4k render. Renders have no postprocessing.Hope you like it!Features:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- Model is fully textured with all materials applied.- No part-name confusion when importing several models into a scene.- No cleaning up necessaryjust drop your models into the scene and start rendering.- No special plugin needed to open scene.- Model does not include any backgrounds or scenes used in preview images.- Units: cmFile Formats:- 3ds Max 2018 V-Ray and standard materials scenes- 3ds Max 2017- 3ds Max 2016- 3ds Max 2015- OBJ (Multi Format)- 3DS (Multi Format)- FBX (Multi Format)Textures Formats:- (6 .png) 4096 x 4096DiffuseReflectionGlossinessiorNormalHeight- High quality polygonal model-Texturing Substance Painter - render with V-ray 3.60 in 3ds Max 2018- display unit scale : santimtric (cm)- system unit setup : 1 unit = 1 cm- OBJ (multi format) subdivision 0- FBX (multi format) subdivision 05122 polygons no TurboSmooth / 40934 TurboSmooth Lv15183 vertices no TurboSmooth / 20606 TurboSmooth Lv1'],\n", + " ['3D Axe PBR Low-Poly 4K',\n", + " 'GooPi',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-12',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'cutting tools', 'axe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/cutting-tools',\n", + " 'https://www.turbosquid.com/3d-model/axe'],\n", + " ['axe',\n", + " 'ax',\n", + " 'hatchet',\n", + " 'cleaver',\n", + " 'weapon',\n", + " 'gun',\n", + " 'weaponry',\n", + " 'unity',\n", + " 'unreal',\n", + " 'engine',\n", + " '4',\n", + " 'cryengine',\n", + " 'VR'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/axe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ax',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hatchet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cleaver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weaponry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cryengine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vr'],\n", + " 'Axe PBR Low-Poly 4KI invented it myself (Everything belongs to me)Check out my other work____________________________________Texture Sizes:All - 4096x4096(BaseColor, Roughness, Metalness,Normal)PNG* Geometry: Polygon mesh* Polygons:154* Vertices:82* Rigged - No* Animated - No* LOW-POLY - Yes* PBR - Yes* Number of Meshes: 1* Number of Textures:: 4* Materials - 1* UVW mapping - Non-overlapping* LODs: 0* Documentation:No* mportant/Additional Notes: No>Tegs:axeaxhatchetcleaverweapongunweaponryunityunreal engine 4cryengineVR'],\n", + " ['Dining table round for 4 people 3D model',\n", + " 'Danthree',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-12',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'dining table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/dining-table'],\n", + " ['table',\n", + " 'kitchen',\n", + " 'furniture',\n", + " 'interior',\n", + " 'design',\n", + " 'modern',\n", + " 'room',\n", + " 'wood',\n", + " 'living',\n", + " 'restaurant',\n", + " 'dining-table',\n", + " 'metal'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/restaurant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining-table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal'],\n", + " \"**Photorealistic 3D model round dining table is a perfect solution for any kitchen or dining room area that you might create as a part of your 3D visualization**High quality 3d model for interior design.Width x Height x Depth / 2200 mm x 1150 mm x 2300 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.*Your Danthree team */ 3d models modelled with love to every detail\"],\n", + " ['Smart TV 3D model',\n", + " 'Danthree',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-12',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'technology', 'video devices', 'tv', 'flatscreen television'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/video-devices',\n", + " 'https://www.turbosquid.com/3d-model/tv',\n", + " 'https://www.turbosquid.com/3d-model/flatscreen-television'],\n", + " ['tv',\n", + " 'electronic',\n", + " 'technology',\n", + " 'screen',\n", + " 'video',\n", + " 'lcd',\n", + " 'hd',\n", + " 'led',\n", + " 'monitor',\n", + " 'television',\n", + " 'entertainment',\n", + " 'laptop',\n", + " 'omputer-equipment',\n", + " 'ultra',\n", + " 'uhd',\n", + " 'interior',\n", + " 'living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/technology',\n", + " 'https://www.turbosquid.com/Search/3D-Models/screen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/video',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lcd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/led',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monitor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/television',\n", + " 'https://www.turbosquid.com/Search/3D-Models/entertainment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laptop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/omputer-equipment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ultra',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uhd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Photorealistic 3d TV for interior designHigh quality 3d model for interior design.Width x Height x Depth / 1100 mm x 675 mm x 170 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.Your Danthree team / 3d models modelled with love to every detail\"],\n", + " ['3D model Classic table lamp round free',\n", + " 'Danthree',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-12',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['living',\n", + " 'amp',\n", + " 'table-lamp',\n", + " 'tablelamp',\n", + " 'furniture',\n", + " 'interior',\n", + " 'table',\n", + " 'home',\n", + " 'light',\n", + " 'lighting',\n", + " 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/amp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table-lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tablelamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/light',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " \"**Photorealistic round 3d table lamp for office and living area** High quality 3d model for interior design.Width x Height x Depth / 215 mm x 500 mm x 350 mmAll materials are texturedAlle our models we create are created to represent real-life object's dimensions in millimetre. No light or camera settings are included in the model.If you have any further questions please let us know.*Your Danthree team */ 3d models modelled with love to every detail\"],\n", + " ['Medieval chest model',\n", + " 'Young_Wizard',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-11',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'chest', 'wooden chest'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/chest',\n", + " 'https://www.turbosquid.com/3d-model/wooden-chest'],\n", + " ['chest', 'crate', 'storage', 'medieval', 'box', 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/storage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'Medieval chest all texture 2048x2048 (basecolor, metallic ,roughness, AO, normal) game ready model. Can use this for exterior and interior scene'],\n", + " ['Optical puzzle model',\n", + " '3d_new',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-11',\n", + " '\\n\\n\\nIGES 5.3\\n\\n\\n\\n\\nFBX 2009\\n\\n\\n\\n\\nSTL 80\\n\\n',\n", + " ['3D Model', 'toys and games', 'games', 'puzzle', 'puzzle cube'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/puzzle',\n", + " 'https://www.turbosquid.com/3d-model/puzzle-cube'],\n", + " ['impossible',\n", + " 'cuboid',\n", + " 'visual',\n", + " 'optical',\n", + " 'illusion',\n", + " '3D',\n", + " 'trick',\n", + " 'puzzle',\n", + " 'conundrum',\n", + " 'jigsaw',\n", + " 'riddle'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/impossible',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cuboid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/visual',\n", + " 'https://www.turbosquid.com/Search/3D-Models/optical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/illusion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/puzzle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/conundrum',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jigsaw',\n", + " 'https://www.turbosquid.com/Search/3D-Models/riddle'],\n", + " 'The model needs to be turned at a certain angle********************************* Hope you like it! Also check out my other models, just click on my user name to see complete gallery.'],\n", + " ['3D sofa model',\n", + " 'aya2299',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-11',\n", + " '\\n\\n\\nOther 2015\\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'sofa'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/sofa'],\n", + " ['Sofa', 'livivg'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/livivg'],\n", + " 'Cadillac Sofa Rugiano'],\n", + " ['Game Container 3D model',\n", + " 'SkilHardRU',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-11',\n", + " '\\n\\n\\nFBX 16\\n\\n\\n\\n\\nOBJ 16\\n\\n\\n\\n\\n3D Studio Project png\\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'vehicle parts',\n", + " 'spacecraft parts',\n", + " 'sci fi container'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/spacecraft-parts',\n", + " 'https://www.turbosquid.com/3d-model/sci-fi-container'],\n", + " ['Sci-fi',\n", + " 'props',\n", + " 'crate',\n", + " 'box',\n", + " 'military',\n", + " 'halway',\n", + " 'panel',\n", + " 'free',\n", + " 'industrial',\n", + " 'scifi',\n", + " 'game',\n", + " 'games',\n", + " 'container',\n", + " 'kargo',\n", + " 'cargo'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sci-fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/halway',\n", + " 'https://www.turbosquid.com/Search/3D-Models/panel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scifi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/games',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kargo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cargo'],\n", + " 'Game ContainerContainer Free. Hi friends, I share the free requisite for the game environment, I hope you will be pleased to receive a free model! And so what is in the archives.1) HighPoly model for baking2) LowPoly model for baking3) LowPoly model for texturing4) Game LowPoly model with real size'],\n", + " ['3D model 3D city Bryzeziny Poland',\n", + " 'ymcmbennie',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-10',\n", + " '',\n", + " ['3D Model', 'architecture', 'urban design', 'city'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/city'],\n", + " ['#architecture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23architecture'],\n", + " 'Accurate part of city in lodz Piotkowska streetMasses of enviroment'],\n", + " ['Blue moon spacecraft 3D model',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-10',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'vehicles', 'spacecraft', 'lander'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/lander'],\n", + " ['\"Blue', 'Moon\"', 'jeff', 'besos', 'amazon', 'spacecraft', 'nasa'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%22blue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moon%22',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jeff',\n", + " 'https://www.turbosquid.com/Search/3D-Models/besos',\n", + " 'https://www.turbosquid.com/Search/3D-Models/amazon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spacecraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nasa'],\n", + " '3D Blue moon spacecraftIMPORTANT : Please note that the dimensions are approximate.Thank you.'],\n", + " ['Couch 3D model',\n", + " 'tauan_bellintani',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-09',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'sofa', 'leather sofa'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/sofa',\n", + " 'https://www.turbosquid.com/3d-model/leather-sofa'],\n", + " ['couch', 'old', 'antique', 'vintage', 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/couch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antique',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'A nice couch :)'],\n", + " ['3D Audio Speaker model',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-09',\n", + " '',\n", + " ['3D Model', 'technology', 'computer equipment', 'computer speakers'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/computer-equipment',\n", + " 'https://www.turbosquid.com/3d-model/computer-speakers'],\n", + " ['Audio', 'Speaker', 'Computer', 'PC'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/audio',\n", + " 'https://www.turbosquid.com/Search/3D-Models/speaker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pc'],\n", + " 'Multi Media audio speakerPolygons : 1030Vertex : 8708'],\n", + " ['Desk 3D',\n", + " 'tauan_bellintani',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'desk', 'office desk', 'workstation'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk',\n", + " 'https://www.turbosquid.com/3d-model/office-desk',\n", + " 'https://www.turbosquid.com/3d-model/workstation'],\n", + " ['desk', 'wood', 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'A low poly deskto use in decorations.'],\n", + " ['Chair 3D model',\n", + " 'tauan_bellintani',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair'],\n", + " ['chair', 'furniture', 'decoration', 'wood'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood'],\n", + " 'A low poly chair to use in decorations.'],\n", + " ['3D Armchair model',\n", + " 'tauan_bellintani',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['armchair', 'chair', 'furniture', 'house'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/armchair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house'],\n", + " 'A low poly armchair to use in decorations.'],\n", + " ['Nightstand 3D model',\n", + " 'tauan_bellintani',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '',\n", + " ['3D Model', 'furnishings', 'night stand'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/night-stand'],\n", + " ['wood', 'nightstand', 'stand', 'furniture', 'bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nightstand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " 'A low poly nightstand to use in decorations.'],\n", + " ['cube animatable 3D model',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-05-08',\n", + " '',\n", + " ['3D Model', 'toys and games', 'games', 'puzzle', 'puzzle cube'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/puzzle',\n", + " 'https://www.turbosquid.com/3d-model/puzzle-cube'],\n", + " ['children', 'entertainment', 'child', 'cube', 'game', 'geek'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/children',\n", + " 'https://www.turbosquid.com/Search/3D-Models/entertainment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/child',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cube',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/geek'],\n", + " 'polygons 6359vertex 5895'],\n", + " ['3D Cabinet-01 model',\n", + " 'Fabline',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '\\n\\n\\nAutoCAD drawing 2007\\n\\n\\n\\n\\nFBX 2014\\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'cabinet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/cabinet'],\n", + " ['furniture', 'cabinet'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cabinet'],\n", + " 'Previews were rendered with Autocad 2010 V-Ray 3.6.03 for 3ds Max 2017.Includes image file textures~~~~~~~~~~~~~~~~~~Hope you like it!Also check out my other models, just click on fabline to see complete gallery.'],\n", + " ['Fortnite Floss Dance Emote FREE 3D model',\n", + " 'dumpgermanlucas',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-08',\n", + " '\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'animal', 'mammals', 'land mammals', 'sloth'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/sloth'],\n", + " ['dance',\n", + " 'sloth',\n", + " '3d-animation',\n", + " 'emote',\n", + " 'free-model',\n", + " 'floss',\n", + " 'fortnite',\n", + " 'flossdance',\n", + " 'fortnite-animation',\n", + " '3d',\n", + " 'free',\n", + " 'fortnite-floss-emotes',\n", + " 'floss-dance'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dance',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sloth',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d-animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/emote',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free-model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floss',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fortnite',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flossdance',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fortnite-animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fortnite-floss-emotes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floss-dance'],\n", + " '3D Sloth Floss Dance And Free for any Commercial Use.'],\n", + " ['3D Chateau de Cheverny',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'residential building', 'manor'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/manor'],\n", + " ['Chateau',\n", + " 'castle',\n", + " 'cheverny',\n", + " 'france',\n", + " 'tintin',\n", + " 'moulinsart',\n", + " '3d',\n", + " 'French'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chateau',\n", + " 'https://www.turbosquid.com/Search/3D-Models/castle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cheverny',\n", + " 'https://www.turbosquid.com/Search/3D-Models/france',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tintin',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moulinsart',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/french'],\n", + " \"Chateau de cheverny / Chateau de moulinsartFrench castlePolygons :78971Vertex : 91968The castle of Cheverny is located in Sologne, on the commune of Cheverny, in the department of Loir-et-Cher and the region Centre-Val de Loire. It is one of the most frequented Loire castles with those of Blois and Chambord, very close. Classified as 'Historic Monuments', this castle is raised in the seventeenth century.He inspired Herge to create the Moulinsart castle, which is a replica of it.\"],\n", + " ['3D High Poly Realistic Tree model',\n", + " 'nahidhassan881',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-08',\n", + " '',\n", + " ['3D Model', 'nature', 'tree', 'deciduous tree'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/trees',\n", + " 'https://www.turbosquid.com/3d-model/deciduous-tree'],\n", + " ['high', 'poly', 'realistic', 'tree'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/high',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree'],\n", + " 'this is a very high poly tree and also very realistic. this tree have pbr texture and proper transparent shader'],\n", + " ['Fantasy Dice 3D model',\n", + " 'yoong5853',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-07',\n", + " '\\n\\n\\nCollada 1\\n\\n\\n\\n\\nFBX 1\\n\\n\\n\\n\\nOther 1\\n\\n\\n\\n\\nOBJ 1\\n\\n\\n\\n\\nSTL 1\\n\\n',\n", + " ['3D Model', 'toys and games', 'games', 'dice'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/dice'],\n", + " ['dice',\n", + " 'poker',\n", + " 'casino',\n", + " 'clubs',\n", + " 'spades',\n", + " 'diamonds',\n", + " 'hearts',\n", + " 'ring',\n", + " 'round',\n", + " 'symbol',\n", + " 'fantasy',\n", + " 'gamble'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/casino',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clubs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spades',\n", + " 'https://www.turbosquid.com/Search/3D-Models/diamonds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hearts',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/round',\n", + " 'https://www.turbosquid.com/Search/3D-Models/symbol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gamble'],\n", + " 'A Dice with a Poker Symbol Ring'],\n", + " ['Free 40mm grenade M433 3D',\n", + " 'teodar23',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-07',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'munitions', 'grenade'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/munitions',\n", + " 'https://www.turbosquid.com/3d-model/grenade'],\n", + " ['grenade',\n", + " 'ammo',\n", + " 'projectile',\n", + " '40mm',\n", + " 'realistic',\n", + " 'props',\n", + " 'low-poly',\n", + " 'game-ready',\n", + " 'military',\n", + " 'modern',\n", + " 'M433'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/grenade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ammo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/projectile',\n", + " 'https://www.turbosquid.com/Search/3D-Models/40mm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game-ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/m433'],\n", + " 'This is just a sample from the grenades pack.Built to specs (where available) and real dimensions. Very detailed and realistic but low poly and optimized. Triangle count is around 2000. Vertex Count: ~1500. Model in FBX and obj format. Textures are 1k (1024x1024). In the (paid) pack version all textures are 4k. Can be used as projectiles for weapons, attachments for characters or just as props. *Environment in the pictures is not included.'],\n", + " ['3D Alien game character',\n", + " 'Muhannad Alobaidi',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-07',\n", + " '',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'alien'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/alien'],\n", + " ['character', 'gameready', 'game', 'alien', 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alien',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'game character created for a game project called Alien escape rigging ready low poly model'],\n", + " ['3D Pick PBR Low-Poly 4K model',\n", + " 'GooPi',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-07',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX 7.5 2016\\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nShockwave 3D \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'gardening tools', 'mattock'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/gardening-tools',\n", + " 'https://www.turbosquid.com/3d-model/mattock'],\n", + " ['pick',\n", + " 'pickaxe',\n", + " 'pickax',\n", + " 'picker',\n", + " 'weapon',\n", + " 'gun',\n", + " 'weaponry',\n", + " 'unity',\n", + " 'unreal',\n", + " 'engine',\n", + " '4',\n", + " 'cryengine',\n", + " 'VR'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pickaxe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pickax',\n", + " 'https://www.turbosquid.com/Search/3D-Models/picker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weaponry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cryengine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vr'],\n", + " 'Pick PBR Low-Poly 4KI invented it myself (Everything belongs to me)Check out my other work____________________________________Texture Sizes:All - 4096x4096(BaseColor, Roughness, Metalness,Normal)PNG* Geometry: Polygon mesh* Polygons:276* Vertices:148* Rigged - No* Animated - No* LOW-POLY - Yes* PBR - Yes* Number of Meshes: 1* Number of Textures:: 4* Materials - 1* UVW mapping - Non-overlapping* LODs: 0* Documentation:No* mportant/Additional Notes: NoTegs:pickpickaxepickaxpickerweapongunweaponryunityunreal engine 4cryengineVR'],\n", + " ['3D model picnic table',\n", + " 'milkmanfromhell.net',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-06',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'picnic table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/picnic-table'],\n", + " ['picnic', 'table', '3d', 'game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/picnic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " 'Table picnic with relief UV map already done'],\n", + " ['3D Kitchen Hood model',\n", + " 'kristoM5',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'appliance',\n", + " 'household appliance',\n", + " 'kitchen appliance',\n", + " 'range hood'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/appliance',\n", + " 'https://www.turbosquid.com/3d-model/household-appliance',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-appliance',\n", + " 'https://www.turbosquid.com/3d-model/range-hood'],\n", + " ['kitchenhood',\n", + " 'cooking',\n", + " 'interior',\n", + " 'furnishings',\n", + " 'architecture',\n", + " 'cooker',\n", + " 'modern',\n", + " 'steel',\n", + " 'electric',\n", + " 'equipment',\n", + " 'oven',\n", + " 'home',\n", + " 'air',\n", + " 'kitchen',\n", + " 'hood'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/kitchenhood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooking',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furnishings',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/equipment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oven',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/air',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hood'],\n", + " 'Hello, I offer You a high quality 3D model of a kitchen hood. It is a part of a larger collection. Please check my other models. I am sure You will find a proper kitchen hood for Your scene. Regards'],\n", + " ['China-Russia CR929 Aircraft (Speculative) Solid Assembly Model (Rev 2 Free) 3D model',\n", + " 'RodgerSaintJohn',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-05',\n", + " '\\n\\n\\nOther Step 203\\n\\n\\n\\n\\nOther Sat\\n\\n',\n", + " ['3D Model', 'vehicles', 'aircraft', 'airplane', 'jet', 'airliner'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/aircraft',\n", + " 'https://www.turbosquid.com/3d-model/airplane',\n", + " 'https://www.turbosquid.com/3d-model/jet',\n", + " 'https://www.turbosquid.com/3d-model/airliner'],\n", + " ['China',\n", + " 'Russia',\n", + " 'CR929',\n", + " 'Aircraft',\n", + " 'Speculative',\n", + " 'Solid',\n", + " 'Assembly',\n", + " 'Model',\n", + " 'Airplane',\n", + " 'Aeronautics',\n", + " 'Aerodynamics',\n", + " 'Propulsion',\n", + " 'Engine',\n", + " 'Structure'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/china',\n", + " 'https://www.turbosquid.com/Search/3D-Models/russia',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cr929',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aircraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/speculative',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/assembly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/airplane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aeronautics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aerodynamics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/propulsion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/structure'],\n", + " 'The China-Russia CR929Transport Aircraft Solid Assembly Model consists of 522 solid part primitives collected into 26 sub assembly modules. NOTE: This is a speculative model based on fragmentary information.All of my models are developed specifically for use by conceptual designers, experimenters, educators, students and hobbyists. The models are constructed from scratch employing scaling of publicly released simple 3 view drawings and experienced based assumptions. Although general representation is very good - detail accuracy and accountability can be compromised by this approach.Its FREE. Enjoy!'],\n", + " ['Flash-Bang Grenade Zaria 3D model',\n", + " 'MyNameIsVoo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-05',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nAutoCAD drawing \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'weaponry', 'munitions', 'grenade'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/munitions',\n", + " 'https://www.turbosquid.com/3d-model/grenade'],\n", + " ['Grenade',\n", + " 'Flash',\n", + " 'Bang',\n", + " 'Zaria',\n", + " 'Military',\n", + " 'Arms',\n", + " 'Gun',\n", + " 'Stun',\n", + " 'Bomb',\n", + " 'Weapon',\n", + " 'War',\n", + " 'Explosives',\n", + " 'Defence',\n", + " 'Swat',\n", + " 'Unity',\n", + " 'Game',\n", + " 'Low',\n", + " 'Detailed',\n", + " 'High'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/grenade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bang',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zaria',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arms',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bomb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/explosives',\n", + " 'https://www.turbosquid.com/Search/3D-Models/defence',\n", + " 'https://www.turbosquid.com/Search/3D-Models/swat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/detailed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/high'],\n", + " 'Flash-Bang Grenade ZariaModel created in real world size. Units used - millimetersFeatures: - High-quality textures: 2048x2048- Textures complete - Diffuse(Albedo) map, Normal map, Specular map, AO- Optimized for games- LP and HP modelsRENDER: Marmoset Toolbag 2Quixel Suite 2Unity 5Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures.'],\n", + " ['PUBG PAN model',\n", + " 'Sidrenders',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-05-05',\n", + " '\\n\\n\\nOBJ 1\\n\\n\\n\\n\\nFBX 1\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'kitchenware',\n", + " 'cookware',\n", + " 'pan',\n", + " 'frying pan'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/kitchenware',\n", + " 'https://www.turbosquid.com/3d-model/cookware',\n", + " 'https://www.turbosquid.com/3d-model/pan',\n", + " 'https://www.turbosquid.com/3d-model/frying-pan'],\n", + " ['pan',\n", + " 'pubg',\n", + " 'gameassest',\n", + " 'assests',\n", + " 'props',\n", + " 'model',\n", + " '3dmodel',\n", + " 'blender',\n", + " 'pubgfanart'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pubg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameassest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/assests',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dmodel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pubgfanart'],\n", + " 'inspired from pubg...modelled in blender , textured in 3dcoat and rendered in marmoset toolbag3 ..available in fbx and obj format ...textures are in 2k sorry about that.. my laptop cant export 4k textures :(anyways i hope you love it ..have an amazing day:)and if you want any modification tell me :)AND PLZ PLZ PLZ PLZ PLZ PLZ RATE THIS MODEL PLZ PLZ'],\n", + " ['3D small house',\n", + " 'Tako_',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-04',\n", + " '',\n", + " ['3D Model', 'architecture', 'building', 'residential building', 'house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house'],\n", + " ['house'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house'],\n", + " 'small house'],\n", + " ['Desk 3D',\n", + " 'Pereplonov',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-03',\n", + " '',\n", + " ['3D Model', 'furnishings', 'desk'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk'],\n", + " ['desktop', 'Neon', 'table', 'computer', 'table', 'computer', 'Desk'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/desktop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/neon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk'],\n", + " 'Desk.Free model made using the graphical editor Cinema 4D.'],\n", + " ['Stone Floor model',\n", + " '4Engine',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-03',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'interior design', 'finishes', 'flooring', 'tile'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/finishes',\n", + " 'https://www.turbosquid.com/3d-model/flooring',\n", + " 'https://www.turbosquid.com/3d-model/tile'],\n", + " ['floor',\n", + " 'architecture',\n", + " 'low-poly',\n", + " 'game-ready',\n", + " 'environment',\n", + " 'stone',\n", + " 'realistic',\n", + " 'ancient',\n", + " 'old',\n", + " 'ground',\n", + " 'debris',\n", + " 'grass',\n", + " 'tileable',\n", + " 'tile'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game-ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/environment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ancient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ground',\n", + " 'https://www.turbosquid.com/Search/3D-Models/debris',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tileable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tile'],\n", + " 'A set of textures and models of additional objects to create a stone floor.- Polycount (tris):StoneFloor-SlabOne - 146,StoneFloor-SlabOne-LOD1 - 68,StoneFloor-SlabOne-LOD2 - 10,StoneFloor_SlabTwo - 154,StoneFloor_SlabTwo_LOD1 - 74,StoneFloor_SlabTwo_LOD2 - 10,StoneFloor_Ground - 29,StoneFloor_Ground_LOD1 - 10,StoneFloor_Ground_LOD2 - 2,StoneFloor-GrassOne - 16,StoneFloor-GrassOne-LOD1 - 8,StoneFloor-GrassOne-LOD2 - 4,StoneFloor-GrassTwo - 16,StoneFloor-GrassTwo-LOD1 - 8,StoneFloor-GrassTwo-LOD2 - 4,StoneFloor-FragmentOne - 40,StoneFloor-FragmentOne-LOD1 - 20,StoneFloor-FragmentOne-LOD2 - 10,StoneFloor-FragmentTwo - 44,StoneFloor-FragmentTwo-LOD1 - 22,StoneFloor-FragmentTwo-LOD2 - 10,StoneFloor-FragmentThree - 54,StoneFloor-FragmentThree-LOD1 - 26,StoneFloor-FragmentThree-LOD2 - 10,StoneFloor-FragmentFour - 50,StoneFloor-FragmentFour-LOD1 - 24,StoneFloor-FragmentFour-LOD2 - 10,StoneFloor-FragmentFive - 52,StoneFloor-FragmentFive-LOD1 - 26,StoneFloor-FragmentFive-LOD2 - 10.-Textures(.jpg, .tga, 4096x4096, 2048x2048, 1024x1024):Diffuse,Normal,Specular.The models was created in the program Blender 2.79. Native files are in archive BLEND. Also in the corresponding archives there are files for import: 3DS, FBX, OBJ. Textures can be found in archives TEXTURES and BONUS (additional textures that can be useful to someone in the work).'],\n", + " ['Cute bean monster 3D model',\n", + " 'luiis98',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-03',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster'],\n", + " ['cute', 'bean', 'monster', 'cutemonster', 'cartoon'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cute',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bean',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cutemonster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon'],\n", + " 'Simple 3D model of a Cute bean monster'],\n", + " ['Office Room 3D model',\n", + " 'Dipro Mondal',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-03',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'desk', 'office desk'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk',\n", + " 'https://www.turbosquid.com/3d-model/office-desk'],\n", + " ['room', 'office', 'table', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/room',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair'],\n", + " 'Office room design with basic elements'],\n", + " ['3D Cartoon Low Poly Tugboat Illustration',\n", + " 'Anton Moek',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-03',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'vehicles', 'vessel', 'cartoon boat'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vessel',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-boat'],\n", + " ['cartoon',\n", + " 'lowpoly',\n", + " 'weter',\n", + " 'boat',\n", + " 'tug',\n", + " 'sea',\n", + " 'low',\n", + " 'poly',\n", + " 'free',\n", + " 'illustration',\n", + " 'unity',\n", + " 'game',\n", + " 'cinema4d',\n", + " 'c4d',\n", + " 'antonmoek',\n", + " 'art',\n", + " 'simple',\n", + " 'toy',\n", + " 'port',\n", + " 'toon',\n", + " 'ship',\n", + " 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/boat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/illustration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cinema4d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/c4d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antonmoek',\n", + " 'https://www.turbosquid.com/Search/3D-Models/art',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/port',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ship',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " '- Cartoon Lowpoly Tugboat Illustration Scene- Created on Cinema 4d R17 (Render Ready on native file)- 25 218 Polygons- Procedural textured- Game Ready'],\n", + " ['SCI-FI BG 3D model',\n", + " 'kastaniga',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-03',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nAutoCAD drawing 2010\\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'cartoon landscapes'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-landscapes'],\n", + " ['3d', 'cg', 'blender', 'animation', 'evee'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/evee'],\n", + " 'This is science-fiction background for your production. This scene created with blender 2.8.Only blender version ready for rendering. Blender version displacement with height map.Other formats (3dsmax,maya) ready mesh with displacement.'],\n", + " ['3D Low Poly Truck',\n", + " 'Finlay12345',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-02',\n", + " '\\n\\n\\nOBJ 1\\n\\n\\n\\n\\nMicrosoft DirectDraw Surface 1\\n\\n\\n\\n\\nPNG 1\\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'car',\n", + " 'fictional automobile',\n", + " 'cartoon car',\n", + " 'cartoon truck'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car',\n", + " 'https://www.turbosquid.com/3d-model/fictional-automobile',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-car',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-truck'],\n", + " ['Fire', 'Truck', 'low', 'poly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly'],\n", + " 'This is a basic low poly truck I made when when i was still learning blender. The truck is sound and has no errors in it.'],\n", + " ['3D dog tags',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-02',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'uniform',\n", + " 'military uniform',\n", + " 'dog tag'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/uniform',\n", + " 'https://www.turbosquid.com/3d-model/military-uniform',\n", + " 'https://www.turbosquid.com/3d-model/dog-tag'],\n", + " ['dog', 'tags', 'chain', 'necklace', 'army', 'astronaut'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dog',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tags',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/necklace',\n", + " 'https://www.turbosquid.com/Search/3D-Models/army',\n", + " 'https://www.turbosquid.com/Search/3D-Models/astronaut'],\n", + " 'a pair of 3D dog tags to be used as you please.'],\n", + " ['3D spacestation',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-02',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'spacecraft', 'space station'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/spacecraft',\n", + " 'https://www.turbosquid.com/3d-model/spacestation'],\n", + " ['space', 'station', 'spaceship'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/space',\n", + " 'https://www.turbosquid.com/Search/3D-Models/station',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spaceship'],\n", + " 'a 3D space station to be used as you desire'],\n", + " ['Road bike 3D model',\n", + " 'RokReef',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-02',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'pedaled vehicles', 'bicycle', 'road bicycle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/pedaled-vehicles',\n", + " 'https://www.turbosquid.com/3d-model/bicycle',\n", + " 'https://www.turbosquid.com/3d-model/road-bicycle'],\n", + " ['road', 'bike.', 'bicycle.'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/road',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bike.',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bicycle.'],\n", + " 'Road bike. low model detail. reasonable for mid to far distance scene placement.'],\n", + " ['zelas armchair 3D model',\n", + " 'liquidmodeling',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-02',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['armchair', 'furniture', 'chair', 'interior', 'furnishings', 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/armchair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furnishings',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " 'High quality model. Detailed enough for close-up rendersFile formats: 3dmax * Corona OBJHope you like it! Also check out my other models, just click on my user name to see complete gallery'],\n", + " ['The sleigh out of wood 3D',\n", + " 'kidokrus',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-02',\n", + " '',\n", + " ['3D Model', 'vehicles', 'wagon', 'sledge'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/wagon',\n", + " 'https://www.turbosquid.com/3d-model/sledge'],\n", + " ['sledge',\n", + " 'sleigh',\n", + " 'sled',\n", + " 'toboggan',\n", + " 'luge',\n", + " 'winter',\n", + " 'wintertime',\n", + " 'tree',\n", + " 'wood',\n", + " 'timber',\n", + " 'blender',\n", + " 'wooden',\n", + " 'woodwork',\n", + " 'snow'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sledge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sleigh',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sled',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toboggan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/luge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/winter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wintertime',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/timber',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woodwork',\n", + " 'https://www.turbosquid.com/Search/3D-Models/snow'],\n", + " 'My first model, which I want to sell. I make this about 10 hours. Wood texture 3000x3000. Red texture 2000x2000.'],\n", + " ['3D Royalty free model',\n", + " 'dustinmeyer',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '',\n", + " ['3D Model', 'symbols', 'geometric shape', 'cube'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/symbols-and-shapes',\n", + " 'https://www.turbosquid.com/3d-model/geometric-shape',\n", + " 'https://www.turbosquid.com/3d-model/cube-shape'],\n", + " ['cube', 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cube',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " 'Royalty free cube, made fresh in blender 2.79 almost in every useable format!!'],\n", + " ['3D Free Retro Street Lamp model',\n", + " 'Marc Mons',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'urban design',\n", + " 'street elements',\n", + " 'street light'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/street-elements',\n", + " 'https://www.turbosquid.com/3d-model/street-light'],\n", + " ['lighting',\n", + " 'street',\n", + " 'house',\n", + " 'residencel',\n", + " 'history',\n", + " 'ancient',\n", + " 'retro',\n", + " 'vintage',\n", + " 'unity',\n", + " 'set',\n", + " 'road',\n", + " 'toon',\n", + " 'light',\n", + " 'lamp',\n", + " 'city',\n", + " 'town',\n", + " 'path',\n", + " 'metal',\n", + " 'iron',\n", + " 'classic',\n", + " 'fbx',\n", + " 'maya'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/street',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/residencel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/history',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ancient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/road',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/light',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/town',\n", + " 'https://www.turbosquid.com/Search/3D-Models/path',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/iron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maya'],\n", + " \"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support.\"],\n", + " ['3D Silencer 5.56 model',\n", + " 'MyNameIsVoo',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-04-30',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nIGES \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'ordnance accessories', 'silencer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/ordnance-accessories',\n", + " 'https://www.turbosquid.com/3d-model/silencer'],\n", + " ['Silencer',\n", + " 'Suppressors',\n", + " 'Recon',\n", + " 'Damper',\n", + " 'Retarder',\n", + " 'Acoustic',\n", + " 'Absorber',\n", + " 'Moderator',\n", + " 'Exhaust',\n", + " 'Muzzle',\n", + " 'Realtime',\n", + " 'Set',\n", + " 'Mod',\n", + " 'Attachment',\n", + " '556',\n", + " 'Weapon',\n", + " 'Pistol',\n", + " 'Gun',\n", + " 'Army',\n", + " 'Military'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/silencer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/suppressors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/recon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/damper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retarder',\n", + " 'https://www.turbosquid.com/Search/3D-Models/acoustic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/absorber',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moderator',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exhaust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/muzzle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realtime',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mod',\n", + " 'https://www.turbosquid.com/Search/3D-Models/attachment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/556',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pistol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/army',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military'],\n", + " 'Silencer 5.56 Detailed- 3D ModelModel created in real world size. Units used - millimetersFeatures: - Included HP and LP models- High-quality textures: 2048x2048- Textures complete - Diffuse(Albedo) map, Normal map, Specular map - Complete 4 colors (Black, White, Aluminum and Aluminum-Yellow)LP model:- With Textures- Optimized for gamesHP model:- Without TexturesRENDER: Marmoset Toolbag 2Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures.'],\n", + " ['Battle Axe Breaker 3D model',\n", + " 'sepandj',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nAutoCAD drawing \\n\\n\\n\\n\\nDXF \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOpenFlight \\n\\n\\n\\n\\nIGES \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'battle axe',\n", + " 'medieval axe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/battle-axe',\n", + " 'https://www.turbosquid.com/3d-model/medieval-axe'],\n", + " ['battle',\n", + " 'axe',\n", + " 'fight',\n", + " 'war',\n", + " 'handle',\n", + " 'wood',\n", + " 'dirt',\n", + " 'steel',\n", + " 'iron',\n", + " 'cast',\n", + " 'smith',\n", + " 'medieval',\n", + " 'rust',\n", + " 'melee',\n", + " 'weapon',\n", + " 'blade',\n", + " 'waraxe'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/axe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/handle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dirt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/iron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/smith',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/waraxe'],\n", + " \"It's a battle axe I've created by 3Ds MAX and tried to keep it low-poly so it can be easily used in games. I have made some maps for it by substance painter for it (which I have included in material assets), but I was not satisfied with the results so I materialized it again with Corona Materials (the renders).- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**- **Please Rate and Comment What You Think.**\"],\n", + " ['3D Wheelbarrow with Sand model',\n", + " 'elvair',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '\\n\\n\\nOther Textures\\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'cart', 'wheelbarrow'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/cart-tool',\n", + " 'https://www.turbosquid.com/3d-model/wheelbarrow'],\n", + " ['Shovel',\n", + " 'old',\n", + " 'rusted',\n", + " 'mud',\n", + " 'wheel',\n", + " 'barrow',\n", + " 'wheelbarrow',\n", + " 'construction',\n", + " 'industrial',\n", + " 'farming',\n", + " 'tool',\n", + " 'trolley',\n", + " 'sand',\n", + " 'gravel',\n", + " 'rusty',\n", + " 'rust',\n", + " 'low',\n", + " 'poly',\n", + " 'game',\n", + " 'dirt'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/shovel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rusted',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mud',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/barrow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheelbarrow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/construction',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/farming',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trolley',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gravel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rusty',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dirt'],\n", + " 'Features:- Low poly.- Game ready.- All textures included and materials applied.- Easy to modify.- Grouped and nomed parts.- All formacts tested and working.- Optimized.- No plugins required.- Atlas texture size: 4096x4096.'],\n", + " ['3D Colt Navy 1851 model',\n", + " 'Valerii Horlo',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-05-01',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun', 'revolver'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/handgun',\n", + " 'https://www.turbosquid.com/3d-model/revolver'],\n", + " ['weapon', 'gun', 'revolver', 'colt', 'navy', 'game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/revolver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/navy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " 'This is a full gameready aset of revolver Colt Navy 1851. Made as close as possible to the original with realistic texture. This is a lowpoly model modeled in May 2018. The pbr texture is made in Sabstence Painter and completed in Photoshop. Rendered in Marmoset toolbag 3 Texture pack includes:-Base color(Albedo); -AO; -Normal Map; -Roughness; -Metallic.All textures are 2048x2048. If you need to change the color of the model or if you have any problems, I will be happy to help you anytime.'],\n", + " ['Water bottle model',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'food and drink', 'food container', 'bottle', 'water bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food-container',\n", + " 'https://www.turbosquid.com/3d-model/bottle',\n", + " 'https://www.turbosquid.com/3d-model/water-bottle'],\n", + " ['Water', 'bottle', 'drink', 'bar'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bottle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar'],\n", + " 'Low poly water bottlePolygons : 550Vertex : 597Rendering : vraySoftware : 3dsmax 2017Textures : 2'],\n", + " ['Greanade RGD-5 3D',\n", + " 'MyNameIsVoo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-05-01',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nIGES \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'weaponry', 'munitions', 'grenade', 'rgd-5 grenade'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/munitions',\n", + " 'https://www.turbosquid.com/3d-model/grenade',\n", + " 'https://www.turbosquid.com/3d-model/rgd-5-grenade'],\n", + " ['Grenade',\n", + " 'rgd-5',\n", + " 'fuse',\n", + " 'explosion',\n", + " 'danger',\n", + " 'soviet',\n", + " 'war',\n", + " 'military',\n", + " 'violence',\n", + " 'bomb',\n", + " 'hand',\n", + " 'rgd5',\n", + " 'rgd',\n", + " 'frag',\n", + " 'handgrenade',\n", + " 'unity',\n", + " 'game',\n", + " 'free',\n", + " 'low',\n", + " 'weapon'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/grenade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rgd-5',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fuse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/explosion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/danger',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soviet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/violence',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bomb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rgd5',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rgd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/frag',\n", + " 'https://www.turbosquid.com/Search/3D-Models/handgrenade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon'],\n", + " 'Grenade RGD-5 DefenseModel created in real world size. Units used - millimetersFeatures: - High-quality textures: 2048x2048- Textures: 4 different colors(Yellow, Black, Green, Red)- Textures complete - Diffuse(Albedo) map, Normal map, Specular map, AO- Optimized for games- LP and HP modelsRENDER: Marmoset Toolbag 2Unity 5Feel free to leave your opinion in comments.If you are interested in this 3D model you can contact me.If you find bugs/errors, please let me know!NOTE! HP model without textures.'],\n", + " ['pawn 3D model',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-30',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'toys and games', 'games', 'chess', 'chessmen', 'pawn'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/chess',\n", + " 'https://www.turbosquid.com/3d-model/chessmen',\n", + " 'https://www.turbosquid.com/3d-model/pawn'],\n", + " ['pawn', 'chess', 'piece'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pawn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chess',\n", + " 'https://www.turbosquid.com/Search/3D-Models/piece'],\n", + " 'a 3D pawn chess piece'],\n", + " ['3D home model',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-30',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'residential building', 'house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house'],\n", + " ['house', 'home', 'two', 'story', 'go', 'inside', 'front', 'back', 'porch'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/two',\n", + " 'https://www.turbosquid.com/Search/3D-Models/story',\n", + " 'https://www.turbosquid.com/Search/3D-Models/go',\n", + " 'https://www.turbosquid.com/Search/3D-Models/inside',\n", + " 'https://www.turbosquid.com/Search/3D-Models/front',\n", + " 'https://www.turbosquid.com/Search/3D-Models/back',\n", + " 'https://www.turbosquid.com/Search/3D-Models/porch'],\n", + " 'a two story home with the ability to go inside with doors, front and back porches, and a stair case inside. all rooms can be entered.'],\n", + " ['3D mug model',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-30',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup'],\n", + " ['mug', 'cup', 'drink', 'glass', 'beer', 'dish'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dish'],\n", + " 'a mug to be used however you please'],\n", + " ['3D light post',\n", + " 'desmundo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-30',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'urban design',\n", + " 'street elements',\n", + " 'street light'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/street-elements',\n", + " 'https://www.turbosquid.com/3d-model/street-light'],\n", + " ['light', 'post', 'street', 'lamp'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/light',\n", + " 'https://www.turbosquid.com/Search/3D-Models/post',\n", + " 'https://www.turbosquid.com/Search/3D-Models/street',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp'],\n", + " 'A street light or lamp with a mesh light included to be used how you wish.'],\n", + " ['3D Gaming Keyboard',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-28',\n", + " '',\n", + " ['3D Model', 'technology', 'computer equipment', 'computer keyboard'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/computer-equipment',\n", + " 'https://www.turbosquid.com/3d-model/computer-keyboard'],\n", + " ['Gaming', 'Keyboard', 'Computer', 'Azerty'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/gaming',\n", + " 'https://www.turbosquid.com/Search/3D-Models/keyboard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/azerty'],\n", + " 'Gaming Keyboard (azerty)Polygons : 29712Vertex : 30783Rendering : vray'],\n", + " ['Eco-friendly Travel Cup model',\n", + " 'Lance174',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-28',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup',\n", + " 'paper coffee cup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup',\n", + " 'https://www.turbosquid.com/3d-model/paper-coffee-cup'],\n", + " ['mug',\n", + " 'travel',\n", + " 'cup',\n", + " 'glass',\n", + " 'drink',\n", + " 'tea',\n", + " 'coffee',\n", + " 'move',\n", + " 'kitchen',\n", + " 'objects',\n", + " 'simple'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/travel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/move',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/objects',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple'],\n", + " 'Great simple travel mug which would suit any scenario and help Bring some eco-friendly life back.created from cork material.simple and easy to add.'],\n", + " ['Bunny Figurine model',\n", + " 'Ablyr',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-28',\n", + " '',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'rodent',\n", + " 'rabbit',\n", + " 'cartoon rabbit'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/rodent',\n", + " 'https://www.turbosquid.com/3d-model/rabbit-animal',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-rabbit'],\n", + " ['Animal', 'Stylize', 'Figurines', 'Zbrush', 'Bunny', 'Rabbit'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stylize',\n", + " 'https://www.turbosquid.com/Search/3D-Models/figurines',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zbrush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bunny',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rabbit'],\n", + " 'Contains; ZTL,OBJ,STLZTL has textureRaw Zbrush poly 5.5M -Parts separate by subtools for easy modification.'],\n", + " ['3D model Lemon fruit tree',\n", + " 'Indaneey_design',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-27',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'nature', 'tree', 'fruit tree', 'citrus tree', 'lemon tree'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/trees',\n", + " 'https://www.turbosquid.com/3d-model/fruit-tree',\n", + " 'https://www.turbosquid.com/3d-model/citrus-tree',\n", + " 'https://www.turbosquid.com/3d-model/lemon-tree'],\n", + " ['tree',\n", + " 'lemon',\n", + " 'fruit',\n", + " 'orange',\n", + " 'flower',\n", + " 'bark',\n", + " 'leaf',\n", + " 'leaves',\n", + " 'truck',\n", + " 'branch',\n", + " 'forest',\n", + " 'bush',\n", + " 'nature',\n", + " 'garden'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lemon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fruit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/orange',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flower',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bark',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaves',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/branch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/forest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garden'],\n", + " 'Lemon fruit treeFILES FORMAT: C4D FBX 3ds OBJ, MTLIf you are looking for animation of this model, I have looped wind animation of it.Please I really appreciate your review.if you have any issues please contact me. I treat support very seriously, please do not hesitate to contact me using the contact form on my profile!.'],\n", + " ['3D Wallet',\n", + " 'Reddler',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-04-27',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'fashion and beauty',\n", + " 'apparel',\n", + " 'fashion accessories',\n", + " 'wallet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/fashion-accessories',\n", + " 'https://www.turbosquid.com/3d-model/wallet'],\n", + " ['pokemon',\n", + " 'pokeball',\n", + " 'charizard',\n", + " 'blastoise',\n", + " 'venusaur',\n", + " 'wallet',\n", + " 'pouch',\n", + " 'dollars',\n", + " 'cartoon',\n", + " 'toon',\n", + " 'dollar',\n", + " 'money',\n", + " 'poke',\n", + " 'ball',\n", + " 'pocket',\n", + " 'monsters'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pokemon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pokeball',\n", + " 'https://www.turbosquid.com/Search/3D-Models/charizard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blastoise',\n", + " 'https://www.turbosquid.com/Search/3D-Models/venusaur',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wallet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pouch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dollars',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dollar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/money',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poke',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ball',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pocket',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monsters'],\n", + " 'A Pokemon Wallet.Contains a Normal Map, Heightmap, Roughness, Diffuse, and Metallic as a PBR set.All textures are 2048x2048'],\n", + " ['Battle Axe Cutter model',\n", + " 'sepandj',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-27',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nAutoCAD drawing \\n\\n\\n\\n\\nDXF \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOpenFlight \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'battle axe',\n", + " 'medieval axe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/battle-axe',\n", + " 'https://www.turbosquid.com/3d-model/medieval-axe'],\n", + " ['axe',\n", + " 'battle',\n", + " 'war',\n", + " 'melee',\n", + " 'weapon',\n", + " 'cut',\n", + " 'cutter',\n", + " 'medieval',\n", + " 'old',\n", + " 'vintage',\n", + " 'rust',\n", + " 'iron',\n", + " 'steel',\n", + " 'wood',\n", + " 'sword',\n", + " 'sharp',\n", + " 'blade',\n", + " 'kill',\n", + " 'water',\n", + " 'damage',\n", + " 'scratch',\n", + " 'hand',\n", + " 'wooden',\n", + " 'metal',\n", + " 'shine'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/axe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cut',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cutter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/iron',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sharp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kill',\n", + " 'https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/damage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scratch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shine'],\n", + " \"It's a battle axe I've created by 3Ds MAX and tried to keep it low-poly so it can be easily used in games. I have made some maps for it by substance painter for it (which I have included in material assets), but I was not satisfied with the results so I materialized it again with Corona Materials (the renders).- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**- **Please Rate and Comment What You Think.**\"],\n", + " ['3D model Modern Chair',\n", + " 'Con To Art',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-27',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['chair',\n", + " 'blender',\n", + " 'blend',\n", + " 'modern',\n", + " 'pillow',\n", + " 'pillows',\n", + " 'uv',\n", + " 'material',\n", + " 'textured',\n", + " 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blend',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pillow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pillows',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/material',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textured',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " 'A modern chair that is free to use. Already unwrapped and and textured it fits every living room.I would be very thankful if you post your renderings to the comments if you have used this chair! Always interested in what you can come up with!Have fun!'],\n", + " ['Loop Wind Coconut palm tree model',\n", + " 'Indaneey_design',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-26',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'tree', 'palm tree', 'coconut palm'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/trees',\n", + " 'https://www.turbosquid.com/3d-model/palm-tree',\n", + " 'https://www.turbosquid.com/3d-model/coconut-palm'],\n", + " ['coconut',\n", + " 'palm',\n", + " 'tree',\n", + " 'autumn',\n", + " 'summer',\n", + " 'bark',\n", + " 'leaves',\n", + " 'leaf',\n", + " 'branches',\n", + " 'plant',\n", + " 'grass',\n", + " 'vintage',\n", + " 'winter',\n", + " 'nature',\n", + " 'forest',\n", + " 'tropical',\n", + " 'island',\n", + " 'beach'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coconut',\n", + " 'https://www.turbosquid.com/Search/3D-Models/palm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/autumn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/summer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bark',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaves',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/branches',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/winter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/forest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tropical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/island',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beach'],\n", + " 'This coconut Palm tree is a 3D model, with a looped wind animation.MAIN FEATURES: Looped wind animation ( C4D & FBX format ) Rigging ( C4D Only ) Bark texture (4k)FILES FORMAT: C4D ( animation ) FBX ( animation with PLA ) 3ds OBJ, MTL STLIf you want any kind of trees, I will make it for you in a low price.Please your review is very appreciated. Thank you!'],\n", + " ['Collection of iron candlesticks 3D model',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-26',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'candlestick holder'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/candlestick-holder'],\n", + " ['Candle', 'Candlestick'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/candle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/candlestick'],\n", + " 'Collection of iron candlesticksThis design is not animated. 123668 triangular polygonsPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ'],\n", + " ['3D Tomahawk model',\n", + " 'Roozbeh Edjbari',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-25',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n',\n", + " ['3D Model', 'vehicles', 'motorcycle', 'racing motorcycle', 'superbike'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/motorcycle',\n", + " 'https://www.turbosquid.com/3d-model/racing-motorcycle',\n", + " 'https://www.turbosquid.com/3d-model/superbike'],\n", + " ['tomahawk',\n", + " 'dodge',\n", + " 'bike',\n", + " 'motorcycle',\n", + " 'vehicle',\n", + " '3d',\n", + " 'highpoly',\n", + " 'subdiv',\n", + " 'uv',\n", + " 'texture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tomahawk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dodge',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bike',\n", + " 'https://www.turbosquid.com/Search/3D-Models/motorcycle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/highpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/subdiv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/uv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/texture'],\n", + " 'Dodge Tomahawk This model is based on a real motorcycle concept created by Dodge in 2002. This model is for free. Enjoy!3D Model: QuadsTextures: Diffuse, Reflection, Glossiness, HeightThank you for downloading this itemIf you like it please rate it!'],\n", + " ['sofa chair and pillow 3D model',\n", + " 'SHREYASH_PRASHU',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-25',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nJPEG \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['pillow', 'sofa', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pillow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair'],\n", + " 'sofa chair'],\n", + " ['3D Old TV model',\n", + " 'YannickCossec',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-25',\n", + " '',\n", + " ['3D Model', 'technology', 'video devices', 'tv', 'retro tv'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/video-devices',\n", + " 'https://www.turbosquid.com/3d-model/tv',\n", + " 'https://www.turbosquid.com/3d-model/retro-tv'],\n", + " ['Old', 'TV', 'television', 'tele', 'display', 'screen', 'monitor'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/television',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tele',\n", + " 'https://www.turbosquid.com/Search/3D-Models/display',\n", + " 'https://www.turbosquid.com/Search/3D-Models/screen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monitor'],\n", + " 'Here is an old TV, compatble with Maya and rendered with Arnold.'],\n", + " ['Particulate filter 3D model',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-24',\n", + " '\\n\\n\\nFBX 2014\\n\\n',\n", + " ['3D Model', 'vehicles', 'vehicle parts', 'engine', 'construction engine'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/engine',\n", + " 'https://www.turbosquid.com/3d-model/construction-engine'],\n", + " ['particulate', 'filter', 'construction', 'site', 'vehicle', 'digger'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/particulate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/filter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/construction',\n", + " 'https://www.turbosquid.com/Search/3D-Models/site',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/digger'],\n", + " 'Height :\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa01,5mWidth :\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa01,5mLenght : \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa00.5mSoftware :\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa03dsmax 2017Rendering :\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0VrayPolygons : \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa03281Vertex : \\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa0\\xa03759'],\n", + " ['Old American Car 3D model',\n", + " 'Romooncle',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-24',\n", + " '',\n", + " ['3D Model', 'vehicles', 'car', 'wrecked car'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car',\n", + " 'https://www.turbosquid.com/3d-model/wrecked-car'],\n", + " ['car',\n", + " 'amecan',\n", + " 'wrecked',\n", + " 'old',\n", + " 'muscle',\n", + " 'clasic',\n", + " 'free',\n", + " 'gameready',\n", + " 'lowpoly',\n", + " 'retro',\n", + " 'transport',\n", + " 'vihicle'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/amecan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wrecked',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/muscle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clasic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vihicle'],\n", + " 'Game ready lowpoly model.Poly: 14034Tris : 28054Verts: 155233 UV Parts: body, interior and details, chair.4 Textures for each part- Color (body, interior and details: 2048, chair: 1024)- Normal (body, interior and details: 2048, chair: 1024)- Roughness (body, interior and details: 2048, chair: 1024)- Metalness (body, interior and details: 2048, chair: 1024)Mirror overlapped UVFree model.'],\n", + " ['3D model Sword',\n", + " 'Ellen11',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-24',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nPNG \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword'],\n", + " ['sword', 'weapon', 'metallic', 'knight', 'knife', 'military', 'blade'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metallic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blade'],\n", + " 'My first 3D model in TurboSquid! Just wanna share with you. Enjoy it for your game design or other 3D projects!Please feel free to leave me any feedback and questionsTexture resolution: 2048 x 1024 px.Rendered in MAYA with Arnold'],\n", + " ['3D Common Oak 3D Model 4.5m',\n", + " 'cgaxis',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-22',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther textures\\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'tree', 'deciduous tree', 'oak tree'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/trees',\n", + " 'https://www.turbosquid.com/3d-model/deciduous-tree',\n", + " 'https://www.turbosquid.com/3d-model/oak-tree'],\n", + " ['common',\n", + " 'oak',\n", + " 'quercus',\n", + " 'robur',\n", + " 'tree',\n", + " 'foilage',\n", + " 'forest',\n", + " 'park',\n", + " 'deciduous',\n", + " 'leaf',\n", + " 'bark',\n", + " 'autumn'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/common',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oak',\n", + " 'https://www.turbosquid.com/Search/3D-Models/quercus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/robur',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tree',\n", + " 'https://www.turbosquid.com/Search/3D-Models/foilage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/forest',\n", + " 'https://www.turbosquid.com/Search/3D-Models/park',\n", + " 'https://www.turbosquid.com/Search/3D-Models/deciduous',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bark',\n", + " 'https://www.turbosquid.com/Search/3D-Models/autumn'],\n", + " 'Common Oak 3d model (Quercus Robur) in autumn season. Height: 4.5m. Compatible with 3ds max 2010 (V-Ray, Mental Ray, Corona) or higher, Cinema 4D R15 (V-Ray, Advanced Renderer), Unreal Engine, FBX, OBJ and VRMESH.'],\n", + " ['Old wooden table model',\n", + " 'Roarnya',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-22',\n", + " '\\n\\n\\nOBJ 2018\\n\\n',\n", + " ['3D Model', 'furnishings', 'table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table'],\n", + " ['Old', 'wooden', 'table', 'Low', 'polygon'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/polygon'],\n", + " 'Old wooden table : Low polygonModel and previews created in maya 2018 with arnoldFormats:ma. file ( No UV Mapped , No Textures )mb. file ( No UV Mapped , No Textures )OBJ file'],\n", + " ['3D Sledge hammer',\n", + " 'UniBlend',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-22',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'hand tools', 'hammer', 'sledgehammer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/hand-tools',\n", + " 'https://www.turbosquid.com/3d-model/hammer',\n", + " 'https://www.turbosquid.com/3d-model/sledgehammer'],\n", + " ['hammer',\n", + " 'weapon',\n", + " 'survival',\n", + " 'game',\n", + " 'low-poly',\n", + " 'game',\n", + " 'ready',\n", + " 'unity',\n", + " 'unreal',\n", + " 'melee',\n", + " 'tool',\n", + " 'sledgehammer'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/hammer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/survival',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sledgehammer'],\n", + " 'FeatureThis pack contain two basic part of Sledge Hammer first is Head and second is Handel it also contain textures made with substance painter and this pack is freeTexture Map- Base Colour Map- Normal Map- Height Map- Metallic Map- Roughness Map'],\n", + " ['3D Catapult Toy model',\n", + " 'Leo1233',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-30',\n", + " '\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'projectile weapons', 'catapult'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/projectile-weapons',\n", + " 'https://www.turbosquid.com/3d-model/catapult'],\n", + " ['Catapult', 'Medieval', 'Toy', 'Projectile'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/catapult',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/projectile'],\n", + " 'A 3 part functioning catapult. PLA recommended and supports recommended too but not required. Print time 1h 30 m. Great quality, recommend'],\n", + " ['3D Garden chair model',\n", + " 'AdrienJ',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-04-22',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'outdoor chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/outdoor-chair'],\n", + " ['IKEA', 'chair', 'garden', 'architecture', 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ikea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'Native File Format: 3ds Max 2017Render Engine: V-RayUnits used: MetersPolygon Count: 2432Vertices Count: 2542'],\n", + " ['Medieval tables model',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-22',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'dining table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/dining-table'],\n", + " ['Tables', 'Medieval'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval'],\n", + " 'Medieval wooden tables. One with ornamental sides, one plain. This design is not animated. 122257 quadrilateral polygons107858 triangular polygons352372 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ'],\n", + " ['3D retro car wheel model',\n", + " 'Andrewsibirian',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-22',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'vehicles', 'vehicle parts', 'wheel', 'car wheel'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/wheel',\n", + " 'https://www.turbosquid.com/3d-model/car-wheel'],\n", + " ['car', 'part', 'tire', 'wheel'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/part',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheel'],\n", + " ''],\n", + " ['Mouse 3D',\n", + " 'Reddler',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-21',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'technology', 'computer equipment', 'computer mouse'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/computer-equipment',\n", + " 'https://www.turbosquid.com/3d-model/computer-mouse'],\n", + " ['mouse',\n", + " 'wheel',\n", + " 'computer',\n", + " 'desk',\n", + " 'table',\n", + " 'usb',\n", + " 'laptop',\n", + " 'electronic',\n", + " 'electronics'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mouse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/computer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/usb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laptop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/electronics'],\n", + " 'This is a computer mouse.The textures include a diffuse for all 3 materials, plus a height and specular for the main material.'],\n", + " ['3D Chair',\n", + " 'Alex2641',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-21',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair'],\n", + " ['Chair', 'white'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white'],\n", + " 'Chair'],\n", + " ['3D Easter Eggs',\n", + " 'Render at Night',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-21',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'holidays', 'easter egg'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/seasons-and-holidays',\n", + " 'https://www.turbosquid.com/3d-model/easter-egg'],\n", + " ['easter', 'eggs', 'textured', 'painted'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/easter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eggs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textured',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted'],\n", + " 'Models of Easter Eggs. (The stated Faces and Vertices count is of all the Eggs combined after the Subdivision applied a.k.a. High Poly model)Available File variants:\\xa0\\xa0\\xa0 BLEND (Subdivision not applied, can be chosen)\\xa0\\xa0\\xa0 OBJ (Low Poly + High Poly)The textures of the eggs are already packed the the BLEND file and also available in their original form in the OBJ zip.*All photos were rendered in Blender with Cycles Render engine.'],\n", + " ['3D Dining Table and Chairs model',\n", + " 'Spectra_7',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-21',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'dining table', 'dining room set'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/dining-table',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-set'],\n", + " ['chair',\n", + " 'and',\n", + " 'chairs',\n", + " 'wood',\n", + " 'furniture',\n", + " 'cloth',\n", + " 'dining',\n", + " 'table',\n", + " 'set',\n", + " 'furnishing',\n", + " 'restaurant',\n", + " 'bar',\n", + " 'seat',\n", + " 'cafe',\n", + " 'home'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chairs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cloth',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/set',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furnishing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/restaurant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cafe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/home'],\n", + " 'A low-poly game ready dining table and chair set ready to put in your game. The chairs, table cloth are movable. You can move or remove them even in your game engine level.All textures in 2K i.e. 2048 x 2048 resolution textures.----------------------------------------------------Model Statistics:- Polys: 4610- Triangles: 9220- Vertices: 7122----------------------------------------------------Model Formats:- Blend- FBX- OBJ----------------------------------------------------Image Formats:- PNG----------------------------------------------------Model Names in Heirarchy:- Table- TableCloth- Chair_a- Chair_b- Chair_c- Chair_d- Chair_e- Chair_f----------------------------------------------------'],\n", + " ['3D I-Zen II',\n", + " 'COSEDIMARCO',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-21',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'car', 'fictional automobile'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car',\n", + " 'https://www.turbosquid.com/3d-model/fictional-automobile'],\n", + " ['I-zenborg', 'carrier', 'monsters', 'anime', 'japan', 'dinosaurs'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/i-zenborg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carrier',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monsters',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anime',\n", + " 'https://www.turbosquid.com/Search/3D-Models/japan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dinosaurs'],\n", + " 'Modelled with Sketchup****I-ZEN I is NOT included ****'],\n", + " ['Fantasy Sword 3D',\n", + " 'Toon coffer',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-21',\n", + " '',\n", + " ['3D Model', 'weaponry', 'weapons'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons'],\n", + " ['fantasy', 'sword', 'blender', 'free', 'free', 'model', 'toon', 'coffer'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/coffer'],\n", + " 'fantasy sword this is free model made by Rishabh sahu this is only blend file'],\n", + " ['3D auto mirror retro model',\n", + " 'Andrewsibirian',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-20',\n", + " '',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'vehicle parts',\n", + " 'automobile parts',\n", + " 'car mirror',\n", + " 'side-view mirror'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/automobile-parts',\n", + " 'https://www.turbosquid.com/3d-model/car-mirror',\n", + " 'https://www.turbosquid.com/3d-model/side-view-mirror'],\n", + " ['mirror', 'retro', 'moskvich', 'car', 'parts'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mirror',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moskvich',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/parts'],\n", + " 'mirror from soviet retro car'],\n", + " ['3D Ashtray model',\n", + " 'Manic Animatics',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-20',\n", + " '',\n", + " ['3D Model', 'science', 'smoking', 'ashtray'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/smoking',\n", + " 'https://www.turbosquid.com/3d-model/ashtray'],\n", + " ['ashtray',\n", + " 'ash',\n", + " 'tray',\n", + " 'Autodesk',\n", + " 'Maya',\n", + " 'Arnold',\n", + " 'Manic',\n", + " 'Animatics',\n", + " 'cigarette'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ashtray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/autodesk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/maya',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arnold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/manic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animatics',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cigarette'],\n", + " 'A common ashtray modeled and textured in Autodesk Maya.'],\n", + " ['3D Table model',\n", + " 'Ronak jain',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-20',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'desk'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/desk'],\n", + " ['Table', 'Furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'There is a 3d model of Table which supported .OBJ file'],\n", + " ['Knife 3D model',\n", + " 'o4zloy',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-19',\n", + " '\\n\\n\\nFBX 7.4\\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'knife',\n", + " 'combat knife'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/knife',\n", + " 'https://www.turbosquid.com/3d-model/combat-knife'],\n", + " ['battle', 'knife', 'weapon', 'for', 'games'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/knife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/games'],\n", + " 'For lessons CG Masters made a knife, optimized for games (checked in Unity3d)---(Create folder Textures and upload texture files there)'],\n", + " ['3D GIR',\n", + " 'Reddler',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-04-18',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'characters', 'movie and television character'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/movie-and-television-character'],\n", + " ['gir',\n", + " 'cartoon',\n", + " 'character',\n", + " 'invader',\n", + " 'zim',\n", + " 'gaz',\n", + " 'toon',\n", + " 'robot',\n", + " 'alien'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/gir',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/invader',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zim',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gaz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/robot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alien'],\n", + " 'This is a unrigged model of GIR. The face texture is within the zipped files. It also contains the posed version of Gir as in the presentation image.'],\n", + " ['3D Business Suit sexy',\n", + " 'dreondei',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-18',\n", + " '\\n\\n\\nFBX fbx tga\\n\\n',\n", + " ['3D Model', 'characters', 'people', 'woman', 'businesswoman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/woman',\n", + " 'https://www.turbosquid.com/3d-model/businesswoman'],\n", + " ['Business',\n", + " 'suit',\n", + " 'woman',\n", + " 'sexy',\n", + " 'victorie',\n", + " 'heaven',\n", + " 'czech',\n", + " 'blonde',\n", + " 'girl'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/business',\n", + " 'https://www.turbosquid.com/Search/3D-Models/suit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sexy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/victorie',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heaven',\n", + " 'https://www.turbosquid.com/Search/3D-Models/czech',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blonde',\n", + " 'https://www.turbosquid.com/Search/3D-Models/girl'],\n", + " 'Business woman in sexy cleavage black suit, czech model Victorie Heaven.fbx, pose and textures included, lowpo with hd textures.Some bugs, like a hair fixed with diffuse or transparent map.'],\n", + " ['3D Ancient Roman gladius sword model',\n", + " 'samize',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword', 'gladius'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/gladius'],\n", + " ['Roman', 'sword', 'gladius', 'ancient', 'weapon', 'melee', 'historic'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/roman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gladius',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ancient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/historic'],\n", + " 'High quality low-poly realistic mesh of an ancient Roman gladius with detailed normal map and PBR textures.Ideal for real-time use, like games and VR.Correctly scaled.Two objects (sword and sheath) with single non-overlaping UV-map.Model has 1580 faces and 1573 vertices.Includes 4k textures for: base color, roughness, normal map, metallic and ambient occlusion.'],\n", + " ['3D Sci-fi bump stop',\n", + " 'SkilHardRU',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-18',\n", + " '\\n\\n\\nFBX 16\\n\\n\\n\\n\\nOBJ 16\\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'urban design',\n", + " 'infrastructure',\n", + " 'railroad track',\n", + " 'buffer stop'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/infrastructure',\n", + " 'https://www.turbosquid.com/3d-model/railroad-track',\n", + " 'https://www.turbosquid.com/3d-model/buffer-stop'],\n", + " ['sci',\n", + " 'fi',\n", + " 'props',\n", + " 'bump',\n", + " 'stop',\n", + " 'znak',\n", + " 'blok',\n", + " 'spase',\n", + " 'inveroment',\n", + " 'ontainer',\n", + " 'military',\n", + " 'industrial',\n", + " 'tool',\n", + " 'wall'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sci',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bump',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/znak',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blok',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spase',\n", + " 'https://www.turbosquid.com/Search/3D-Models/inveroment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ontainer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall'],\n", + " 'Sci-fi bump stopHello!! and again I, as always with trinkets !! this time I present to your attention a free props in the form of a Sci-fi block, for fencing, or for something else, it all depends on the ideas you are working on every day !! This props is suitable for visualizing or filling the scene as it contains a large number of polygons, low poly for game engines is supplied to this model, you just need to bake the normals, and put materials for your style for this everything is prepared !! Well, it remains to wish you good luck in this not easy business) P / S well, do not forget to support Lucas if you like what I do, thank you all and see you soon ... Low poly (poligon-2494 Vertex-1514)'],\n", + " [\"3D Kirito's Elucidator Sword ! model\",\n", + " 'MusiritoKun',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-18',\n", + " '',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'sword',\n", + " 'fantasy sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-sword'],\n", + " ['model', \"Kirito's\", 'Anime', 'sword', '3D'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kirito%27s',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anime',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d'],\n", + " \"Kirito's Elucidator sword from Anime Sword art Online became 3D Check it out !\"],\n", + " ['3D Ancient Temple',\n", + " 'Noctiluca_',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-16',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'archaeology', 'ancient ruins'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/archaeology',\n", + " 'https://www.turbosquid.com/3d-model/ruins'],\n", + " ['Ancient',\n", + " 'Pillar',\n", + " 'Column',\n", + " 'Temple',\n", + " 'Hieroglyph',\n", + " 'Sand',\n", + " 'Desert',\n", + " 'Game',\n", + " 'Free',\n", + " 'Ruins',\n", + " 'Exterior',\n", + " 'Environment',\n", + " 'Antique',\n", + " 'Old'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ancient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pillar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/column',\n", + " 'https://www.turbosquid.com/Search/3D-Models/temple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hieroglyph',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desert',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ruins',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/environment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antique',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old'],\n", + " 'One of the ancient ruins for the game environment,A small sandy damaged temple is covered with some hieroglyphs, - The asset consists of 1,904 vertices, - 4K textures, - 3 materials (pillars, wall, floor+ceiling) - 1 mesh, - Base color, Normal and Roughness maps.'],\n", + " ['3D BLENDER EEVEE Brandless Small 4 Door Hatchback model',\n", + " 'denniswoo1993',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-16',\n", + " '',\n", + " ['3D Model', 'vehicles', 'car', 'hatchback'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car',\n", + " 'https://www.turbosquid.com/3d-model/hatchback'],\n", + " ['street',\n", + " 'retro',\n", + " 'tire',\n", + " 'exterior',\n", + " 'suv',\n", + " '2013',\n", + " 'racing',\n", + " '2015',\n", + " 'render',\n", + " 'vehicle',\n", + " 'v12',\n", + " 'logo',\n", + " 'real',\n", + " 'sportpack',\n", + " 'motor',\n", + " 'eevee',\n", + " 'modern',\n", + " 'transport',\n", + " 'car',\n", + " 'standard'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/street',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/suv',\n", + " 'https://www.turbosquid.com/Search/3D-Models/2013',\n", + " 'https://www.turbosquid.com/Search/3D-Models/racing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/2015',\n", + " 'https://www.turbosquid.com/Search/3D-Models/render',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/v12',\n", + " 'https://www.turbosquid.com/Search/3D-Models/logo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/real',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sportpack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/motor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eevee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/standard'],\n", + " \"Car Name: SHC MCE 1This car is rendered in realtime in Blender Eevee, to open the native Blender file, you will need Blender 2.8.The price of this car is calculated on it's combination of parts and options in relationship to other MCE cars. The lower priced MCE cars have the same building quality as the higher priced ones, but the overal look and used parts will be better on the higher priced MCE cars. This allows me to release cars at accessable prices, and release better looking ones at a higher price. (all options for this car are listed at the bottom of the description)This car is made with the SHC modular car creation tool.Custom designed parts im a high detailed brandless/generic car with real modern cars inspiration that can be used for renders, presentations, real time apps and video games without displaying or copying any real life car model.*Detailed exterior*Detailed interior (can be removed to lower polycount)*Detailed engine (can be removed to lower polycount)*Detailed underside*Materials and textures without shaders are available in the exported files.*The Studio, materials and camera/door animations are included in the Blender file that is used to create all realtime renders for this car. everything in this file is set up, you only have to move the camera and click ''render''. (roughness is generated with the default texture file)*The car is linked into several objects to make it more suitable for animations, opening doors, rigging and modifying / tuning / customizing.*The car is royalty free, so you are free to modify and use it in any (commercial) project as much as you want.*Objects: 43File formats: (all file formats are exported with blender 2.8 default settings) *abc *blend *dae *fbx *obj *stl[Options] Car Body: Small 4 door hatchbackEngine: (Engine block can be removed to simulate an electric car, the mechanical parts under the hood will remain) 4 cilinderSport pack: NoFront bumper: Tier 3Rear bumper: Tier 3Dashboard: Tier 2Exhaust: Tier 2Wheels: Tier 3Glass Roof: NoSeats: Comfort SeatsExecutive rear seats with table and screens: NoTrim Color: Glossy blackInterior Leather Color: WhiteTinted Rear Windows: NoWheel Color: Black\"],\n", + " ['Wheel_001 3D model',\n", + " '3dyer',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-16',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'vehicle parts',\n", + " 'wheel',\n", + " 'truck wheel',\n", + " 'truck tire'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-tire'],\n", + " ['wheel',\n", + " 'heavy',\n", + " 'vehicle',\n", + " 'car',\n", + " 'transport',\n", + " 'road',\n", + " 'big',\n", + " 'monster',\n", + " 'truck',\n", + " 'tire',\n", + " 'rim'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wheel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heavy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/road',\n", + " 'https://www.turbosquid.com/Search/3D-Models/big',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rim'],\n", + " 'A model of a monster truck wheel. The model is subdivisional, consists of quads. The wheel has real world dimansions: 4m * 4m * 2m. 2k PBR textures. Rendered in Marmoset'],\n", + " ['3D wheel model',\n", + " 'Nittubawa',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-16',\n", + " '\\n\\n\\nFBX 2019\\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'vehicle parts',\n", + " 'wheel',\n", + " 'truck wheel',\n", + " 'truck tire'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-tire'],\n", + " ['truck', 'heavy', 'vehicle', 'wheel'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/heavy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheel'],\n", + " 'wheel 3d model\\xa0\\xa0\\xa0made by maya 2019 rendered by arnold file format fbx 20193 material with textures textures are above 2048 pixel'],\n", + " ['Turtle Basic Model 3D',\n", + " 'Behnam_aftab',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-15',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n',\n", + " ['3D Model', 'nature', 'animal', 'reptile', 'turtle', 'cartoon turtle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/reptile',\n", + " 'https://www.turbosquid.com/3d-model/turtle',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-turtle'],\n", + " ['animal', 'turtle', 'creature', 'nature', 'reptile'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/animal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/turtle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/creature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reptile'],\n", + " 'This is Free Turtle Basic Model. I hope you like it.IF YOU LIKE THIS PRODUCT - RATE IT! THANKS!'],\n", + " ['3D Semi Truck',\n", + " 'KozyDraconequus',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-15',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'large truck',\n", + " 'semi-trailer truck',\n", + " 'large goods vehicle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/large-truck',\n", + " 'https://www.turbosquid.com/3d-model/semi-trailer-truck',\n", + " 'https://www.turbosquid.com/3d-model/large-goods-vehicle'],\n", + " ['semi',\n", + " 'truck',\n", + " 'tractor',\n", + " 'trailer',\n", + " 'lorry',\n", + " '18',\n", + " 'wheeler',\n", + " 'lights',\n", + " 'high',\n", + " 'poly',\n", + " 'quality',\n", + " 'textured'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/semi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tractor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trailer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lorry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/18',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheeler',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/high',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/quality',\n", + " 'https://www.turbosquid.com/Search/3D-Models/textured'],\n", + " 'Semi truck modeled after various brands, textured, relatively high-polyTo use .mb, find in scenes > semi.mbTo open textures, set project to the folder itself, textures are in Textures folder if you need it.To use OBJ, download the .obj zipI will upload a few variants e.g Tanker, Cargo box, Flatbed soon. Stay tuned'],\n", + " ['3D vintage truck',\n", + " 'Nittubawa',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-15',\n", + " '\\n\\n\\nFBX 2019\\n\\n',\n", + " ['3D Model', 'vehicles', 'car', 'suv', 'pick-up truck'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car',\n", + " 'https://www.turbosquid.com/3d-model/suv',\n", + " 'https://www.turbosquid.com/3d-model/pick-up-truck'],\n", + " ['vintage', 'rusted', 'vehicle', 'cargo', 'truck'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rusted',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cargo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck'],\n", + " 'cargo truck\\xa0\\xa0\\xa0rusted truck\\xa0\\xa0\\xa0vintage truck 3d model file format fbx 2019made by maya 2019texture are under 1024 - 4094 pixellow poly game ready model\\xa0\\xa0\\xa0suitable for android gaming also'],\n", + " ['Elefhant 3D',\n", + " 'Rakesh Kulthe',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-14',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'elephant',\n", + " 'cartoon elephant'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/elephant',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-elephant'],\n", + " ['Animals'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/animals'],\n", + " 'for game and any use'],\n", + " ['3D FREE 3-Gem Sampler Pack',\n", + " 'derikjohnson',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-14',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'mineral', 'gems'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/mineral',\n", + " 'https://www.turbosquid.com/3d-model/gems'],\n", + " ['head',\n", + " 'hand',\n", + " 'wrist',\n", + " 'ankle',\n", + " 'body',\n", + " 'armor',\n", + " 'crown',\n", + " 'sword',\n", + " 'shield',\n", + " 'bow',\n", + " 'archer',\n", + " 'hunt',\n", + " 'dagger',\n", + " 'goblet',\n", + " 'plate',\n", + " 'gold',\n", + " 'diamond',\n", + " 'wealth',\n", + " 'jewelry',\n", + " 'ring',\n", + " 'bracelet',\n", + " 'scepter'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wrist',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ankle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crown',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shield',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/archer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hunt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dagger',\n", + " 'https://www.turbosquid.com/Search/3D-Models/goblet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/diamond',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wealth',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jewelry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bracelet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scepter'],\n", + " \"3-Gem Custom Cut Colored Gemstones + Custom V-Ray Materials Sampler- Real World Cuts & Real World Materials Means Real-World Performance in Your 3D Creations- 3 Custom Cut Virtual Gemstones real world cuts designed for real material reflective index ranges. These are real world cuts (I am a gem cutter as well as a graphic/3D designer)if you design jewelry for real life, or the virtual worlds, these gemstones and materials are what you need to add real colored gemstones to your creations- NURBS Based Geometry in the Supplied Rhino Files (Rhino versions 5 & 6 included)Polygon Mesh Geometry in OBJ files OBJ mesh geometry was created from the Rhino NURBS originals and utilize the least number of polygons necessary to generate the gemstone's facet shapes- 20 Custom VRay Next Gemstone Materials includes an assorted grouping of 20 custom V-Ray gemstone materials from the following groups: quartz varieties (amethyst, citrine, rose de France, smokey quartz, praisolite, rock crystal, rose quartz), beryl varieties (aquamarine, emerald, morganite, green beryl, heliodore), topaz varieties (imperial pink, imperial orange, imperial red, imperial yellow, london blue, sky blue, swiss blue ), tourmaline varieties (indicolite, rubelite, green, paraiba), garnet varieties (pyrope, almandite, spessartite, demantoid), and cubic zirconia**- All of the materials included with this sample pack will work with any of the three custom cut virtual gemstonesNotes:- Scaling/resizing: ALWAYS USE UNIFORM SCALE when resizing a custom cut virtual gem each virtual gemstone has been optically designed for a specific primary material and range of secondary materials that optical performance only occurs when the facet angles are aligned correctly so to avoid loss of optical performance always use uniform scaleSize, Color and Optical Performance Guidelines:- Gemstone materials get their color primarily from the refraction fog color if you need to lighten or darken a custom cut virtual gemstone adjust the fog color and fog multiplier settings in the refraction section of the material (see the V-Ray Next manual for a complete description of how to make adjustments to the custom gemstone materials.- The same material will appear darker on larger stones, and lighter on smaller stones due to the amount of material the light rays have to travel through. If you have applied a material to a custom cut virtual gemstone and it appears too dark adjust the using a lighter colored version of the same gemstone.- In general, gemstones with a small number of facets, (the flat, highly-polished 'mirror' panels that cover the surface of the gemstone), are cut at smaller sizes, and gemstones with a high number of facets are typically cut larger (in the real world the smallest working size for facets is around 1 mm anything smaller is hard to do by hand. So if you want your gemstones to look realistic in your 3D creations, keep the relative sizes correct.\"],\n", + " ['3D Bar Chair model',\n", + " 'Vlad_3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-14',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'stool', 'bar stool'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/stool',\n", + " 'https://www.turbosquid.com/3d-model/bar-stool'],\n", + " ['chair',\n", + " 'furniture',\n", + " 'seat',\n", + " 'stool',\n", + " 'interior',\n", + " 'restaurant',\n", + " 'bar',\n", + " 'kitchen',\n", + " 'hotel',\n", + " 'alcohol',\n", + " 'business',\n", + " 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/restaurant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hotel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alcohol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/business',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " 'Bar ChairHigh quality polygonal models. Real world scale: 335 x 362 x 968 mmWood texture included 1300x1300pxAll objects and materisls have meaningful namesFor good renders!File Formats:Blender 3D 2.79 (native)MAX 20153DSOBJFBXDAESTL'],\n", + " ['3D model Lowpoly PBR Knight Armour',\n", + " 'soidev',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-13',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther Metallic\\n\\n\\n\\n\\nOther Specular\\n\\n\\n\\n\\nOther Unity\\n\\n',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'armour',\n", + " 'suit of armor',\n", + " 'medieval suit of armor'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/armour',\n", + " 'https://www.turbosquid.com/3d-model/suit-of-armor',\n", + " 'https://www.turbosquid.com/3d-model/medieval-suit-of-armor'],\n", + " ['knight',\n", + " 'fantasy',\n", + " 'medieval',\n", + " 'armor',\n", + " 'warrior',\n", + " 'armour',\n", + " 'armored',\n", + " 'plate',\n", + " 'chainmain',\n", + " 'helm',\n", + " 'greathelm',\n", + " 'lowpoly',\n", + " 'gameready',\n", + " 'pbr',\n", + " 'battle',\n", + " 'unity',\n", + " 'unreal',\n", + " 'collection',\n", + " 'characters'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warrior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armour',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armored',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chainmain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/helm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/greathelm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/collection',\n", + " 'https://www.turbosquid.com/Search/3D-Models/characters'],\n", + " 'A set of Lowpoly PBR Fantasy Medival Armour. The model is rigged to the UE4 skeleton, but not animated. A .blend file with IK set up is included. Unity package with the model set up to a humanoid rig is also provided (The dynamic moving parts of the armour may be set up with whichever solution you use in your project). The pack inclused 3 4k texture variations: Clean, Battered and Worn. The model has two texture sets and is split into several parts: Body, Helmet, Chainmail Hood, Gloves, Spaulders, Frontguard, Sideguards, Kneeguards, Boots. Total polycount: 39,455 tris and 22,544 verts.'],\n", + " ['Hand Painted Low Poly Sword 3D',\n", + " 'PriceMore',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-13',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword'],\n", + " ['handpainted', 'lowpoly', 'sword'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/handpainted',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sword'],\n", + " \"Simple low poly sword with relatively swift silhouette and a diffuse only, hand painted texture that's a mix between stylized and realistic styles.\"],\n", + " ['3D Low Poly Katana (Free)',\n", + " 'JoshuaCraytorFarinha',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-13',\n", + " '',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'bladed weapon',\n", + " 'sword',\n", + " 'samurai sword',\n", + " 'katana'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword',\n", + " 'https://www.turbosquid.com/3d-model/samurai-sword',\n", + " 'https://www.turbosquid.com/3d-model/katana'],\n", + " ['Katana', 'Free', 'Low', 'Poly', 'Game', 'Model'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/katana',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model'],\n", + " 'Decided to re-upload for free. Enjoy!'],\n", + " ['Vases_Red_Glass 3D model',\n", + " 'Pilot54',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-12',\n", + " '\\n\\n\\n3D Studio 2015\\n\\n\\n\\n\\nFBX 2015\\n\\n\\n\\n\\nOBJ 2015\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'vase',\n", + " 'modern vase'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/vase',\n", + " 'https://www.turbosquid.com/3d-model/modern-vase'],\n", + " ['beautiful',\n", + " 'frosted',\n", + " 'unusual',\n", + " 'vintage',\n", + " 'mirror',\n", + " 'floral',\n", + " 'for',\n", + " 'flowers',\n", + " 'value',\n", + " 'red',\n", + " 'glass',\n", + " 'large',\n", + " 'small',\n", + " 'tall',\n", + " 'wide',\n", + " 'silver',\n", + " 'trim',\n", + " 'collection',\n", + " 'cyl'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/beautiful',\n", + " 'https://www.turbosquid.com/Search/3D-Models/frosted',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unusual',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mirror',\n", + " 'https://www.turbosquid.com/Search/3D-Models/floral',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flowers',\n", + " 'https://www.turbosquid.com/Search/3D-Models/value',\n", + " 'https://www.turbosquid.com/Search/3D-Models/red',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/large',\n", + " 'https://www.turbosquid.com/Search/3D-Models/small',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wide',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silver',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trim',\n", + " 'https://www.turbosquid.com/Search/3D-Models/collection',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cyl'],\n", + " 'Vases from red glass with a relief mirror internal surface.'],\n", + " ['Classic Plants Pot 3D model',\n", + " 'Marc Mons',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-12',\n", + " '\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'planter',\n", + " 'flower pot'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/planter',\n", + " 'https://www.turbosquid.com/3d-model/flower-pot'],\n", + " ['plant',\n", + " 'free',\n", + " 'pot',\n", + " 'herb',\n", + " 'food',\n", + " 'green',\n", + " 'herbal',\n", + " 'fresh',\n", + " 'rosmarinus',\n", + " 'officinalis',\n", + " 'potted',\n", + " 'spice',\n", + " 'aromatic',\n", + " 'leaf',\n", + " 'culinary',\n", + " 'vegetable',\n", + " 'cuisine',\n", + " 'bush',\n", + " 'natural',\n", + " 'flowerpot',\n", + " '3d'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/herb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food',\n", + " 'https://www.turbosquid.com/Search/3D-Models/green',\n", + " 'https://www.turbosquid.com/Search/3D-Models/herbal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fresh',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rosmarinus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/officinalis',\n", + " 'https://www.turbosquid.com/Search/3D-Models/potted',\n", + " 'https://www.turbosquid.com/Search/3D-Models/spice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aromatic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leaf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/culinary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vegetable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cuisine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flowerpot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d'],\n", + " \"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema 4d and 3dmax.These formats with basic materials and textures.Thanks for your support.\"],\n", + " ['Sofa001 3D',\n", + " 'alimucahidtural',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-11',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'sofa'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/sofa'],\n", + " ['sofa', 'furniture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture'],\n", + " 'sofa furniture'],\n", + " ['cobertura de garagem 3D model',\n", + " 'manuella pires',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-11',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nJPEG 100\\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'outdoor structure',\n", + " 'gazebo',\n", + " 'pergola'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/outdoor-structure',\n", + " 'https://www.turbosquid.com/3d-model/gazebo',\n", + " 'https://www.turbosquid.com/3d-model/pergola'],\n", + " ['cobertura', 'para', 'carro'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cobertura',\n", + " 'https://www.turbosquid.com/Search/3D-Models/para',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carro'],\n", + " 'cobertura para carro sem textuta'],\n", + " ['3D Balcony',\n", + " 'juanmrgt',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-11',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building components', 'building deck'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/house-deck'],\n", + " ['balcony', 'architecture', 'deco', 'classical', 'element'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/balcony',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/deco',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/element'],\n", + " 'Classic balcony, architectural element useful for use in various architectural projects'],\n", + " ['Fleur-de-lis Medieval Shield emblem 3D model 3D model',\n", + " 'bodisatva5',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-10',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'weaponry', 'armour', 'shield', 'kite shield'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/armour',\n", + " 'https://www.turbosquid.com/3d-model/shield',\n", + " 'https://www.turbosquid.com/3d-model/kite-shield'],\n", + " ['Medieval',\n", + " 'shield',\n", + " 'armour',\n", + " 'body',\n", + " 'helmet',\n", + " 'guns',\n", + " 'melee',\n", + " 'lis',\n", + " 'flower'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shield',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armour',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/helmet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/guns',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lis',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flower'],\n", + " 'Medieval Shield with Fleur-de-lis emblem 3D modelblend file with procedural materials OBJ 3MF file for 3D printing'],\n", + " ['3D Cup model',\n", + " 'sneakychineseman',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-10',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'glassware',\n", + " 'coffee cup',\n", + " 'teacup'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/glassware',\n", + " 'https://www.turbosquid.com/3d-model/coffee-cup',\n", + " 'https://www.turbosquid.com/3d-model/teacup'],\n", + " ['cup', 'kitchen', 'beverage', 'asset', 'miscellaneous'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cup',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/beverage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/asset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/miscellaneous'],\n", + " 'Free Teacup model created as a project asset. No materials included.'],\n", + " ['3D Pen tablet model',\n", + " 'Teaw',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-09',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'office', 'office supplies', 'pen holder'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/office-category',\n", + " 'https://www.turbosquid.com/3d-model/office-supplies',\n", + " 'https://www.turbosquid.com/3d-model/pen-holder'],\n", + " ['pen', 'tablet'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tablet'],\n", + " 'pen tablet box'],\n", + " ['Lowpoly Stone Blocks 3D model',\n", + " 'ptrusted',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-09',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'landscape architecture',\n", + " 'stepping stone'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/landscape-architecture',\n", + " 'https://www.turbosquid.com/3d-model/stepping-stone'],\n", + " ['Stone', 'Block', 'Free', 'Lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/block',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'Lowpoly stone blocks (Cube, Cylinder, Half cube).'],\n", + " ['Industrial Silo_6 3D',\n", + " 'Max3dModel',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-08',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'industrial', 'industrial container'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container'],\n", + " ['3d',\n", + " 'model',\n", + " 'low',\n", + " 'poly',\n", + " 'game',\n", + " 'ready',\n", + " 'factory',\n", + " 'industrial',\n", + " 'site',\n", + " 'industry',\n", + " 'gas',\n", + " 'oil',\n", + " 'plant',\n", + " 'equipment',\n", + " 'tank',\n", + " 'silo',\n", + " 'storage',\n", + " 'steel',\n", + " 'metal',\n", + " 'refinery'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/factory',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/site',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industry',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gas',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/equipment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tank',\n", + " 'https://www.turbosquid.com/Search/3D-Models/silo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/storage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/refinery'],\n", + " 'ABOUT MODEL:-* This is a medium detail 3d model with Texture.* Ready to drop into any scene or be used as a stand-alone prop.* Real world scale and exact proportions.* Excellent polygon efficiency.* The model has a different topology and realistic textures. The model is perfect for you for a variety of purposes.* Model is suitable for use in games.MATERIAL & TEXTURE:-* All materials in one Multi Sub-Object.* Material and Texture setup is included only in MAX FORMAT (vray 2.0 and scanline version).* UVW Mapping are applied.* All textures are in defuse map.* Textures can be easily repaint.LIGHTING:-* Studio setup is not included.FILE FORMAT:-* 3DS* FBX* OBJ* Blender 2.79* Cinema 4d 11.5* Maya 2010* MAX (Vray 2.0 Version)* MAX (Standard Version)* Native file is 3ds Max 2009(.max)* Other formats were converted from the MAX file.OBJECTS:-* Same material objects are attached for easy selection.* All objects are unique named.WARNING:-Depending on which software package you are using.The exchange formats(obj, 3ds and fbx) may not match the priview images exactly.Due to the nature of these formats, there may be some textures that have to beloaded by hand and possively triangulated geomatry.Thank you for your interest in this model.Please give your feedback on it if you like.'],\n", + " ['3D Bario',\n", + " 'matthewierfino',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-08',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'characters', 'game character'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/game-character'],\n", + " ['Character'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/character'],\n", + " 'Mario knockoff.'],\n", + " ['Sword 3D model',\n", + " 'matthewierfino',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-08',\n", + " '\\n\\n\\nOBJ 1\\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'bladed weapon', 'sword'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/bladed-weapon',\n", + " 'https://www.turbosquid.com/3d-model/sword'],\n", + " ['sword'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sword'],\n", + " \"Sword based on the sword from videogame 'Hellblade: Senua's Sacrifice'. Images with materials are for display purposes only, file does not include materials.\"],\n", + " ['Grenade HP 3D',\n", + " 'nquest',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-08',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'munitions', 'grenade'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/munitions',\n", + " 'https://www.turbosquid.com/3d-model/grenade'],\n", + " ['Fragment',\n", + " 'weapon',\n", + " 'war',\n", + " 'bomb',\n", + " 'hand',\n", + " 'round',\n", + " 'low-poly',\n", + " 'game',\n", + " 'unity',\n", + " 'mobile',\n", + " 'fast',\n", + " 'grenade',\n", + " 'explosive'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fragment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/war',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bomb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/round',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low-poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mobile',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fast',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grenade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/explosive'],\n", + " 'A grenade is an explosive weapon typically thrown by hand, but can also refer to projectiles shot out of grenade launchers. This is a model with lots of polygons and details and is perfectly designed for used in game design, architectural visualization, VFX and other concept that require detail. Also included in are alternative textures that can easily be swapped to give it a different look.'],\n", + " ['Kitchen 3d model',\n", + " 'AG Creations',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-08',\n", + " '',\n", + " ['3D Model', 'interior design', 'interior', 'residential spaces', 'kitchen'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/interior',\n", + " 'https://www.turbosquid.com/3d-model/residential-spaces',\n", + " 'https://www.turbosquid.com/3d-model/kitchen'],\n", + " ['Model', 'Kitchen', '3d'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d'],\n", + " 'kitchen 3d'],\n", + " ['3D model Focke-Wulf Fw 190',\n", + " 'Basemaram',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-04-08',\n", + " '',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'aircraft',\n", + " 'airplane',\n", + " 'military airplane',\n", + " 'fighter plane',\n", + " 'fighter propeller plane'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/aircraft',\n", + " 'https://www.turbosquid.com/3d-model/airplane',\n", + " 'https://www.turbosquid.com/3d-model/military-airplane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-plane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-propeller-plane'],\n", + " ['German',\n", + " 'WWII',\n", + " 'Fighter',\n", + " 'Aircraft',\n", + " 'FW',\n", + " '190',\n", + " 'Focke-Wulf',\n", + " 'Shrike',\n", + " 'wulf',\n", + " 'focke',\n", + " 'engine',\n", + " 'plane',\n", + " 'battle',\n", + " 'ww2',\n", + " 'fw190',\n", + " 'fockewulf',\n", + " 'military',\n", + " 'propeller',\n", + " 'historic',\n", + " 'airplane',\n", + " 'fw-190'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/german',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wwii',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fighter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aircraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fw',\n", + " 'https://www.turbosquid.com/Search/3D-Models/190',\n", + " 'https://www.turbosquid.com/Search/3D-Models/focke-wulf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shrike',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wulf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/focke',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/battle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ww2',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fw190',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fockewulf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/propeller',\n", + " 'https://www.turbosquid.com/Search/3D-Models/historic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/airplane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fw-190'],\n", + " \"About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.- making by 3dmax 6 and Edit by 3dmax 2010\"],\n", + " ['GREEK PILLAR 3D model',\n", + " 'Vigdarov Alexey',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-07',\n", + " '\\n\\n\\nFBX FBX\\n\\n\\n\\n\\nOther TEXTURES\\n\\n',\n", + " ['3D Model', 'architecture', 'building components', 'column', 'pillar'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/column',\n", + " 'https://www.turbosquid.com/3d-model/pillar'],\n", + " ['PILLAR'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pillar'],\n", + " 'GREEK ANCIENT PILLAR ( LOW-MED POLY)'],\n", + " ['Easy chair 01 3D model',\n", + " 'Tjasablabla',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-07',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['chair', 'easychair', 'blue', 'pillow', 'wood'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/easychair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pillow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood'],\n", + " '3D model of an easy chair'],\n", + " ['3D Weapon 1 Sci-Fi',\n", + " 'El Pulga',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-07',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'rifle', 'sci-fi rifle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/rifle',\n", + " 'https://www.turbosquid.com/3d-model/raygun'],\n", + " ['weapon', 'sci', 'fi', 'gun', 'modern', 'future', 'plasma', 'laser'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sci',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/future',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plasma',\n", + " 'https://www.turbosquid.com/Search/3D-Models/laser'],\n", + " 'Weapon Sci-Fi for games.'],\n", + " ['3D Anna Free 3D model Naked Woman',\n", + " 'Lyalina',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-06',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'characters', 'people', 'woman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/woman'],\n", + " ['woman', 'naked', 'scan', 'body'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/woman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/naked',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body'],\n", + " 'Woman fullbody naked model based on scan data.3d scanned people created by Thor.Scene is in cm. Model has real world scale.Format:Anna.zip - includes obj, mtl and png file.'],\n", + " ['3D Desert Rock 007',\n", + " 'Iridesium',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-05',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'mineral', 'rock'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/mineral',\n", + " 'https://www.turbosquid.com/3d-model/rock'],\n", + " ['rocks',\n", + " 'pebble',\n", + " 'brick',\n", + " 'concrete',\n", + " 'nature',\n", + " 'broken',\n", + " 'fractured',\n", + " 'rubble',\n", + " 'gravel',\n", + " 'bolder',\n", + " 'landscape',\n", + " 'scan'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/rocks',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pebble',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brick',\n", + " 'https://www.turbosquid.com/Search/3D-Models/concrete',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/broken',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fractured',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rubble',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gravel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bolder',\n", + " 'https://www.turbosquid.com/Search/3D-Models/landscape',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan'],\n", + " 'This as a photogrammetrically generated model of a large sandstone rock.This 3D scan was generated in the software Photoscan from 23 images. All images were taken with a canon t2i.The texture for this model is 4K resolution (4096x4096)This mesh is the raw scan data and the polygons are primarily tris.If you like the model please rate it! I would really appreciate that!Thanks!'],\n", + " ['3D Medieval low poly house Low-poly',\n", + " 'jonasvanoyenbrugge',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-05',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'residential building',\n", + " 'house',\n", + " 'medieval house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house',\n", + " 'https://www.turbosquid.com/3d-model/medieval-house'],\n", + " ['house',\n", + " 'architecture',\n", + " 'roof',\n", + " 'building',\n", + " 'old',\n", + " 'village',\n", + " 'medieval',\n", + " 'lowpoly',\n", + " 'cartoon',\n", + " 'exterior',\n", + " 'historic',\n", + " 'fantasy',\n", + " 'free',\n", + " 'mansion'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/roof',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/village',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/historic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mansion'],\n", + " 'High-quality model of a medieval house. The object is UVmapped but not textured. The materials are aplied. Created with Blender 2.79.\\xa0\\xa0\\xa0 lowpoly\\xa0\\xa0\\xa0 high-quality\\xa0\\xa0\\xa0 no interior\\xa0\\xa0\\xa0 included file formats are directly exported from Blender.'],\n", + " ['utensils 3D model',\n", + " 'vavalexus',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-04',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'dining room housewares',\n", + " 'tableware',\n", + " 'flatware',\n", + " 'fork'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-housewares',\n", + " 'https://www.turbosquid.com/3d-model/tableware',\n", + " 'https://www.turbosquid.com/3d-model/flatware',\n", + " 'https://www.turbosquid.com/3d-model/fork'],\n", + " ['utensils'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/utensils'],\n", + " '---'],\n", + " ['3D Man with a shotgun model',\n", + " 'puzanovanton89',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-04',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'characters', 'people', 'military people', 'warrior'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/military-people',\n", + " 'https://www.turbosquid.com/3d-model/warrior-person'],\n", + " ['Character',\n", + " 'man',\n", + " 'game',\n", + " '3d',\n", + " 'low',\n", + " 'poly',\n", + " 'shotgun',\n", + " 'ax',\n", + " 'pistol',\n", + " 'grenade',\n", + " 'survival',\n", + " 'adventure',\n", + " 'for',\n", + " 'games',\n", + " 'Unity',\n", + " 'PBR',\n", + " 'Unreal',\n", + " 'Engine',\n", + " '4'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shotgun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ax',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pistol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grenade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/survival',\n", + " 'https://www.turbosquid.com/Search/3D-Models/adventure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/games',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pbr',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unreal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/engine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/4'],\n", + " 'Low poly model of a man with a weapon. Ready for third-party games, RPG, strategies and other programs and applications. Sculpting models zbrush, rigging in maya. Textures Substance Painter . PBR textures(Metallic and other texture) The model consists following parts: body texture - format 4096x4096 head texture - format 2048x2048 texture ammunition - format 2048x2048 texture axe - format 2048x2048 texture shotgun - format 2048x2048 texture gun - format 2048x2048 pomegranate texture - format 2048x2048Textures are scaled through third-party editors with no loss of quality up to 1024 or 2048 pixelsRigging -Controllers from Maya 2017 Built-in controller skinning all the bones. Rigging implemented system Fott roll for feet.In addition to the low-poly model, you also get a high-poly model.faces 28107 verts 32383 tris 54829Programs usedSculpt ZBRUSHRetopology: 3D-COAT texturing: Substance PainterUV map UVLAYOUTRenderMarmoset toolbag'],\n", + " ['3D Monster Woman model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-03',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster'],\n", + " ['Monster', 'woman', 'human'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human'],\n", + " 'Monster woman humanHer name is Ivone.rigedhas idle animation and run Animation.'],\n", + " ['3D Sci-fi military Case',\n", + " 'SkilHardRU',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-03',\n", + " '\\n\\n\\nFBX 16\\n\\n\\n\\n\\nOBJ 16\\n\\n',\n", + " ['3D Model', 'weaponry', 'munitions', 'military case', 'weapon case'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/munitions',\n", + " 'https://www.turbosquid.com/3d-model/military-case',\n", + " 'https://www.turbosquid.com/3d-model/weapon-case'],\n", + " ['props',\n", + " 'case',\n", + " 'box',\n", + " 'crate',\n", + " 'sci',\n", + " 'fi',\n", + " 'pelican',\n", + " 'halway',\n", + " 'indystrial',\n", + " 'military',\n", + " 'corridor',\n", + " 'panel',\n", + " 'free',\n", + " 'industrial',\n", + " 'tool'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/case',\n", + " 'https://www.turbosquid.com/Search/3D-Models/box',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sci',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pelican',\n", + " 'https://www.turbosquid.com/Search/3D-Models/halway',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indystrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/military',\n", + " 'https://www.turbosquid.com/Search/3D-Models/corridor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/panel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool'],\n", + " 'Sci-fi military CaseHello dear friends! I hasten to share with you an excellent case, which may well be useful for your ideas or plans in 3D, so download and make the dream come true)) You can use anywhere except on 3D drains, your right !! Well, do not forget to press Lucas to raise morale)! Thank.+Bonus Gun'],\n", + " ['3D [FREE] Stylized Industrial Props Set',\n", + " 'Game Ready Studios',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-02',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'industrial',\n", + " 'industrial equipment',\n", + " 'robotics',\n", + " 'industrial robot',\n", + " 'robotic arm'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-equipment',\n", + " 'https://www.turbosquid.com/3d-model/robotics',\n", + " 'https://www.turbosquid.com/3d-model/industrial-robot',\n", + " 'https://www.turbosquid.com/3d-model/robotic-arm'],\n", + " ['Free',\n", + " 'Stylized',\n", + " 'Industrial',\n", + " 'Props',\n", + " 'factory',\n", + " 'machine',\n", + " 'Pipes',\n", + " 'Oil',\n", + " 'tank'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stylized',\n", + " 'https://www.turbosquid.com/Search/3D-Models/industrial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/props',\n", + " 'https://www.turbosquid.com/Search/3D-Models/factory',\n", + " 'https://www.turbosquid.com/Search/3D-Models/machine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pipes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tank'],\n", + " 'Stylized Industrial Props Set with hi-res materialsPackage contain: 2 factory machines, Pipes set and 2 Oil tanks.Number of Textures: 22Texture Sizes:1024x10242048x2048Number of Meshes: 21'],\n", + " ['Tool Box 3D model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '',\n", + " ['3D Model', 'industrial', 'tools', 'toolbox'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/toolbox'],\n", + " ['Tool', 'hamer', 'saw', 'nail', 'screwdriver'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/tool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hamer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/saw',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nail',\n", + " 'https://www.turbosquid.com/Search/3D-Models/screwdriver'],\n", + " 'Tool hamer saw nail screwdriver'],\n", + " ['Skinny Creature 3D model',\n", + " 'niyoo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster'],\n", + " ['free',\n", + " 'sculpting',\n", + " 'zbrush',\n", + " 'characters',\n", + " 'monters',\n", + " 'creatures',\n", + " 'ztl',\n", + " 'obj',\n", + " 'body',\n", + " 'anatomy',\n", + " 'stylized'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zbrush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/characters',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monters',\n", + " 'https://www.turbosquid.com/Search/3D-Models/creatures',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ztl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stylized'],\n", + " 'Free creature model.ztl and obj files included.polygons,169,299_zbrush67,719_decimated obj'],\n", + " ['CORAL 3D',\n", + " 'edikm1',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'nature', 'landscapes', 'coral reef', 'brain coral'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/landscapes-and-seascapes',\n", + " 'https://www.turbosquid.com/3d-model/coral-reef',\n", + " 'https://www.turbosquid.com/3d-model/brain-coral'],\n", + " ['Coral',\n", + " 'underwater',\n", + " 'diving',\n", + " 'ocean',\n", + " 'sea',\n", + " 'reef',\n", + " 'mollusc',\n", + " 'tropical',\n", + " 'Aquarium',\n", + " 'Decoration',\n", + " 'Fish',\n", + " 'tank',\n", + " 'decor',\n", + " 'fossil'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coral',\n", + " 'https://www.turbosquid.com/Search/3D-Models/underwater',\n", + " 'https://www.turbosquid.com/Search/3D-Models/diving',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ocean',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reef',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mollusc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tropical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aquarium',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tank',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fossil'],\n", + " 'DESCRIPTIONvertices - 18841 , faces - 37678,1.1_AO.BMP ------8192*8192*322.1_BaseColor.BMP ------8192*8192*323.1_O_(+Y)__Normal.BMP ------8192*8192*324.1_O_(-Y)__Normal.BMP ------8192*8192*325.1_T_(+Y)__Normal.BMP ------8192*8192*326.1_T_(-Y)__Normal.BMP ------8192*8192*327.1_AO2.BMP ------8192*8192*32'],\n", + " ['sofa 3D model',\n", + " 'Rafael Novella',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '\\n\\n\\nFBX 2018\\n\\n\\n\\n\\nCollada 2018\\n\\n\\n\\n\\n3D Studio 2018\\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['sofa',\n", + " 'leader',\n", + " 'sofa',\n", + " 'old',\n", + " 'sofa',\n", + " 'retro',\n", + " 'white',\n", + " 'leader',\n", + " 'single',\n", + " 'sofa',\n", + " 'picture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leader',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leader',\n", + " 'https://www.turbosquid.com/Search/3D-Models/single',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sofa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/picture'],\n", + " 'White leader old classic sofa'],\n", + " ['3D Empty flower bed',\n", + " 'SuicideSquid',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'planter'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/planter'],\n", + " ['3d', 'scan', 'flowerbed', 'concrete', 'cylinder', 'pot', 'soil'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flowerbed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/concrete',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cylinder',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soil'],\n", + " '3D-scanned concrete flower bed model.3ds max 2015 VRay, Corona and Scanline scenes;OBJ;FBX;Textures (4K Diffuse and Bump maps in JPG format).Diameter or the model is about 1 meter.System units: millimeters.Enjoy!'],\n", + " ['Heinekin Beer 3D model',\n", + " 'gatineau',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-04-01',\n", + " '\\n\\n\\nFBX 1.2\\n\\n',\n", + " ['3D Model',\n", + " 'food and drink',\n", + " 'beverages',\n", + " 'alcoholic drinks',\n", + " 'beer',\n", + " 'beer bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/beverages',\n", + " 'https://www.turbosquid.com/3d-model/alcoholic-drinks',\n", + " 'https://www.turbosquid.com/3d-model/beer',\n", + " 'https://www.turbosquid.com/3d-model/beer-bottle'],\n", + " ['Beer', 'bottle'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/beer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bottle'],\n", + " 'this is not a copy, I did it by hand with blender, is substance painterFree download , ready for your game Format :1 - FBX2 - Blender Thank you'],\n", + " ['Vintage Thermometer 3D',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nSTL 2013\\n\\n\\n\\n\\nOther PDF 1\\n\\n\\n\\n\\nOther PDF 2\\n\\n',\n", + " ['3D Model', 'science', 'weather instruments', 'atmospheric thermometer'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/weather-instruments',\n", + " 'https://www.turbosquid.com/3d-model/atmospheric-thermometer'],\n", + " ['Thermometer', 'Steampunk'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/thermometer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steampunk'],\n", + " 'Vintage ThermometerThis design is not animated. 29966 quadrilateral polygons12096 triangular polygons72028 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ'],\n", + " ['3D Boat Game Ready',\n", + " 'Valkeru32bits',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'vessel', 'rowboat', 'canoe'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vessel',\n", + " 'https://www.turbosquid.com/3d-model/rowboat',\n", + " 'https://www.turbosquid.com/3d-model/canoe'],\n", + " ['Canoe',\n", + " 'rowing',\n", + " 'kayak',\n", + " 'wooden',\n", + " 'recreational',\n", + " 'outdoor',\n", + " 'paddling',\n", + " 'watercraft',\n", + " 'transportation',\n", + " 'transport',\n", + " 'canoeing',\n", + " 'adventure',\n", + " 'leisure',\n", + " 'sport',\n", + " 'river',\n", + " 'lake',\n", + " 'sea',\n", + " 'ocean'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/canoe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rowing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kayak',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wooden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/recreational',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/paddling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/watercraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transportation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/transport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/canoeing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/adventure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leisure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/river',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lake',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ocean'],\n", + " 'File formats: BLEND , OBJGame ready - low poly model- The model has 1 objects (Draw Call)- The model contains\\xa0\\xa0\\xa0 427 quads\\xa0\\xa0\\xa0 430 verts- All parts placed in one layer- All parts are fully UV unwraped.Textures (*.PNG):=========================Main 1024x1024:- Diffuse - Normal- SpecularOriginally created with Blender. No 3rd party plugins required.Software used:- Blender'],\n", + " ['3D model Photorealistic Ring',\n", + " 'dturlu',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '',\n", + " ['3D Model', 'fashion and beauty', 'apparel', 'jewelry', 'ring'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/fashion-and-beauty',\n", + " 'https://www.turbosquid.com/3d-model/apparel',\n", + " 'https://www.turbosquid.com/3d-model/jewelry',\n", + " 'https://www.turbosquid.com/3d-model/ring'],\n", + " ['ring'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ring'],\n", + " 'This Blender video demonstrates how to make a silver and turquoise ring. The texture for the turquoise stone uses a procedural texture and therefore requires no external image.'],\n", + " ['3D Soccer ball',\n", + " 'dturlu',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-04-01',\n", + " '',\n", + " ['3D Model', 'sports', 'team sports', 'soccer', 'soccer ball'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/sports',\n", + " 'https://www.turbosquid.com/3d-model/team-sports',\n", + " 'https://www.turbosquid.com/3d-model/soccer',\n", + " 'https://www.turbosquid.com/3d-model/soccer-ball'],\n", + " ['soccer', 'ball'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/soccer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ball'],\n", + " 'soccer ball'],\n", + " ['3D model Sea House',\n", + " 'Andres Sanchez G',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-31',\n", + " '\\n\\n\\nOther 2.78\\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'residential building',\n", + " 'house',\n", + " 'fantasy house',\n", + " 'cartoon house'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/house',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-house',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-house'],\n", + " ['seahouse', 'sea', 'house', 'fisherman'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/seahouse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sea',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fisherman'],\n", + " 'SEA HOUSE===================package includes:wood planklife saviorfishing rodstool===================wood texturenormal map column'],\n", + " ['Bull 3D model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-31',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'farm animals',\n", + " 'cow',\n", + " 'bull'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/farm-animals',\n", + " 'https://www.turbosquid.com/3d-model/cow',\n", + " 'https://www.turbosquid.com/3d-model/bull'],\n", + " ['bull', 'farm', 'bovine'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bull',\n", + " 'https://www.turbosquid.com/Search/3D-Models/farm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bovine'],\n", + " 'bull simple'],\n", + " ['Dice 3D model',\n", + " 'Pi3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-31',\n", + " '',\n", + " ['3D Model', 'toys and games', 'games', 'dice'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/dice'],\n", + " ['dice', 'casin', 'cube', 'casino', 'play', 'game', 'luck'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/casin',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cube',\n", + " 'https://www.turbosquid.com/Search/3D-Models/casino',\n", + " 'https://www.turbosquid.com/Search/3D-Models/play',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/luck'],\n", + " 'a couple of dice'],\n", + " ['Thompson 3D model',\n", + " 'g4RYZOiD',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-03-30',\n", + " '',\n", + " ['3D Model',\n", + " 'weaponry',\n", + " 'weapons',\n", + " 'firearms',\n", + " 'machine gun',\n", + " 'submachine gun',\n", + " 'tommy gun'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/machine-gun',\n", + " 'https://www.turbosquid.com/3d-model/submachine-gun',\n", + " 'https://www.turbosquid.com/3d-model/tommy-gun'],\n", + " ['Gun', 'Submachinegun', 'Firearm', 'WWI'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/gun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/submachinegun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/firearm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wwi'],\n", + " 'A Thompson Submachine gun in a zipped folder. Includes an FBX, Diffuse map and Unity import package.Poly count is rather high, no fire control group, no surface imperfections or normal map.'],\n", + " ['Old Rock column 3D model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-30',\n", + " '',\n", + " ['3D Model', 'architecture', 'building components', 'column'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/column'],\n", + " ['column', 'old', 'ruins', 'ancient'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/column',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ruins',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ancient'],\n", + " ''],\n", + " ['3D Tall Building',\n", + " 'Jhoyski',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-30',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'skyscraper'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/skyscraper'],\n", + " ['9Stories', 'City', 'Tall', 'Antenna', 'Building', 'NoTexture'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/9stories',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antenna',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/notexture'],\n", + " 'This is a 9 story building. It has one main ground floor and then 8 other glass floors. It has an antenna on top. There are also 6 floors of balconies. It can be used for anything but would work well in a city. Made using Blender 2.80.'],\n", + " ['THIEF Typography 3D',\n", + " 'CREAM_Wes',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-29',\n", + " '',\n", + " ['3D Model', 'architecture', 'urban design', 'street elements', 'sign'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/urban-design',\n", + " 'https://www.turbosquid.com/3d-model/street-elements',\n", + " 'https://www.turbosquid.com/3d-model/sign'],\n", + " ['#thief', '#typography'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/%23thief',\n", + " 'https://www.turbosquid.com/Search/3D-Models/%23typography'],\n", + " 'THIEF typography for all you content creators out there, might be good to have a look how you bevel edges in hardsurface modeling also.'],\n", + " ['Table desk 3D model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-29',\n", + " '',\n", + " ['3D Model', 'furnishings', 'table', 'dining table', 'dining room set'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/dining-table',\n", + " 'https://www.turbosquid.com/3d-model/dining-room-set'],\n", + " ['Table', 'desk', 'furniture', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair'],\n", + " 'Table desk furniture chair'],\n", + " ['Apartment Building 3D',\n", + " 'Jhoyski',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'residential building',\n", + " 'apartment building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building',\n", + " 'https://www.turbosquid.com/3d-model/apartment-building'],\n", + " ['Building', 'Apartment', '5', 'Stories', 'No', 'Texture', 'Free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/apartment',\n", + " 'https://www.turbosquid.com/Search/3D-Models/5',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stories',\n", + " 'https://www.turbosquid.com/Search/3D-Models/no',\n", + " 'https://www.turbosquid.com/Search/3D-Models/texture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " 'This model is of a 5 story apartment building. It can be used in anyway that you want but it would work well in a city. Made using Blender 2.80.'],\n", + " ['White And Black Cat model',\n", + " 'Essam isbiga',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-29',\n", + " '\\n\\n\\nFBX 6.0\\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'cat',\n", + " 'housecat'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/cat',\n", + " 'https://www.turbosquid.com/3d-model/housecat'],\n", + " ['Animals', 'cat', 'free', 'animation', 'mammal', 'animated'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/animals',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mammal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animated'],\n", + " 'Whith and black Cat:Anumation (6):WalkRunIdleJumpWalk slowDeadTexture:Body (None) 3000x3000Body (Normal) 3000x3000Body (AO) 3000x3000'],\n", + " ['Pineapple 3D model',\n", + " 'FATonGraycat',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-29',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'food and drink', 'food', 'fruit', 'pineapple'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/food-and-drink',\n", + " 'https://www.turbosquid.com/3d-model/food',\n", + " 'https://www.turbosquid.com/3d-model/fruit',\n", + " 'https://www.turbosquid.com/3d-model/pineapple'],\n", + " ['pineapple',\n", + " 'fruit',\n", + " 'tropical',\n", + " 'africa',\n", + " 'food',\n", + " 'culture',\n", + " 'fresh',\n", + " 'tropic',\n", + " 'exotic',\n", + " 'vitamin',\n", + " 'palm'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pineapple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fruit',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tropical',\n", + " 'https://www.turbosquid.com/Search/3D-Models/africa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food',\n", + " 'https://www.turbosquid.com/Search/3D-Models/culture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fresh',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tropic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exotic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vitamin',\n", + " 'https://www.turbosquid.com/Search/3D-Models/palm'],\n", + " 'Pineapple (plain)Dimensions: length 23.29 mm, 33.19 mm, height 25.75 mm.Vertices - 26090, polygons - 25984.'],\n", + " ['3D Shop ( Store ) model',\n", + " 'Basemaram',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-29',\n", + " '',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'building',\n", + " 'commercial building',\n", + " 'retail store'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/commercial-building',\n", + " 'https://www.turbosquid.com/3d-model/retail-store'],\n", + " ['Shop', 'Store', 'commercial', 'sell', 'sales', 'display'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/shop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/store',\n", + " 'https://www.turbosquid.com/Search/3D-Models/commercial',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sell',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sales',\n", + " 'https://www.turbosquid.com/Search/3D-Models/display'],\n", + " \"About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.\"],\n", + " ['3D model Bar',\n", + " '3d expart',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-28',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'architecture', 'building', 'commercial building', 'bar'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/commercial-building',\n", + " 'https://www.turbosquid.com/3d-model/saloon'],\n", + " ['interior',\n", + " 'shop',\n", + " 'architecture',\n", + " 'design',\n", + " 'bar.',\n", + " 'restaurant',\n", + " 'juice',\n", + " 'bar',\n", + " 'ice',\n", + " 'cream',\n", + " 'decoration'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar.',\n", + " 'https://www.turbosquid.com/Search/3D-Models/restaurant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/juice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cream',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration'],\n", + " 'This is a juice & ice cream bar.1. good topology2. Uv mapping3. Uv unwrapped4. 4k texture5.clean modelIf you want more exchange file please contact meIf you have any question please message me.Thank You!'],\n", + " ['Bojack horseman 3D model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-28',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'farm animals',\n", + " 'horse',\n", + " 'cartoon horse'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/farm-animals',\n", + " 'https://www.turbosquid.com/3d-model/horse',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-horse'],\n", + " ['Bojack',\n", + " 'horseman',\n", + " 'horse',\n", + " 'werehorse',\n", + " 'Netflix',\n", + " 'cartoon',\n", + " 'charater'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bojack',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horseman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/werehorse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/netflix',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/charater'],\n", + " \"Back in the 90sI was in a very famous TV showI'm BoJack the horse (BoJack)BoJack the horseDon't act like you don't knowAnd I'm trying to hold on to my pastIt's been so longI don't think I'm gonna lastI guess I'll just tryAnd make you understandThat I'm more horse than a manOr I'm more man than a horseBoJack\"],\n", + " ['Samara The Ring Bas-relief for CNC router 3D model',\n", + " 'voronzov',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-28',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'relief'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/relief'],\n", + " ['stl',\n", + " 'model',\n", + " 'bas-relief',\n", + " 'samara',\n", + " '3d',\n", + " 'cnc',\n", + " 'router',\n", + " 'the',\n", + " 'ring'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bas-relief',\n", + " 'https://www.turbosquid.com/Search/3D-Models/samara',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cnc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/router',\n", + " 'https://www.turbosquid.com/Search/3D-Models/the',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ring'],\n", + " \"Samara 'The Ring' 3d model bas relief for CNC machining, 3D printing, carving, molding etc. 3Dprinted bas-relief looks pretty good if it is painted with bronze, gold or silver paint. You can order a personal portrait in the form of a bas-relief, which can be 3D printed or cut out by CNC router. Just contact me and send a photo, we will discuss all the details.I am happy to answer any questions you might have about the model.Check out my profile to see the other stuff!PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free. You can arbitrarily dispose of material products manufactured using this model.\"],\n", + " ['Spartan STL model for cnc router - 3d bas-relief Tzar Leonid 3D model',\n", + " 'voronzov',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-03-28',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nVRML \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'relief'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/relief'],\n", + " ['spartan',\n", + " 'stl',\n", + " 'file',\n", + " '3d',\n", + " 'model',\n", + " 'bas-relief',\n", + " 'cnc',\n", + " 'router',\n", + " 'Leonid'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/spartan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/file',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bas-relief',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cnc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/router',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leonid'],\n", + " \"Spartan Tzar Leonid 3d model bas relief for CNC router, 3D printing, carving, molding etc.PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free.You can arbitrarily dispose of material products manufactured using this model.If you have a question please convo me and I'll be happy to help.\"],\n", + " ['3D Joker 3D model bas-relief for cnc router',\n", + " 'voronzov',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-03-28',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nVRML \\n\\n',\n", + " ['3D Model', 'art', 'sculpture', 'relief'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/art',\n", + " 'https://www.turbosquid.com/3d-model/sculpture',\n", + " 'https://www.turbosquid.com/3d-model/relief'],\n", + " ['joker',\n", + " 'file',\n", + " 'stl',\n", + " 'model',\n", + " 'for',\n", + " 'cnc',\n", + " 'router',\n", + " '3d',\n", + " 'bas',\n", + " 'relief'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/joker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/file',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cnc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/router',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bas',\n", + " 'https://www.turbosquid.com/Search/3D-Models/relief'],\n", + " 'Joker 3d model bas relief for CNC machining, 3D printing, carving, molding etc. 3Dprinted bas-relief looks pretty good if it is painted with bronze, gold or silver paint. You can order a personal portrait in the form of a bas-relief, which can be 3D printed or cut out by CNC router. Just contact me and send a photo, we will discuss all the details.I am happy to answer any questions you might have about the model.Check out my profile to see the other stuff!PLEASE NOTEYou cannot sell, rent or lease this model to a third party in a digital form.You cannot include model in another design or in any format, or give them away for free. You can arbitrarily dispose of material products manufactured using this model.'],\n", + " ['3D Classic Building ( Bankhaus )',\n", + " 'Basemaram',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-28',\n", + " '',\n", + " ['3D Model', 'architecture', 'building', 'residential building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building',\n", + " 'https://www.turbosquid.com/3d-model/residential-building'],\n", + " ['city',\n", + " 'town',\n", + " 'building',\n", + " 'house',\n", + " 'palace',\n", + " 'old',\n", + " 'street',\n", + " 'Gothic',\n", + " 'townhouse',\n", + " 'urban',\n", + " 'medieval',\n", + " 'classic',\n", + " 'Europe',\n", + " 'European',\n", + " 'shop',\n", + " 'architecture',\n", + " 'hotel',\n", + " 'Bankhaus',\n", + " 'neoclassic'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/town',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/palace',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/street',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gothic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/townhouse',\n", + " 'https://www.turbosquid.com/Search/3D-Models/urban',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/europe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/european',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hotel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bankhaus',\n", + " 'https://www.turbosquid.com/Search/3D-Models/neoclassic'],\n", + " \"Built in 1754 the Bankhaus building is a classic example of architecture from this time. The building is located in Germany on the Kaizerplatz in Wuppertal-Vohwinkel and was originally occupied by the von der Heydt-Kersten & Shne bank.About the model:- High quality polygonal model, correctly scaled for an accurate representation of the original object.- This model was constructed with utmost care and attention to detail, with clean edge flow. (please check wireframe images).- Model is exported to Both smooth version and unsmooth version of non native formats.- Model is built to real-world scale.- System unit setup used- centimeter.- No Photoshop or compositing used, Product is ready to render. Just download and hit render.- Objects are organized by layers / groups.- Non-overlapping clean UV- free of Textures- Its ready to multiply subdivision reasonably.- Colors can be easily modified.- Different parts of the model are named properly. 3ds Max models are grouped for easy selection.- No part-name confusion when importing several models into a scene.- No cleaning up necessary just drop your models into the scene and start rendering.- No additional plugin is needed to open the model.- The model's mesh is high quality, with clean edge flow.- Geometry is carefully tested for holes, flipped normals and overlapping polygons.- The mesh is low-poly, allows you to easily build up the additional details, edit geometry.- making by 3dmax 6 and Editing by 2010\"],\n", + " ['Steampunk Clock 3D model',\n", + " 'Mfarhani',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-27',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'clock',\n", + " 'wall clock'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/clock',\n", + " 'https://www.turbosquid.com/3d-model/wall-clock'],\n", + " ['Clock', 'Steampunk', 'Decoration', 'Retro'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/clock',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steampunk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decoration',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro'],\n", + " 'A low-poly clock with steampunk themeNo tris or n-gone, Quad polygons onlyNo overlapping uv map2048 x 2048 textureFaces\\xa0\\xa0\\xa0 : 5560Vertices : 5614'],\n", + " ['Old Classic Car 3D model',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-27',\n", + " '',\n", + " ['3D Model', 'vehicles', 'car'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car'],\n", + " ['Old', 'Classic', 'Car'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car'],\n", + " 'Old Classic Car'],\n", + " [\"S'well Sports Bottle 3D\",\n", + " 'bomi1337',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-27',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'sports', 'exercise equipment', 'sports bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/sports',\n", + " 'https://www.turbosquid.com/3d-model/exercise-equipment',\n", + " 'https://www.turbosquid.com/3d-model/sports-bottle'],\n", + " ['bottle', 'metal', \"s'well\", 'water', 'realistic', '3d', 'drink', 'food'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bottle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/s%27well',\n", + " 'https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/food'],\n", + " \"Drinking metal bottle.Objects: - Bottle - CapCap is unscrewable.Reference: S'well, JadePlease, rate the model. It will help a lot!\"],\n", + " ['Wooden Buckets and a Pitcher 3D model',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-27',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nSTL 2013\\n\\n',\n", + " ['3D Model', 'industrial', 'industrial container', 'bucket'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/bucket'],\n", + " ['Bucket', 'Pitcher'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bucket',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pitcher'],\n", + " 'Set of wooden buckets and a pitcherThis design is not animated. 20529 quadrilateral polygons44319 triangular polygons85377 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ'],\n", + " ['3D Wardrobe',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-26',\n", + " '',\n", + " ['3D Model', 'furnishings', 'armoire'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/armoire'],\n", + " ['wardrobe', 'clothes', '3d', 'blender'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wardrobe',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clothes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender'],\n", + " 'wardrobewith clothes'],\n", + " ['test 3D model',\n", + " 'cbriere25',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-02-26',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " [],\n", + " [],\n", + " ['Qa', 'Test', 'Assets'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/qa',\n", + " 'https://www.turbosquid.com/Search/3D-Models/test',\n", + " 'https://www.turbosquid.com/Search/3D-Models/assets'],\n", + " 'Qa Test Assets'],\n", + " ['Cyclorama Infinity Wall 3D model',\n", + " 'SPACESCAN',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther PLY\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'interior',\n", + " 'commercial spaces',\n", + " 'studio',\n", + " 'photo studio'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/interior',\n", + " 'https://www.turbosquid.com/3d-model/commercial-spaces',\n", + " 'https://www.turbosquid.com/3d-model/studio',\n", + " 'https://www.turbosquid.com/3d-model/photo-studio'],\n", + " ['infinity',\n", + " 'photography',\n", + " 'studio',\n", + " 'curved',\n", + " 'camera',\n", + " 'wall',\n", + " 'background',\n", + " 'film',\n", + " 'stage',\n", + " 'green',\n", + " 'screen'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/infinity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/photography',\n", + " 'https://www.turbosquid.com/Search/3D-Models/studio',\n", + " 'https://www.turbosquid.com/Search/3D-Models/curved',\n", + " 'https://www.turbosquid.com/Search/3D-Models/camera',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/background',\n", + " 'https://www.turbosquid.com/Search/3D-Models/film',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/green',\n", + " 'https://www.turbosquid.com/Search/3D-Models/screen'],\n", + " \"Cyclorama Photography Infinity WallThis is the background that I use for all my 3D rendered studio shots. A smooth quad mesh UV unwrapped for good studio type baking in Blender and other ray tracing programs.A cyclorama is a large curtain or wall, often concave, positioned at the back of the apse. ... Cycloramas or 'cycs' also refer to photography curving backdrops which are white to create no background, or green screen to create a masking backdrop. Cycloramas are often used to create the illusion of a sky onstage.\"],\n", + " ['3D model Garbage',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '',\n", + " ['3D Model', 'industrial', 'industrial container', 'garbage container'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/industrial-container',\n", + " 'https://www.turbosquid.com/3d-model/garbage-container'],\n", + " ['garbage', 'trash'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/garbage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trash'],\n", + " 'garbage 3d'],\n", + " ['End Table Square Metal/Glass 010 3D model',\n", + " 'Orchidea Studios',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '\\n\\n\\nFBX 2012\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'end table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/end-table'],\n", + " ['end', 'table', 'square', 'contemporary', 'metal', 'glass'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/end',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/square',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass'],\n", + " '============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 55.5cm x 55.5cm x 55.8cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios'],\n", + " ['End Table Square Metal/Glass 006 3D',\n", + " 'Orchidea Studios',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '\\n\\n\\nFBX 2012\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'end table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/end-table'],\n", + " ['end', 'table', 'square', 'contemporary', 'metal', 'glass'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/end',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/square',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass'],\n", + " '============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 45.0cm x 45.0cm x 49.8cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios'],\n", + " ['3D End Table Square Metal/Glass 004',\n", + " 'Orchidea Studios',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '\\n\\n\\nFBX 2012\\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'end table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/end-table'],\n", + " ['end', 'table', 'square', 'contemporary', 'metal', 'glass'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/end',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/square',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass'],\n", + " '============================================================================Product Description :- Square coffee/end table- Contemporary style- Metal structure- Glass top- Dimensions : 40.0cm x 40.3cm x 52.1cm============================================================================Features :- High quality polygonal model, perfect for close-up renders- V-Ray materials- Model centered, geometry and materials correctly named, no layer used- No Plugin/Script needed (except V-Ray)- No Cameras/Lights Studio setup included- System Unit Setup : 1 unit = 1 cm, model accurately scaled to match real-life dimensions============================================================================File Formats :- 3ds Max (2015 with V-Ray 3.60.03) - Single object with V-Ray materials - No lights/cameras setup included- FBX - Single object with Standard materials- OBJ - Single object with Standard materials============================================================================Additional Notes :Before making a purchase, you are welcome to download some of our FREE Models to appreciate the quality of our products.If you have any questions, please contact us through support.Click on our Artist name (Orchidea Studios) to check out our catalogue.Thanks for your interest !Orchidea Studios'],\n", + " ['Free Wheel 3D Models 3D model',\n", + " '3D Horse',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'vehicle parts',\n", + " 'wheel',\n", + " 'truck wheel',\n", + " 'truck tire'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/vehicle-parts',\n", + " 'https://www.turbosquid.com/3d-model/wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-wheel',\n", + " 'https://www.turbosquid.com/3d-model/truck-tire'],\n", + " ['free',\n", + " 'wheels',\n", + " 'classic',\n", + " 'tire',\n", + " 'tyre',\n", + " 'tread',\n", + " 'rim',\n", + " 'disk',\n", + " 'disc',\n", + " 'wheel',\n", + " 'rubber',\n", + " 'car',\n", + " 'truck',\n", + " 'van',\n", + " 'part',\n", + " 'protector',\n", + " 'off-road',\n", + " 'ride',\n", + " 'vehicle',\n", + " 'plane',\n", + " 'aircraft',\n", + " 'chassis',\n", + " 'sava'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheels',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tyre',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tread',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rim',\n", + " 'https://www.turbosquid.com/Search/3D-Models/disk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/disc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wheel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rubber',\n", + " 'https://www.turbosquid.com/Search/3D-Models/car',\n", + " 'https://www.turbosquid.com/Search/3D-Models/truck',\n", + " 'https://www.turbosquid.com/Search/3D-Models/van',\n", + " 'https://www.turbosquid.com/Search/3D-Models/part',\n", + " 'https://www.turbosquid.com/Search/3D-Models/protector',\n", + " 'https://www.turbosquid.com/Search/3D-Models/off-road',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ride',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vehicle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/aircraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chassis',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sava'],\n", + " 'FREE 3D MODELSHigh quality and free 3d model of wheel.2 versions for 3ds Max included : V-Ray and default materials.Colors can be easily modified.Previews rendered with 3ds max and V-Ray.Thank you for downloading and rating our free 3d models.3D Horse'],\n", + " ['3D LowPoly Subway',\n", + " 'MeisterKaio',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-25',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'vehicles', 'trains', 'subway car'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/trains',\n", + " 'https://www.turbosquid.com/3d-model/subway-car'],\n", + " ['LowPoly', 'Subway', 'and', 'Train'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/subway',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/train'],\n", + " 'lowpoly Subway for you all!'],\n", + " ['Dragon 3D',\n", + " 'RealUnreal',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-24',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster',\n", + " 'dragon'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster',\n", + " 'https://www.turbosquid.com/3d-model/dragon-creature'],\n", + " ['Dragon', 'Cartoon'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dragon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon'],\n", + " 'Cartoon dragon Modeling Base'],\n", + " ['3D Firepit model',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-24',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nIGES 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nOther STEP\\n\\n\\n\\n\\nSTL 2013\\n\\n\\n\\n\\nOther PDF1\\n\\n\\n\\n\\nOther PDF2\\n\\n',\n", + " ['3D Model', 'architecture', 'site components', 'fireplace'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/fireplace'],\n", + " ['Fire', 'Firepit'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/fire',\n", + " 'https://www.turbosquid.com/Search/3D-Models/firepit'],\n", + " 'Wrought Iron FirepitThis design is not animated. 24940 quadrilateral polygons20509 triangular polygons70389 total triangular polygons after forced triangulationPDF included with wireframes.Materials and/or bumpmaps included in 3DS and OBJ zip filesAvaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL, .STEP; .IGES'],\n", + " ['3D model Vase 3D',\n", + " 'Brian31',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-23',\n", + " '',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'vase'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/vase'],\n", + " ['Vase', 'pot', 'low', 'poly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/vase',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly'],\n", + " 'Low poly vase'],\n", + " ['Ram skul model',\n", + " 'EinSteph',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-23',\n", + " '',\n", + " [],\n", + " [],\n", + " ['ram', 'skull', 'deco', 'bone', 'desert', 'death'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/ram',\n", + " 'https://www.turbosquid.com/Search/3D-Models/skull',\n", + " 'https://www.turbosquid.com/Search/3D-Models/deco',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desert',\n", + " 'https://www.turbosquid.com/Search/3D-Models/death'],\n", + " 'It is a skull of a ram without textures.You can use it for everything you want but the back and the inner of the skull isnt really detailed.'],\n", + " ['Pergola 3D',\n", + " 'ibulb',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-23',\n", + " '\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'outdoor structure',\n", + " 'gazebo',\n", + " 'pergola'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/outdoor-structure',\n", + " 'https://www.turbosquid.com/3d-model/gazebo',\n", + " 'https://www.turbosquid.com/3d-model/pergola'],\n", + " ['Engineering'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/engineering'],\n", + " 'Pergola High Resulotion'],\n", + " ['Wall Carving 1 3D',\n", + " 'SPACESCAN',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-23',\n", + " '\\n\\n\\nCollada \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther PLY\\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'architecture', 'building components', 'wall', 'stone wall'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building-components',\n", + " 'https://www.turbosquid.com/3d-model/wall',\n", + " 'https://www.turbosquid.com/3d-model/stone-wall'],\n", + " ['stone',\n", + " 'sculpture',\n", + " 'wall',\n", + " 'freeze',\n", + " 'statue',\n", + " 'ancient',\n", + " 'carving',\n", + " 'crypt',\n", + " 'dungeon',\n", + " 'temple',\n", + " 'church',\n", + " 'indianna',\n", + " 'jones',\n", + " 'tomb',\n", + " 'raider',\n", + " 'game',\n", + " 'development'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/freeze',\n", + " 'https://www.turbosquid.com/Search/3D-Models/statue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ancient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carving',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crypt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dungeon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/temple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/church',\n", + " 'https://www.turbosquid.com/Search/3D-Models/indianna',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jones',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tomb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/raider',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/development'],\n", + " \"Wall Carving 1An intricate unique stone wall carving from Thailand. Since the texture process came out substandard this one is for free. Please see 'Wall Carving 2' for better results.Photoscan InformationPhotoscanning offers the ability to capture the world around us and bring it into the 3D. Each model comes in a variety of different resolutions for easy management and use throughout many programs. Due to the nature of photoscanning, the models are not perfect, but our intention is to provide a large range of items in high detail captured from the real world for use in your creations whether it be architectural visualisation, game development or more.Please note that there are generally five resolutions (decimation ratios) for each model, where 'Blender' [.blend] and WaveFront [.obj] are the native formats. Other file types available include -- BLENDER 2.78- OBJ- DAE- FBX- 3DS MAX [2017 + 2014]- STL- PLY- SKETCHUP V8All ZIP files contain:Highest - 1,000,000 facesHigh - 500,000 facesMedium - 100,000 facesLow - 50,000 facesLowest - 10,000 facesNOTESFor 3DSMAX, the models contained within the files (2014 & 2017) need their textures re-linked to the texture images contained within the MAX.ZIP/OBJ folder. Also please note that the title of the item online may differ from the file names when downloading.Blender Cycles [v2.78] file only contains the 1000K resolution mesh, please download the Blender [v2.71] version for all mesh LODs.The rendered imagery for this model has been captured from the 'Highest' model within Blender Cycles. Depending on the model complexity the above resolutions may differ, i.e. there may be need for a +1000K item which will be stated in this description when required.The goal of providing these models and assets for you is use within your own game development, level design, film animatics, storyboarding, architectural design, historic study, educational use and much more. Spacescan aims to create and provide a vast library of assets that cannot be easily made digitally or 'within the box' so to speak.Best Regards,Jamie.\"],\n", + " ['3D Action and Faction bones for Dune Dice Game - board game - Free 3D model',\n", + " 'finn163',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-22',\n", + " '\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'toys and games', 'games', 'dice'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/games',\n", + " 'https://www.turbosquid.com/3d-model/dice'],\n", + " ['dune',\n", + " 'dice',\n", + " 'game',\n", + " 'board',\n", + " 'free',\n", + " 'blender',\n", + " 'cycles',\n", + " 'devil',\n", + " 'bones',\n", + " 'dices',\n", + " 'stones',\n", + " 'printed',\n", + " 'for',\n", + " '3d',\n", + " 'print'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dune',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/board',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blender',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cycles',\n", + " 'https://www.turbosquid.com/Search/3D-Models/devil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bones',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dices',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stones',\n", + " 'https://www.turbosquid.com/Search/3D-Models/printed',\n", + " 'https://www.turbosquid.com/Search/3D-Models/for',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print'],\n", + " 'Dices (bones) action and faction for board game - Dune Dice gameCan be 3d printed in 1.5x1.5x1.5 cm or 2x2x2 cm as maximum.For playing you need 4 faction and 3 action bones. For all other bones you can use regular 6 points bones.Made in Blender 3D, rendered in Cycles. Printed on Creality 3D - size = 2x2x2 cm, layer height = 0.15, filling = 35%'],\n", + " ['3D Realistic Wolf Maya Rig',\n", + " 'cvbtruong',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-22',\n", + " '\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'canine',\n", + " 'wolf'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/canine-animal',\n", + " 'https://www.turbosquid.com/3d-model/wolf'],\n", + " ['realistic',\n", + " 'grey',\n", + " 'gray',\n", + " 'white',\n", + " 'snow',\n", + " 'wolf',\n", + " 'big',\n", + " 'dog',\n", + " 'husky'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grey',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gray',\n", + " 'https://www.turbosquid.com/Search/3D-Models/white',\n", + " 'https://www.turbosquid.com/Search/3D-Models/snow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wolf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/big',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dog',\n", + " 'https://www.turbosquid.com/Search/3D-Models/husky'],\n", + " 'Grey Wolf Maya rig. Originally from CoD. Modified by Ilyass Fouad.\\xa0\\xa0\\xa0Rigged by Truong Cg Artist.Available for non-commercial use only.Software: Maya 2014 (or higher). Rigged using Advanced Skeleton.Happy animating!Truong Cg Artist (look up my name if you have any trouble)ps: please click on my username for other products of mine.'],\n", + " ['3D Stool Chair model',\n", + " 'theflyingtim',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-22',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'stool'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/stool'],\n", + " ['furniture',\n", + " 'chair',\n", + " 'stool',\n", + " 'stoolchair',\n", + " 'interior',\n", + " 'livingroom',\n", + " 'furnish',\n", + " 'round',\n", + " 'free',\n", + " 'lowpoly',\n", + " 'gameready',\n", + " 'game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stoolchair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/livingroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furnish',\n", + " 'https://www.turbosquid.com/Search/3D-Models/round',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gameready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " 'Round stool chair for yours free. This free model does not come with UV and texture. Polycount 298 polygons.'],\n", + " ['3D Koffing Pokemon',\n", + " 'Dmytro Kotliar',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-03-22',\n", + " '\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'characters', 'movie and television character'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/movie-and-television-character'],\n", + " ['pokemon', 'koffing', 'toy', 'game', 'print', 'printable'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pokemon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/koffing',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print',\n", + " 'https://www.turbosquid.com/Search/3D-Models/printable'],\n", + " 'Model dimensions:- ball surface diameter 70 mm- outer diameter - 80 mmDesigned in Solid Works 2012, rendered in Keyshot 5.0.99.'],\n", + " ['3D Round rosette 022 model',\n", + " 'Intagli 3D',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-22',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'interior design', 'finishes', 'molding', 'rosette'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/finishes',\n", + " 'https://www.turbosquid.com/3d-model/molding',\n", + " 'https://www.turbosquid.com/3d-model/rosette'],\n", + " ['rosette',\n", + " 'molding',\n", + " 'finishes',\n", + " 'decor',\n", + " 'carved',\n", + " 'classic',\n", + " 'ornament',\n", + " 'flower',\n", + " 'medallion',\n", + " 'stl',\n", + " 'obj',\n", + " 'CNC',\n", + " 'round',\n", + " 'Max',\n", + " 'wood',\n", + " '3Dmodel',\n", + " 'intagli3D',\n", + " 'ceiling',\n", + " 'stucco',\n", + " 'acant'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/rosette',\n", + " 'https://www.turbosquid.com/Search/3D-Models/molding',\n", + " 'https://www.turbosquid.com/Search/3D-Models/finishes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carved',\n", + " 'https://www.turbosquid.com/Search/3D-Models/classic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ornament',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flower',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medallion',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/obj',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cnc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/round',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3dmodel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/intagli3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ceiling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stucco',\n", + " 'https://www.turbosquid.com/Search/3D-Models/acant'],\n", + " '3D model of round rosette--------------------------------------------------------------------------Size of model in mm: 100x100x20In case of need please use subdivision modificators for more smooth resultsRegular model ready for visualization- Count of polys of regular model: 43 232High poly model ready for CNC production- Count of polys of HQ model: 1 383 484Please rate and write the review of our model--------------------------------------------------------------------------Intagli3D'],\n", + " ['3D Dota 2 Logo for print',\n", + " '3d_new',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-03-21',\n", + " '\\n\\n\\nIGES 5.3\\n\\n\\n\\n\\nSTL 80\\n\\n\\n\\n\\nFBX 2009\\n\\n',\n", + " ['3D Model', 'symbols', 'logo'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/symbols-and-shapes',\n", + " 'https://www.turbosquid.com/3d-model/logo'],\n", + " ['3D',\n", + " 'Model',\n", + " 'dota',\n", + " '2',\n", + " 'game',\n", + " 'logo',\n", + " 'sports',\n", + " 'steam',\n", + " 'valve',\n", + " 'warcraft',\n", + " 'dota2',\n", + " 'print',\n", + " 'printable',\n", + " 'cosplay',\n", + " 'replica'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dota',\n", + " 'https://www.turbosquid.com/Search/3D-Models/2',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/logo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sports',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steam',\n", + " 'https://www.turbosquid.com/Search/3D-Models/valve',\n", + " 'https://www.turbosquid.com/Search/3D-Models/warcraft',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dota2',\n", + " 'https://www.turbosquid.com/Search/3D-Models/print',\n", + " 'https://www.turbosquid.com/Search/3D-Models/printable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cosplay',\n", + " 'https://www.turbosquid.com/Search/3D-Models/replica'],\n", + " 'This 3D Model is ready to be printed on a 3D Printer.Very fine surface, can be directly 3D printing and manufacturing files.Originally built in SolidWorks to achieve highest accuracy.********************************* Hope you like it! Also check out my other models, just click on my user name to see complete gallery.'],\n", + " ['Free Cabinet 3D',\n", + " 'theflyingtim',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-21',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'dresser'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/dresser'],\n", + " ['cabinet',\n", + " 'storage',\n", + " 'furniture',\n", + " 'free',\n", + " 'shelf',\n", + " 'interior',\n", + " 'bedroom',\n", + " 'game',\n", + " 'lowpoly',\n", + " 'fbx',\n", + " 'design',\n", + " 'poly',\n", + " 'vizarch',\n", + " 'shelving'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cabinet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/storage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shelf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vizarch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shelving'],\n", + " \"A cabinet model for yours free.This free model does not come with UV and texture.Click on 'theflyingtim' to see more models.\"],\n", + " ['Candle Chandelier 3D model',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-21',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nSTL 2013\\n\\n\\n\\n\\nOther PDF\\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp',\n", + " 'chandelier',\n", + " 'candle chandelier'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp',\n", + " 'https://www.turbosquid.com/3d-model/chandelier',\n", + " 'https://www.turbosquid.com/3d-model/candle-chandelier'],\n", + " ['Lamp',\n", + " 'Chandelier',\n", + " 'Medieval',\n", + " '1001',\n", + " 'nights',\n", + " 'Arabic',\n", + " 'Candle',\n", + " 'Ceiling',\n", + " 'Moroccan',\n", + " 'Islamic',\n", + " 'Arab'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chandelier',\n", + " 'https://www.turbosquid.com/Search/3D-Models/medieval',\n", + " 'https://www.turbosquid.com/Search/3D-Models/1001',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arabic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/candle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ceiling',\n", + " 'https://www.turbosquid.com/Search/3D-Models/moroccan',\n", + " 'https://www.turbosquid.com/Search/3D-Models/islamic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arab'],\n", + " 'Medieval themed candle chandelierThis design is not animated. 131393 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL'],\n", + " ['3D Male body anatomy',\n", + " 'sculpt_m',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-20',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model',\n", + " 'science',\n", + " 'anatomy',\n", + " 'complete human anatomy',\n", + " 'complete male anatomy'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/science',\n", + " 'https://www.turbosquid.com/3d-model/anatomy',\n", + " 'https://www.turbosquid.com/3d-model/complete-human-anatomy',\n", + " 'https://www.turbosquid.com/3d-model/complete-male-anatomy'],\n", + " ['human',\n", + " 'male',\n", + " 'body',\n", + " 'anatomy',\n", + " 'muscle',\n", + " 'pose',\n", + " 'turntable',\n", + " 'man',\n", + " 'bone',\n", + " 'clay',\n", + " 'zbrush',\n", + " 'sculpt',\n", + " 'redshift',\n", + " 'ztool',\n", + " 'hand',\n", + " 'leg',\n", + " 'torso',\n", + " 'head',\n", + " 'full'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/male',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/anatomy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/muscle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pose',\n", + " 'https://www.turbosquid.com/Search/3D-Models/turntable',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/clay',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zbrush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculpt',\n", + " 'https://www.turbosquid.com/Search/3D-Models/redshift',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ztool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/leg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/torso',\n", + " 'https://www.turbosquid.com/Search/3D-Models/head',\n", + " 'https://www.turbosquid.com/Search/3D-Models/full'],\n", + " 'Male anatomy body modell rendered with fast, effective GPU render Redshift- Zbrush sculpt- Full scene with cameras, lights, and render settings- Real world scale- Properly organized scene- Ztool- OBJ- FBX- No retopoed- No post work in these rendersHope you like it!'],\n", + " ['3D model Dumbbells',\n", + " 'waleedsalah',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-20',\n", + " '',\n", + " ['3D Model',\n", + " 'sports',\n", + " 'exercise equipment',\n", + " 'weight training',\n", + " 'weights',\n", + " 'dumbbell'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/sports',\n", + " 'https://www.turbosquid.com/3d-model/exercise-equipment',\n", + " 'https://www.turbosquid.com/3d-model/weight-training',\n", + " 'https://www.turbosquid.com/3d-model/weights',\n", + " 'https://www.turbosquid.com/3d-model/dumbbell'],\n", + " ['Dumbbells', 'Sport', 'Body', 'bodybuilding', 'Weight'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/dumbbells',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bodybuilding',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weight'],\n", + " 'Dumbbells modeling by maya 2013'],\n", + " ['Low Poly Goat 3D model',\n", + " 'LuanEspedito',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-20',\n", + " '',\n", + " ['3D Model',\n", + " 'nature',\n", + " 'animal',\n", + " 'mammals',\n", + " 'land mammals',\n", + " 'farm animals',\n", + " 'goat'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/animal',\n", + " 'https://www.turbosquid.com/3d-model/mammals',\n", + " 'https://www.turbosquid.com/3d-model/land-mammals',\n", + " 'https://www.turbosquid.com/3d-model/farm-animals',\n", + " 'https://www.turbosquid.com/3d-model/goat'],\n", + " ['low', 'poly', 'goat'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/goat'],\n", + " 'Low Poly Goat made in blender 2.79b'],\n", + " ['MTR like pistol for unity 3D model',\n", + " 'GAMEASS',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-20',\n", + " '',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'handgun'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/handgun'],\n", + " ['unity', 'game', 'ready', 'pistol', 'weapon', 'mateba', 'MTR-8', 'gun'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pistol',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mateba',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mtr-8',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gun'],\n", + " 'this is animated pistol for unity.animations--------------------------------------------------------------------shootreload startreload endmaterials-----------------------------------------------------------------------blackchrome'],\n", + " ['3d real plane fighter jet 3D model',\n", + " 'Zahid MZIWA',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2018-12-26',\n", + " '\\n\\n\\nFBX 3.01.4\\n\\n',\n", + " ['3D Model',\n", + " 'vehicles',\n", + " 'aircraft',\n", + " 'airplane',\n", + " 'military airplane',\n", + " 'fighter plane',\n", + " 'fighter jet'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/aircraft',\n", + " 'https://www.turbosquid.com/3d-model/airplane',\n", + " 'https://www.turbosquid.com/3d-model/military-airplane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-plane',\n", + " 'https://www.turbosquid.com/3d-model/fighter-jet'],\n", + " ['3ds',\n", + " 'max',\n", + " 'plane',\n", + " '3d',\n", + " 'fighter',\n", + " 'jet',\n", + " 'flying',\n", + " 'animation',\n", + " 'fbx',\n", + " 'x',\n", + " 'DirectX',\n", + " 'a',\n", + " 'pilot',\n", + " 'zahid',\n", + " 'mziwa'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/3ds',\n", + " 'https://www.turbosquid.com/Search/3D-Models/max',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plane',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fighter',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jet',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flying',\n", + " 'https://www.turbosquid.com/Search/3D-Models/animation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/x',\n", + " 'https://www.turbosquid.com/Search/3D-Models/directx',\n", + " 'https://www.turbosquid.com/Search/3D-Models/a',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pilot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/zahid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mziwa'],\n", + " 'free 3d fighter aircraft model by Zahid wadfiwale it support all formats and works with gameguru unity unreal gammaker rpg and all other engine'],\n", + " ['3D boy for unity',\n", + " 'GAMEASS',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2018-12-18',\n", + " '',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster',\n", + " 'humanoid'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster',\n", + " 'https://www.turbosquid.com/3d-model/humanoid'],\n", + " ['unity',\n", + " 'humanoid',\n", + " 'rigged',\n", + " 'child',\n", + " 't',\n", + " 'shirts',\n", + " 'pants',\n", + " 'shoes',\n", + " 'kids',\n", + " 'game'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/humanoid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/child',\n", + " 'https://www.turbosquid.com/Search/3D-Models/t',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shirts',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pants',\n", + " 'https://www.turbosquid.com/Search/3D-Models/shoes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kids',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game'],\n", + " \"humanoid rigged boy for unity game enginethis package also contains bunch of apparels however,they are useless as his equipment. (my bad)'cloth simulation' component in unity might be help... i think\"],\n", + " ['Lowpoly Sedan 3D',\n", + " 'ptrusted',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-19',\n", + " '\\n\\n\\nOBJ \\n\\n',\n", + " ['3D Model', 'vehicles', 'car', 'fictional automobile', 'cartoon car'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/vehicle',\n", + " 'https://www.turbosquid.com/3d-model/car',\n", + " 'https://www.turbosquid.com/3d-model/fictional-automobile',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-car'],\n", + " ['Lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " 'A lowpoly sedan. body and wheel separated.'],\n", + " ['3D Cheerleader Megaphone model',\n", + " 'tomb3d',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-19',\n", + " '\\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nDXF 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n\\nOBJ 2011\\n\\n',\n", + " ['3D Model',\n", + " 'technology',\n", + " 'audio devices',\n", + " 'bullhorn',\n", + " 'megaphone (acoustic)'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/technology',\n", + " 'https://www.turbosquid.com/3d-model/audio-devices',\n", + " 'https://www.turbosquid.com/3d-model/bullhorn',\n", + " 'https://www.turbosquid.com/3d-model/megaphone-acoustic'],\n", + " ['Megaphone',\n", + " 'Cheerleader',\n", + " 'Bullhorn',\n", + " 'tool',\n", + " 'voice',\n", + " 'event',\n", + " 'crowd',\n", + " 'director',\n", + " 'chant',\n", + " 'vintage',\n", + " 'cheer',\n", + " 'old',\n", + " 'horn',\n", + " 'retro',\n", + " 'sports',\n", + " 'cone',\n", + " 'message',\n", + " 'amplify',\n", + " 'loud',\n", + " 'antique',\n", + " 'vray'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/megaphone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cheerleader',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bullhorn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/voice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/event',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crowd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/director',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vintage',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cheer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/old',\n", + " 'https://www.turbosquid.com/Search/3D-Models/horn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/retro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sports',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/message',\n", + " 'https://www.turbosquid.com/Search/3D-Models/amplify',\n", + " 'https://www.turbosquid.com/Search/3D-Models/loud',\n", + " 'https://www.turbosquid.com/Search/3D-Models/antique',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vray'],\n", + " 'This is a high quality, photo real model creat in 3ds max 2011 render vary 2.4 *********************************Available in the following file formats: - 3ds Max 2011 with V-Ray 2.4 - FBX 2011 - OBJ 2011 - 3ds 2011 -DXF 2011*********************************- Completely ready for use in visualization - Just put model in your scene and render -Ideal for photorealistic visualizations - All Materials are logically named - Colors easily modified - Highly detailed model-HDRI is not attched*********************************Hope you like it!thanks!'],\n", + " ['Wonderland Mirror 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'mirror',\n", + " 'wall mirror'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/mirror',\n", + " 'https://www.turbosquid.com/3d-model/wall-mirror'],\n", + " ['Mirrors',\n", + " 'Dante-Good-and-Bads',\n", + " 'Christophe-De-La-Fontaine',\n", + " 'Glass',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bathroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mirrors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dante-good-and-bads',\n", + " 'https://www.turbosquid.com/Search/3D-Models/christophe-de-la-fontaine',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bathroom'],\n", + " \"Wonderland Mirror by Dante Good and Bads | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Dante Good and Bads, GermanyDesigner: Christophe De La FontaineDesign Connected ID: 9048BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Dauphine Floor Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'CB2',\n", + " 'Fabric',\n", + " 'Brass',\n", + " 'Natural-stone',\n", + " 'Contemporary-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cb2',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fabric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Dauphine Floor Lamp by CB2 | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CB2, USADesigner: N/ADesign Connected ID: 9047BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Emerald Mirror',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'mirror',\n", + " 'wall mirror'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/mirror',\n", + " 'https://www.turbosquid.com/3d-model/wall-mirror'],\n", + " ['Mirrors',\n", + " 'Baker',\n", + " 'Thomas-Pheasant',\n", + " 'Glass',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mirrors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/baker',\n", + " 'https://www.turbosquid.com/Search/3D-Models/thomas-pheasant',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Emerald Mirror by Baker | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Baker, USADesigner: Thomas PheasantDesign Connected ID: 9036BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Beaubien Double Shade Wall Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'Lambert-et-Fils',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lambert-et-fils',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Beaubien Double Shade Wall Lamp by Lambert et Fils | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Lambert et Fils, CanadaDesigner: N/ADesign Connected ID: 9035BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Magnifier Lamp 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Formafantasma',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/formafantasma',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Magnifier Lamp by Formafantasma | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4- Autodesk 3ds ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Formafantasma, NetherlandsDesigner: N/ADesign Connected ID: 9032BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Projekt Pendant 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Tech-Lighting',\n", + " 'Colored-glass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tech-lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Projekt Pendant by Tech Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Tech Lighting, USADesigner: N/ADesign Connected ID: 9021BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Cercle et Trat Suspension Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'CVL',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Minimalist-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cvl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Cercle et Trat Suspension Lamp by CVL | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX ADDITIONAL FILE FORMATS UPON REQUEST- Cinema4D R16 or above- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CVL, FranceDesigner: N/ADesign Connected ID: 8969BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Argento L Pendant Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Eichholtz',\n", + " 'Glass',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Modern-luxury',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eichholtz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern-luxury',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Argento L Pendant Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8968BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Bower Floor Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'West-Elm',\n", + " 'Bower-Studio-',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Minimalist-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/west-elm',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bower-studio-',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Bower Floor Lamp by West Elm | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: West Elm, Designer: Bower Studio Design Connected ID: 8963BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Strike Pendant Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Current-Collection',\n", + " 'Nash-Martinez',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Minimalist-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/current-collection',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nash-martinez',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Strike Pendant Lamp by Current Collection | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Corona- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Current Collection, USADesigner: Nash MartinezDesign Connected ID: 8962BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Mobil Wall Lamp 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'Pholc',\n", + " 'Monika-Mulder',\n", + " 'Glass',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pholc',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monika-mulder',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Mobil Wall Lamp by Pholc | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Pholc, SwedenDesigner: Monika MulderDesign Connected ID: 8957BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Calee Pendants model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'CVL',\n", + " 'POOL-',\n", + " 'Brass',\n", + " 'Chrome',\n", + " 'Copper',\n", + " 'Gold',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cvl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pool-',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chrome',\n", + " 'https://www.turbosquid.com/Search/3D-Models/copper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Calee Pendants by CVL | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CVL, FranceDesigner: POOL Design Connected ID: 8956BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Parma 160 Wall Light 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'Astro-Lighting',\n", + " 'Plastic',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/astro-lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plastic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Parma 160 Wall Light by Astro Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Astro Lighting, United KingdomDesigner: N/ADesign Connected ID: 8954BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['TR Bulb Suspension Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Menu',\n", + " 'Tim-Rundle',\n", + " 'Glass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/menu',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tim-rundle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"TR Bulb Suspension Lamp by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Tim RundleDesign Connected ID: 8953BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Ring Wall Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'CTO-Lighting',\n", + " 'Brass',\n", + " 'Chrome',\n", + " 'Painted-metal',\n", + " 'Mid-Century-Modern',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cto-lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chrome',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Ring Wall Lamp by CTO Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CTO Lighting, United KingdomDesigner: N/ADesign Connected ID: 8952BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Le Sfere 2 Wall Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'Astep',\n", + " 'Gino-Sarfatti',\n", + " 'Colored-glass',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Mid-Century-Modern',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/astep',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gino-sarfatti',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Le Sfere 2 Wall Lamp by Astep | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Astep, DenmarkDesigner: Gino SarfattiDesign Connected ID: 8951BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Heron Floor Light 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'Reading-lights',\n", + " 'CTO-Lighting',\n", + " 'Michaël-Verheyden',\n", + " 'Brass',\n", + " 'Natural-stone',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reading-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cto-lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/micha%c3%abl-verheyden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Heron Floor Light by CTO Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: CTO Lighting, United KingdomDesigner: Michaël VerheydenDesign Connected ID: 8947BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Yasmin Table Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Arteriors',\n", + " 'Colored-glass',\n", + " 'Brass',\n", + " 'Natural-stone',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/arteriors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Yasmin Table Lamp by Arteriors | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Arteriors, USADesigner: N/ADesign Connected ID: 8940BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Crescent Table Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Lee-Broom',\n", + " 'Glass',\n", + " 'Brass',\n", + " 'Gold',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lee-broom',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gold',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Crescent Table Lamp by Lee Broom | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Design Connected native - Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4- Collada ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave PRODUCT DESCRIPTIONBrand: Lee Broom, United KingdomDesigner: Lee BroomDesign Connected ID: 8939BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Time Hourglasses',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'hourglass'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/hourglass'],\n", + " ['Clocks',\n", + " 'Decorative-objects',\n", + " 'Hay',\n", + " 'Colored-glass',\n", + " 'Glass',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Office',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/clocks',\n", + " 'https://www.turbosquid.com/Search/3D-Models/decorative-objects',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hay',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Time Hourglasses by Hay | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Hay, DenmarkDesigner: N/ADesign Connected ID: 8934BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Setai Table Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Eichholtz',\n", + " 'Colored-glass',\n", + " 'Fabric',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eichholtz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fabric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Setai Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8931BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Opal Lampshades',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Ferm-Living',\n", + " 'Colored-glass',\n", + " 'Painted-metal',\n", + " 'Scandinavian-design',\n", + " 'Contemporary-design',\n", + " 'Minimalist-design',\n", + " 'Dining',\n", + " 'Kitchen',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ferm-living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Opal Lampshades by Ferm Living | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ferm Living, Designer: N/ADesign Connected ID: 8930BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Kizu Table Lamp Small',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'New-Works',\n", + " 'Lars-Tornøe',\n", + " 'Colored-glass',\n", + " 'Ceramic-and-porcelain',\n", + " 'Scandinavian-design',\n", + " 'Contemporary-design',\n", + " 'Minimalist-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/new-works',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lars-torn%c3%b8e',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ceramic-and-porcelain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Kizu Table Lamp Small by New Works | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: New Works, DenmarkDesigner: Lars TornøeDesign Connected ID: 8929BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Masina Table Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Bert-Frank',\n", + " 'Colored-glass',\n", + " 'Brass',\n", + " 'Mid-Century-Modern',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bert-frank',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Masina Table Lamp by Bert Frank | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Bert Frank, United KingdomDesigner: N/ADesign Connected ID: 8927BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Academia Table Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Eichholtz',\n", + " 'Fabric',\n", + " 'Crystal',\n", + " 'Contemporary-design',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eichholtz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fabric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crystal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Academia Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8926BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['South Beach Table Lamp 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Eichholtz',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Sculptural-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/eichholtz',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculptural-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"South Beach Table Lamp by Eichholtz | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Eichholtz, NetherlandsDesigner: N/ADesign Connected ID: 8925BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Stasis Wall Light 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'Bert-Frank',\n", + " 'Brass',\n", + " 'Copper',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bert-frank',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/copper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Stasis Wall Light by Bert Frank | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Bert Frank, United KingdomDesigner: N/ADesign Connected ID: 8922BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Marco Table Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Mitchell-Gold-+-Bob-Williams',\n", + " 'Plastic',\n", + " 'Brass',\n", + " 'Steel',\n", + " 'Natural-stone',\n", + " 'Mid-Century-Modern',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mitchell-gold-%2b-bob-williams',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plastic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Marco Table Lamp by Mitchell Gold + Bob Williams | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Mitchell Gold + Bob Williams, USADesigner: N/ADesign Connected ID: 8919BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Joan Small Mirror 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'mirror',\n", + " 'wall mirror'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/mirror',\n", + " 'https://www.turbosquid.com/3d-model/wall-mirror'],\n", + " ['Mirrors',\n", + " 'Alberta',\n", + " 'Castello-Lagravinese',\n", + " 'Glass',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/mirrors',\n", + " 'https://www.turbosquid.com/Search/3D-Models/alberta',\n", + " 'https://www.turbosquid.com/Search/3D-Models/castello-lagravinese',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Joan Small Mirror by Alberta | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Alberta, ItalyDesigner: Castello LagravineseDesign Connected ID: 8918BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Lanterne II Table',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Floor-lights',\n", + " 'Table-lights',\n", + " 'Christian-Liaigre',\n", + " 'Paper',\n", + " 'Painted-metal',\n", + " 'Mid-Century-Modern',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/christian-liaigre',\n", + " 'https://www.turbosquid.com/Search/3D-Models/paper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Lanterne II Table by N/A | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: N/A, Designer: Christian LiaigreDesign Connected ID: 8916BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Eclipse Desk Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'desk lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/desk-lamp'],\n", + " ['Table-lights',\n", + " 'Dutchbone',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dutchbone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Eclipse Desk Lamp by Dutchbone | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Dutchbone, NetherlandsDesigner: N/ADesign Connected ID: 8911BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Hollie Table Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Care-of-Bankeryd',\n", + " 'Lyktan-Bankeryd',\n", + " 'Plastic',\n", + " 'Colored-glass',\n", + " 'Glass',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/care-of-bankeryd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lyktan-bankeryd',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plastic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Hollie Table Lamp by Care of Bankeryd | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Care of Bankeryd, SwedenDesigner: Lyktan BankerydDesign Connected ID: 8909BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Diana Table Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Delightfull',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/delightfull',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Diana Table Lamp by Delightfull | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Delightfull, PortugalDesigner: N/ADesign Connected ID: 8908BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Kaschkasch Vase 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'general decor',\n", + " 'vase',\n", + " 'modern vase'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/vase',\n", + " 'https://www.turbosquid.com/3d-model/modern-vase'],\n", + " ['Vases',\n", + " 'Ligne-Roset',\n", + " '-Kaschkasch',\n", + " 'Brass',\n", + " 'Steel',\n", + " 'Copper',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/vases',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/-kaschkasch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel',\n", + " 'https://www.turbosquid.com/Search/3D-Models/copper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Kaschkasch Vase by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: KaschkaschDesign Connected ID: 8907BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Jolly Roger 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['Armchairs',\n", + " 'Gufram',\n", + " 'Fabio-Novembre',\n", + " 'Plastic',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Outdoor'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/armchairs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gufram',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fabio-novembre',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plastic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoor'],\n", + " \"Jolly Roger by Gufram | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gufram, ItalyDesigner: Fabio NovembreDesign Connected ID: 8903BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Spilla Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'Reading-lights',\n", + " 'Ligne-Roset',\n", + " 'Pascal-Mourgue',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/reading-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pascal-mourgue',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Spilla Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Pascal MourgueDesign Connected ID: 8902BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Mayfair Coffee Table model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'coffee table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/coffee-table'],\n", + " ['Coffee-tables',\n", + " 'Molteni-and-C',\n", + " 'Rodolfo-Dordoni',\n", + " 'Glass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coffee-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/molteni-and-c',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rodolfo-dordoni',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Mayfair Coffee Table by Molteni & C | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Molteni & C, ItalyDesigner: Rodolfo DordoniDesign Connected ID: 8892BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Bridger Oval Side Table',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'end table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/end-table'],\n", + " ['Occasional-tables',\n", + " 'Side-tables',\n", + " 'Caste',\n", + " 'Ty-Best',\n", + " 'Solid-wood',\n", + " 'Natural-stone',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/occasional-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/side-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/caste',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ty-best',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Bridger Oval Side Table by Caste | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Caste, USADesigner: Ty BestDesign Connected ID: 8891BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Car Light Vase model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'vase'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/vase'],\n", + " ['Vases',\n", + " 'Ligne-Roset',\n", + " 'Nathalie-Dewez',\n", + " 'Colored-glass',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Kitchen',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/vases',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/nathalie-dewez',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Car Light Vase by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Nathalie DewezDesign Connected ID: 8886BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Backyard office 3D model',\n", + " 'Alona Smulska',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-18',\n", + " '\\n\\n\\nOBJ 2018\\n\\n\\n\\n\\nFBX 2018\\n\\n',\n", + " ['3D Model', 'architecture', 'building'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/building'],\n", + " ['backyard', 'exterior', 'office', 'architecure', 'bakyardoffice'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/backyard',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bakyardoffice'],\n", + " 'This is a backyard office that could be a great piece of your exterior.Model: 3Ds MAXRender: V-Ray'],\n", + " ['3D Balancer Floor Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'Northern-Lighting',\n", + " 'Yuue-',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/northern-lighting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/yuue-',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Balancer Floor Lamp by Northern Lighting | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Northern Lighting, NorwayDesigner: Yuue Design Connected ID: 8885BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Cloche Table Lamp 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Hay',\n", + " 'Lars-Beller-Fjetland',\n", + " 'Brass',\n", + " 'Copper',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hay',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lars-beller-fjetland',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/copper',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Cloche Table Lamp by Hay | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Hay, DenmarkDesigner: Lars Beller FjetlandDesign Connected ID: 8884BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Nelson Night Clock model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'clock'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/clock'],\n", + " ['Clocks',\n", + " 'Vitra',\n", + " 'George-Nelson',\n", + " 'Glass',\n", + " 'Brass',\n", + " 'Mid-Century-Modern',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/clocks',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vitra',\n", + " 'https://www.turbosquid.com/Search/3D-Models/george-nelson',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Nelson Night Clock by Vitra | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Vitra, SwitzerlandDesigner: George NelsonDesign Connected ID: 8881BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Eiffel Wall Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'wall lighting',\n", + " 'sconce'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/wall-lighting',\n", + " 'https://www.turbosquid.com/3d-model/sconce'],\n", + " ['Wall-lights',\n", + " 'Frama',\n", + " '-Krøyer---Sætter---Lassen',\n", + " 'Colored-glass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/wall-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/frama',\n", + " 'https://www.turbosquid.com/Search/3D-Models/-kr%c3%b8yer---s%c3%a6tter---lassen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Eiffel Wall Lamp by Frama | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Frama, DenmarkDesigner: Krøyer - Sætter - LassenDesign Connected ID: 8880BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Pull Floor Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'Muuto',\n", + " 'Whatswhat-',\n", + " 'Solid-wood',\n", + " 'Painted-metal',\n", + " 'Scandinavian-design',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/muuto',\n", + " 'https://www.turbosquid.com/Search/3D-Models/whatswhat-',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Pull Floor Lamp by Muuto | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Muuto, DenmarkDesigner: Whatswhat Design Connected ID: 8865BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D JWDA Table Lamp',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Menu',\n", + " 'Jonas-Wagell',\n", + " 'Natural-stone',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/menu',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jonas-wagell',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"JWDA Table Lamp by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Jonas WagellDesign Connected ID: 8862BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Small Table D.555.1 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'coffee table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/coffee-table'],\n", + " ['Coffee-tables',\n", + " 'Molteni-and-C',\n", + " 'Gio-Ponti',\n", + " 'Glass',\n", + " 'Painted-metal',\n", + " 'Mid-Century-Modern',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coffee-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/molteni-and-c',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gio-ponti',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Small Table D.555.1 by Molteni & C | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Molteni & C, ItalyDesigner: Gio PontiDesign Connected ID: 8859BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Fuwl Cage Table model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'end table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/end-table'],\n", + " ['Coffee-tables',\n", + " 'Menu',\n", + " 'Form-Us-With-Love-',\n", + " 'Solid-wood',\n", + " 'Natural-stone',\n", + " 'Painted-metal',\n", + " 'Scandinavian-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coffee-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/menu',\n", + " 'https://www.turbosquid.com/Search/3D-Models/form-us-with-love-',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Fuwl Cage Table by Menu | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Menu, DenmarkDesigner: Form Us With Love Design Connected ID: 8851BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Moon Lounge Table 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'end table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/end-table'],\n", + " ['Occasional-tables',\n", + " 'Side-tables',\n", + " 'Gubi',\n", + " '-SPACE-Copenhagen',\n", + " 'Solid-wood',\n", + " 'Natural-stone',\n", + " 'Scandinavian-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/occasional-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/side-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gubi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/-space-copenhagen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Moon Lounge Table by Gubi | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gubi, DenmarkDesigner: SPACE CopenhagenDesign Connected ID: 8836BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Eclisse Table Lamp 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Artemide',\n", + " 'Vico-Magistretti',\n", + " 'Painted-metal',\n", + " 'Mid-Century-Modern',\n", + " 'Living',\n", + " 'Office',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/artemide',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vico-magistretti',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Eclisse Table Lamp by Artemide | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Artemide, ItalyDesigner: Vico MagistrettiDesign Connected ID: 8834BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Grace Trolley model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'kitchen cart'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-cart'],\n", + " ['Occasional-tables',\n", + " 'Trays',\n", + " 'Schönbuch',\n", + " 'Sebastian-Herkner',\n", + " 'Plywood',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Kitchen',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/occasional-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/trays',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sch%c3%b6nbuch',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sebastian-herkner',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plywood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Grace Trolley by Schönbuch | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Schönbuch, GermanyDesigner: Sebastian HerknerDesign Connected ID: 8825BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Tama Console',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'console table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/console-table'],\n", + " ['Console-tables',\n", + " 'Gallotti-and-Radice',\n", + " 'Carlo-Colombo',\n", + " 'Solid-wood',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Modern-luxury',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/console-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carlo-colombo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern-luxury',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Tama Console by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Carlo ColomboDesign Connected ID: 8824BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Tama Crédence',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'sideboard'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/sideboard'],\n", + " ['Sideboards',\n", + " 'Gallotti-and-Radice',\n", + " 'Carlo-Colombo',\n", + " 'Solid-wood',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Modern-luxury',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/sideboards',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/carlo-colombo',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern-luxury',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Tama Crédence by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Carlo ColomboDesign Connected ID: 8823BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Roly-Poly Chair model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'furnishings',\n", + " 'seating',\n", + " 'chair',\n", + " 'side chair',\n", + " 'occasional chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/side-chair',\n", + " 'https://www.turbosquid.com/3d-model/occasional-chair'],\n", + " ['Chairs',\n", + " 'Driade',\n", + " 'Faye-Toogood',\n", + " 'Plastic',\n", + " 'Contemporary-design',\n", + " 'Sculptural-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chairs',\n", + " 'https://www.turbosquid.com/Search/3D-Models/driade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/faye-toogood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/plastic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sculptural-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Roly-Poly Chair by Driade | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Driade, ItalyDesigner: Faye ToogoodDesign Connected ID: 8816BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Calee Table Lamp 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'South-Hill-Home',\n", + " 'Brass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/south-hill-home',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Calee Table Lamp by South Hill Home | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: South Hill Home, USADesigner: N/ADesign Connected ID: 8778BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Song Coffee Tables',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'table', 'coffee table'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/table',\n", + " 'https://www.turbosquid.com/3d-model/coffee-table'],\n", + " ['Coffee-tables',\n", + " 'Minotti',\n", + " 'Rodolfo-Dordoni',\n", + " 'Natural-stone',\n", + " 'Wood-veneer',\n", + " 'Contemporary-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/coffee-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minotti',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rodolfo-dordoni',\n", + " 'https://www.turbosquid.com/Search/3D-Models/natural-stone',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood-veneer',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Song Coffee Tables by Minotti | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Minotti, ItalyDesigner: Rodolfo DordoniDesign Connected ID: 8776BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Neil Table Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Ligne-Roset',\n", + " '-Ligne-Roset',\n", + " 'Glass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Office',\n", + " 'Bathroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/-ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bathroom'],\n", + " \"Neil Table Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Ligne RosetDesign Connected ID: 8772BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Melusine Table Lamp model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'table lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/table-lamp'],\n", + " ['Table-lights',\n", + " 'Ligne-Roset',\n", + " 'Peter-Maly',\n", + " 'Solid-wood',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Office',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/peter-maly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Melusine Table Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Peter MalyDesign Connected ID: 8770BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Mategot Trolley',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'industrial', 'tools', 'cart'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/industrial',\n", + " 'https://www.turbosquid.com/3d-model/tools',\n", + " 'https://www.turbosquid.com/3d-model/cart-tool'],\n", + " ['Console-tables',\n", + " 'Occasional-tables',\n", + " 'Gubi',\n", + " 'Mathieu-Mategot',\n", + " 'Painted-metal',\n", + " 'Scandinavian-design',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/console-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/occasional-tables',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gubi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mathieu-mategot',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/scandinavian-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Mategot Trolley by Gubi | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gubi, DenmarkDesigner: Mathieu MategotDesign Connected ID: 8766BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Inciucio Pendant Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Gibas',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gibas',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Inciucio Pendant Lamp by Gibas | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gibas, ItalyDesigner: N/ADesign Connected ID: 8747BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D model Riki Trolley',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'kitchen cart'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-cart'],\n", + " ['Trays',\n", + " 'Gallotti-and-Radice',\n", + " 'Pierangelo-Gallotti',\n", + " 'Glass',\n", + " 'Brass',\n", + " 'Chrome',\n", + " 'Mid-Century-Modern',\n", + " 'Dining',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/trays',\n", + " 'https://www.turbosquid.com/Search/3D-Models/gallotti-and-radice',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pierangelo-gallotti',\n", + " 'https://www.turbosquid.com/Search/3D-Models/glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chrome',\n", + " 'https://www.turbosquid.com/Search/3D-Models/mid-century-modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Riki Trolley by Gallotti & Radice | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Gallotti & Radice, ItalyDesigner: Pierangelo GallottiDesign Connected ID: 8746BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Cancan Floor Light 3D',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'floor lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/floor-lamp'],\n", + " ['Floor-lights',\n", + " 'Ligne-Roset',\n", + " 'Patrick-Zulauf',\n", + " 'Colored-glass',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/floor-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/patrick-zulauf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/colored-glass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Cancan Floor Light by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Patrick ZulaufDesign Connected ID: 8743BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['3D Passe-Passe Coat Rack model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'rack', 'clothes rack', 'coat tree'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/rack',\n", + " 'https://www.turbosquid.com/3d-model/clothes-rack',\n", + " 'https://www.turbosquid.com/3d-model/coat-tree'],\n", + " ['Cloth-stands',\n", + " 'Ligne-Roset',\n", + " 'Philippe-Nigro',\n", + " 'Solid-wood',\n", + " 'Painted-wood',\n", + " 'Contemporary-design',\n", + " 'Living',\n", + " 'Office',\n", + " 'Bedroom'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/cloth-stands',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/philippe-nigro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/solid-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living',\n", + " 'https://www.turbosquid.com/Search/3D-Models/office',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bedroom'],\n", + " \"Passe-Passe Coat Rack by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Philippe NigroDesign Connected ID: 8698BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Destructuree Pendant Lamp 3D model',\n", + " 'Designconnected',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'fixtures',\n", + " 'lighting',\n", + " 'lamp',\n", + " 'hanging lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/hanging-lamp'],\n", + " ['Pendant-lights',\n", + " 'Ligne-Roset',\n", + " 'Kazuhiro-Yamanaka',\n", + " 'Painted-metal',\n", + " 'Contemporary-design',\n", + " 'Minimalist-design',\n", + " 'Dining',\n", + " 'Kitchen',\n", + " 'Living'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/pendant-lights',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ligne-roset',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kazuhiro-yamanaka',\n", + " 'https://www.turbosquid.com/Search/3D-Models/painted-metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/contemporary-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/minimalist-design',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dining',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/living'],\n", + " \"Destructuree Pendant Lamp by Ligne Roset | 3d model produced by Design ConnectedThis 3d model is part of the highly acclaimed Design Connected collection featuring 6500+ carefully picked exclusive furnishings. Check out our full range of 3d models for more mid-century icons, contemporary classics and designer masterpieces.All Design Connected 3d models are originally created in 3ds Max and V-Ray renderer.Our in-house team of 3d artists handle all further remodelling, materials conversions and other adaptations to deliver best possible visual and technical quality of all the additional file formats and renderers we offer. Files units are centimeters and all models are accurately scaled to represent real-life object's dimensions.Our models come as a single editable mesh or poly object (or as group for rigged models or where displace modifier has been used) properly named and positioned in the center of coordinate system. No lights, cameras and render/scene setup are included unless otherwise stated in the particular model’s description.AVAILABLE FILE FORMATS- Sketchup 8 or above - Autodesk 3ds Max 2011 or above-- VRay-- Mental Ray-- Scanline-- Corona-- Maxwell- OBJ and FBX - Cinema4D R16 or above-- Adv. / Physical-- V-Ray 1.9-- V-Ray 3.4ADDITIONAL FILE FORMATS UPON REQUEST- ARCHICAD R16 or above- Autodesk 3ds - Abvent Artlantis - Rhinoceros - Autodesk DWG - Maya - Lightwave - Collada PRODUCT DESCRIPTIONBrand: Ligne Roset, FranceDesigner: Kazuhiro YamanakaDesign Connected ID: 8680BEFORE PURCHASEWe highly recommend that you download few of our FREE 3D MODELS and test if they work well with your 3d software before making a purchase.ABOUT THE IMAGERYPreviews rendered in 3dsMax using VRay. Please note that the studio scenes and light and environment settings are not included.SUPPORTIf you have any questions about how to use Design Connected 3d models, please contact us via Support.Thank you for purchasing Design Connected models!\"],\n", + " ['Sports bottle 3D model',\n", + " 'bomi1337',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-18',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n',\n", + " ['3D Model', 'sports', 'exercise equipment', 'sports bottle'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/sports',\n", + " 'https://www.turbosquid.com/3d-model/exercise-equipment',\n", + " 'https://www.turbosquid.com/3d-model/sports-bottle'],\n", + " ['bottle',\n", + " 'metal',\n", + " 'sport',\n", + " 'sports',\n", + " 'drink',\n", + " 'hydro',\n", + " 'vacuum',\n", + " 'stainless',\n", + " 'steel'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/bottle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/metal',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sport',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sports',\n", + " 'https://www.turbosquid.com/Search/3D-Models/drink',\n", + " 'https://www.turbosquid.com/Search/3D-Models/hydro',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vacuum',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stainless',\n", + " 'https://www.turbosquid.com/Search/3D-Models/steel'],\n", + " '***********************************************************************This is a metal sport bottle with plastic cap. (cap is unscrewable)Objects: - metal bottle - plastic capMultiple file formats : .fbx .obj .blend .3ds .x3d Native file: .blend***********************************************************************Please, rate the model. It will help a lot!***********************************************************************'],\n", + " ['3D Lego_Bricks',\n", + " 'anubhav462',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses AllowedExtended Uses May Need Clearances',\n", + " '2019-03-17',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model',\n", + " 'toys and games',\n", + " 'toys',\n", + " 'building toys',\n", + " 'lego',\n", + " 'lego brick'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/toys-and-games',\n", + " 'https://www.turbosquid.com/3d-model/toys',\n", + " 'https://www.turbosquid.com/3d-model/building-toys',\n", + " 'https://www.turbosquid.com/3d-model/lego-toy',\n", + " 'https://www.turbosquid.com/3d-model/lego-brick'],\n", + " ['Lego', 'Bricks'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lego',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bricks'],\n", + " 'Lego Bricks Basic'],\n", + " ['3D kids chair model',\n", + " 'rayson278',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-17',\n", + " '',\n", + " ['3D Model',\n", + " 'furnishings',\n", + " 'seating',\n", + " 'chair',\n", + " \"children's chair\",\n", + " 'high chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/childrens-chair',\n", + " 'https://www.turbosquid.com/3d-model/high-chair'],\n", + " ['table', 'and', 'chair'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/and',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair'],\n", + " 'cinema 4d model of simple kids table and chair set'],\n", + " ['3D Antique Oil Lamp',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-16',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nSTL 2013\\n\\n\\n\\n\\nOther PDF\\n\\n',\n", + " ['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/oil-lamp'],\n", + " ['Lamp', 'oil', 'lamp'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp'],\n", + " 'A collection of antique oil lampsThis design is not animated. 111056 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL'],\n", + " ['Diwali Oil Lamp model',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-16',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nIGES 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nOther 2013\\n\\n\\n\\n\\nSTL 2013\\n\\n\\n\\n\\nOther PDF\\n\\n',\n", + " ['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/oil-lamp'],\n", + " ['Lamp', 'Diwali', 'Oil', 'Lamp'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/diwali',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp'],\n", + " 'Diwali Oil LampThis design is not animated. 8005 quadrilateral polygons7187 triangular polygons23197 total triangular polygons after forced triangulationPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL, .STEP; .IGES'],\n", + " ['3D model Antique Oil Lamp',\n", + " 'DTG Amusements',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-16',\n", + " '\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing 2013\\n\\n\\n\\n\\nDXF 2013\\n\\n\\n\\n\\nFBX 2013\\n\\n\\n\\n\\nOBJ 2013\\n\\n\\n\\n\\nSTL 2013\\n\\n\\n\\n\\nOther PDF\\n\\n',\n", + " ['3D Model', 'interior design', 'fixtures', 'lighting', 'lamp', 'oil lamp'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/fixtures',\n", + " 'https://www.turbosquid.com/3d-model/lighting',\n", + " 'https://www.turbosquid.com/3d-model/lamp',\n", + " 'https://www.turbosquid.com/3d-model/oil-lamp'],\n", + " ['Lamp', 'Oil', 'Lamp'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lamp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/oil',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lamp'],\n", + " 'Antique Oil LampThis design is not animated. 47716 triangular polygonsPDF included with wireframes.Avaible as: .3dm, .3ds, .C4D, .DWG, .DXF, .FBX, .OBJ, .STL'],\n", + " ['3D Casual Couple LowPoly Rigged (Free Sample) model',\n", + " 'Denys Almaral',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-16',\n", + " '\\n\\n\\nFBX 2014\\n\\n',\n", + " ['3D Model', 'characters', 'people', 'man', 'cartoon man'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/man',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-man'],\n", + " ['people',\n", + " 'rigged',\n", + " 'character',\n", + " 'lowpoly',\n", + " 'style',\n", + " 'woman',\n", + " 'man',\n", + " 'toon',\n", + " 'human',\n", + " 'casual',\n", + " 'body',\n", + " 'girl',\n", + " 'low',\n", + " 'poly',\n", + " 'unity',\n", + " 'realtime',\n", + " 'cartoon',\n", + " 'blond',\n", + " 'blonde',\n", + " 'sexy',\n", + " 'cute',\n", + " 'free'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/people',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/style',\n", + " 'https://www.turbosquid.com/Search/3D-Models/woman',\n", + " 'https://www.turbosquid.com/Search/3D-Models/man',\n", + " 'https://www.turbosquid.com/Search/3D-Models/toon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/human',\n", + " 'https://www.turbosquid.com/Search/3D-Models/casual',\n", + " 'https://www.turbosquid.com/Search/3D-Models/body',\n", + " 'https://www.turbosquid.com/Search/3D-Models/girl',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realtime',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cartoon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blond',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blonde',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sexy',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cute',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free'],\n", + " \"LowPoly Style Couple, casual man and woman. Created with 3ds max 2015, easy to export to any software that support FBX.ATTENTION: This FREE SAMPLE is part of a 20 characters bundle, see product ID: 1379814 Suitable for Low Poly concept designs, presentations, advertising animations, explaining videos, games and architectural visualizations.|| CONCEPT & DESIGN ||Casual humans male and blond female with Low Poly Art style, with relatively attractive body shape and neutral expression face. They are wearing a casual attire, with fresh colors. These cartoons are intended to represent common people.This character is an original creation from the author based on its own designs, knowledge and research. Any similarity with existing characters, or real persons, living or dead, is purely coincidental.|| SPECS ||Each model have around 850 polygons average. This model is not intended for mesh subdivision from its original concept but you can experiment for achieving new effects.Units system is: 1 unit = 1 cm.Characters are around 165cm to 185cm tall.The material is standard with a diffuse color. Suitable for lit or unlit rendering.Each file contains a single character with its skeleton without any lights or cameras. The intention is to be ready and clean for import elsewhere. || TEXTURES ||One unique texture small PNG of 256x256 pixels. Each polygon is mapped to a single texel color. Very easy to edit with pX Poly Paint scripted tool also included. || SETUP ||Each model is a single Editable Poly mesh rigged with Skin modifier and Biped system. When exporting as FBX use 'toExport' named selection set.Tested for Unity 5 and Unity 2018 humanoid rig compatibility. Poses in renders, and rendering scenes not included.|| CUSTOMIZATION ||Made to be customized. Each character preserve the Symmetry modifier and the Skin was applied without manual vertex edit, only envelop adjustments. So you can any time go down the stack and edit the mesh without hassle. Download and Enjoy!Rating and feedback is very appreciated! Any questions please contact via support.\"],\n", + " ['3D model Simple Pouf',\n", + " 'Desert Night',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-16',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'foot rest', 'ottoman'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/foot-rest',\n", + " 'https://www.turbosquid.com/3d-model/ottoman'],\n", + " ['simple', 'pouf', 'chair', 'fabric', 'modern', '3d', 'model'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pouf',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fabric',\n", + " 'https://www.turbosquid.com/Search/3D-Models/modern',\n", + " 'https://www.turbosquid.com/Search/3D-Models/3d',\n", + " 'https://www.turbosquid.com/Search/3D-Models/model'],\n", + " 'Simple PoufDimensions: L 450 x W 450 x H 350 mmColors: Yellow / Red / Blue / GreenVersion: 3ds max 2014 / V-ray 3.4 + FBXPolys: 55.000Verts: 55.000I hope you like it. Thanks.'],\n", + " ['3D model Classic Water Fountain',\n", + " 'Marc Mons',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-15',\n", + " '\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n',\n", + " ['3D Model',\n", + " 'architecture',\n", + " 'site components',\n", + " 'landscape architecture',\n", + " 'fountain'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/architecture',\n", + " 'https://www.turbosquid.com/3d-model/site-components',\n", + " 'https://www.turbosquid.com/3d-model/landscape-architecture',\n", + " 'https://www.turbosquid.com/3d-model/fountain'],\n", + " ['water',\n", + " 'fountain',\n", + " 'architecture',\n", + " 'exterior',\n", + " 'stream',\n", + " 'structure',\n", + " 'outdoor',\n", + " 'city',\n", + " 'town',\n", + " 'garden',\n", + " 'pool',\n", + " 'building',\n", + " 'waterfall',\n", + " 'bush',\n", + " 'flower',\n", + " 'splash',\n", + " 'park',\n", + " 'free',\n", + " 'freefountain',\n", + " 'fbx'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/water',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fountain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/architecture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/exterior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stream',\n", + " 'https://www.turbosquid.com/Search/3D-Models/structure',\n", + " 'https://www.turbosquid.com/Search/3D-Models/outdoor',\n", + " 'https://www.turbosquid.com/Search/3D-Models/city',\n", + " 'https://www.turbosquid.com/Search/3D-Models/town',\n", + " 'https://www.turbosquid.com/Search/3D-Models/garden',\n", + " 'https://www.turbosquid.com/Search/3D-Models/pool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/building',\n", + " 'https://www.turbosquid.com/Search/3D-Models/waterfall',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bush',\n", + " 'https://www.turbosquid.com/Search/3D-Models/flower',\n", + " 'https://www.turbosquid.com/Search/3D-Models/splash',\n", + " 'https://www.turbosquid.com/Search/3D-Models/park',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/freefountain',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fbx'],\n", + " \"Modeled with Autodesk Maya 2016 using polygons.With materials and textures.All the objects parent and group correctly.Mental Rays Mia Material X is used for all objects in the scene. The file called ' render ' is to render like the first imatge with Maya Mental ray. For best results add a render occlusion on it.Formats mb,, fbx, obj, cinema4d and 3dmax.These formats with basic materials and textures.Thanks for your support.\"],\n", + " [\"3D Kitchen Chef's Knife model\",\n", + " 'sepandj',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-15',\n", + " '\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOpenFlight \\n\\n\\n\\n\\nIGES \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nAutoCAD drawing \\n\\n\\n\\n\\nDXF \\n\\n\\n\\n\\nTarga \\n\\n',\n", + " ['3D Model',\n", + " 'interior design',\n", + " 'housewares',\n", + " 'kitchenware',\n", + " 'cooking utensil',\n", + " 'kitchen knife',\n", + " \"chef's knife\"],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/kitchenware',\n", + " 'https://www.turbosquid.com/3d-model/cooking-utensil',\n", + " 'https://www.turbosquid.com/3d-model/kitchen-knife',\n", + " 'https://www.turbosquid.com/3d-model/chefs-knife'],\n", + " ['knife',\n", + " 'kitchen',\n", + " 'sharp',\n", + " 'still',\n", + " 'wood',\n", + " 'brass',\n", + " 'blade',\n", + " 'weapon',\n", + " 'chef',\n", + " 'cook',\n", + " 'cooking',\n", + " 'cut',\n", + " 'cutting',\n", + " 'regular',\n", + " 'simple',\n", + " 'realistic',\n", + " 'melee',\n", + " 'fight',\n", + " 'chop',\n", + " 'chopping',\n", + " 'house',\n", + " 'kitchenware'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/knife',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchen',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sharp',\n", + " 'https://www.turbosquid.com/Search/3D-Models/still',\n", + " 'https://www.turbosquid.com/Search/3D-Models/wood',\n", + " 'https://www.turbosquid.com/Search/3D-Models/brass',\n", + " 'https://www.turbosquid.com/Search/3D-Models/blade',\n", + " 'https://www.turbosquid.com/Search/3D-Models/weapon',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chef',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cook',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cooking',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cut',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cutting',\n", + " 'https://www.turbosquid.com/Search/3D-Models/regular',\n", + " 'https://www.turbosquid.com/Search/3D-Models/simple',\n", + " 'https://www.turbosquid.com/Search/3D-Models/realistic',\n", + " 'https://www.turbosquid.com/Search/3D-Models/melee',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chop',\n", + " 'https://www.turbosquid.com/Search/3D-Models/chopping',\n", + " 'https://www.turbosquid.com/Search/3D-Models/house',\n", + " 'https://www.turbosquid.com/Search/3D-Models/kitchenware'],\n", + " \"It's a simple chef's knife with a wooden handle and brass pins, created originally in solidworks the exported and materialized in 3Ds MAX.- > The model is rendered and materialized in 3Ds MAX and Corona renderer. If you have corona installed it should work all fine as soon as you open it, but if you don't I have included all the material assets you need and they are easy to make in any renderer. . I have tried to export the model in as many formats as I could, but if you need something specific you can get in contact with me and I will help you.- **If there are any problems please contact me.**> **Please Rate and Comment What You Think.**\"],\n", + " ['3D dirty steam punk knight for unity',\n", + " 'GAMEASS',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-15',\n", + " '',\n", + " ['3D Model', 'characters', 'people', 'military people', 'knight'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/people',\n", + " 'https://www.turbosquid.com/3d-model/military-people',\n", + " 'https://www.turbosquid.com/3d-model/knight-warrior'],\n", + " ['knight', 'unity', 'humanoid', 'rigged', 'character', 'soldier'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/knight',\n", + " 'https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/humanoid',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rigged',\n", + " 'https://www.turbosquid.com/Search/3D-Models/character',\n", + " 'https://www.turbosquid.com/Search/3D-Models/soldier'],\n", + " 'humanoid rigged character for unity.this package contains 4 types of materialsblue, green, crusader, redeach materials have 3 texture maps(defuse, metalness smoothness, normal)all 4 types of knights are already prefabed anywayenjoy!'],\n", + " ['3D Shotgun (Free) model',\n", + " 'maskedmole',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-15',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'weaponry', 'weapons', 'firearms', 'shotgun'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/weaponry',\n", + " 'https://www.turbosquid.com/3d-model/weapons',\n", + " 'https://www.turbosquid.com/3d-model/firearms',\n", + " 'https://www.turbosquid.com/3d-model/shotgun'],\n", + " ['shotgun', 'free', 'firearm'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/shotgun',\n", + " 'https://www.turbosquid.com/Search/3D-Models/free',\n", + " 'https://www.turbosquid.com/Search/3D-Models/firearm'],\n", + " 'Free shotgun ready to use for your game, fully UV mapped. For an upgraded version of this with arms to hold the shotgun, and a revolver, consider checking out the Shotgun & Revolver pack on my profile.'],\n", + " ['quin the mantis for unity REMAKE 3D model',\n", + " 'GAMEASS',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-15',\n", + " '',\n", + " ['3D Model',\n", + " 'characters',\n", + " 'mythological creatures',\n", + " 'fantasy and fictional creatures',\n", + " 'monster'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/character',\n", + " 'https://www.turbosquid.com/3d-model/mythological-creatures',\n", + " 'https://www.turbosquid.com/3d-model/fantasy-and-fictional-creatures',\n", + " 'https://www.turbosquid.com/3d-model/monster'],\n", + " ['unity', 'RPG', 'monster', 'bug', 'creature', 'sci', 'fi', 'fantasy'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/unity',\n", + " 'https://www.turbosquid.com/Search/3D-Models/rpg',\n", + " 'https://www.turbosquid.com/Search/3D-Models/monster',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bug',\n", + " 'https://www.turbosquid.com/Search/3D-Models/creature',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sci',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fi',\n", + " 'https://www.turbosquid.com/Search/3D-Models/fantasy'],\n", + " \"'CREATURE FOR UNITY' REMAKED!QUIN the mantis REMAKE with 16 animations for unity game engine!!differences----------------------------------------------------------------retopologized: 15,504 to 6468 in trisweights fixednew texture types: 7 types of textures-------------------------------------------------------standardwoodlanddrylandmedieval ironconcretesci_fi mosquitobeachanimations-----------------------------------------------------------------idleidle_crouchidle_cleaningwalk_fwdwalk_fwd_on_swampwalk_bkwdwalk_RTwalk_LTattack_RTattack_LTattack_botheatthreatthreat_simplejumpdeath_blowedall animations are 120 -------------------------------------------------------------------------------\"],\n", + " ['3D Urn',\n", + " 'Iridesium',\n", + " '\\nFree\\n',\n", + " ' - Editorial Uses Only',\n", + " '2019-03-14',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'interior design', 'housewares', 'general decor', 'urn'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/interior-design',\n", + " 'https://www.turbosquid.com/3d-model/housewares',\n", + " 'https://www.turbosquid.com/3d-model/general-decor',\n", + " 'https://www.turbosquid.com/3d-model/urn'],\n", + " ['urn',\n", + " 'ashes',\n", + " 'tomb',\n", + " 'bottle',\n", + " 'jar',\n", + " 'ancient',\n", + " 'ossuary',\n", + " 'dust',\n", + " 'vase',\n", + " 'container',\n", + " 'grave',\n", + " 'sorrow',\n", + " 'funeral',\n", + " 'crematorium',\n", + " 'cemetery',\n", + " 'cremation',\n", + " 'cremate',\n", + " 'low',\n", + " 'poly',\n", + " 'game',\n", + " 'ready',\n", + " 'lowpoly'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/urn',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ashes',\n", + " 'https://www.turbosquid.com/Search/3D-Models/tomb',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bottle',\n", + " 'https://www.turbosquid.com/Search/3D-Models/jar',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ancient',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ossuary',\n", + " 'https://www.turbosquid.com/Search/3D-Models/dust',\n", + " 'https://www.turbosquid.com/Search/3D-Models/vase',\n", + " 'https://www.turbosquid.com/Search/3D-Models/container',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grave',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sorrow',\n", + " 'https://www.turbosquid.com/Search/3D-Models/funeral',\n", + " 'https://www.turbosquid.com/Search/3D-Models/crematorium',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cemetery',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cremation',\n", + " 'https://www.turbosquid.com/Search/3D-Models/cremate',\n", + " 'https://www.turbosquid.com/Search/3D-Models/low',\n", + " 'https://www.turbosquid.com/Search/3D-Models/poly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/game',\n", + " 'https://www.turbosquid.com/Search/3D-Models/ready',\n", + " 'https://www.turbosquid.com/Search/3D-Models/lowpoly'],\n", + " \"This is an older looking Medieval or Victorian style kitchen.This model is primarily metal. A concrete slab under the whole thing and a brick chimney are the only two exceptions. There is a metallic mask to separate the metal and the dielectric parts of the model in the material. The kitchen includes a large basin on the left to deep-fry or boil food in. The brick chimney channels the oil vapor upwards and out of the house(wouldn't want the oil fumes to make a fireball in the house). On the right end are several shelves that a fire can be built under to keep food warm or to bake breads and/or cakes in. The main part of the kitchen is a big surface which can be heated and then used to cook food on.The mesh is very clean and quite low resolution if you want to use it in a game.Although this model is pretty cool and will stand on its own in a scene, it does have a slight Medieval or Victorian style and works well with the other Victorian assets I have made. I will be uploading the full pack soon!The textures have been uploaded separately in a .zip from the rest of the 3D model files. They (the textures) come in only one size, 2K resolution. I made this model for usage in games or as a background detail for a big scene so the textures are not super hi-res.This model includes: Color map Normal map Displacement map Specular map Metallic maskThe separate maps were generated using Photoshop.If you like the model, rate it. I would really appreciate it!Thanks!\"],\n", + " ['Armchair - Fabric/Wood Materials 3D model',\n", + " 'matredo',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-14',\n", + " '',\n", + " ['3D Model', 'furnishings', 'seating', 'chair', 'lounge chair', 'arm chair'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/chair',\n", + " 'https://www.turbosquid.com/3d-model/lounge-chair',\n", + " 'https://www.turbosquid.com/3d-model/arm-chair'],\n", + " ['chair', 'armchair', 'furniture', 'interior', 'design'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/chair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/armchair',\n", + " 'https://www.turbosquid.com/Search/3D-Models/furniture',\n", + " 'https://www.turbosquid.com/Search/3D-Models/interior',\n", + " 'https://www.turbosquid.com/Search/3D-Models/design'],\n", + " \"| MODEL DESCRIPTION |-This is a model of a modern design armchair.-This model is suitable for use in architectural scenes or game scenes-Dimension: 50cm x 58cm x 70cm (WxDxH) | TECHNICAL SPECIFICATION |-Real-world scale-Units used: Centimetres-Gamma used: 2.2-Total Polys: 2349-Total Verts: 1650-Model is composed in various objects linked togheter with 'parent-child relationship'-All objects of the model are named-All textures are named-All materials are named-All preview images are rendered with V-Ray | ARCHIVE CONTAINS |-.max file with scene fully configured for render with materials, lights and camera-.max file with only model objects-.fbx file with only model objects-.obj file with only model objects-Textures folder | ADDITIONAL NOTES |-If you like this model I would kindly ask you to rate it\"],\n", + " ['Low Poly Grass Pack 3D',\n", + " 'Moi Loy',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-14',\n", + " '\\n\\n\\nFBX \\n\\n',\n", + " ['3D Model', 'nature', 'plants', 'cartoon plant'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/nature',\n", + " 'https://www.turbosquid.com/3d-model/plants',\n", + " 'https://www.turbosquid.com/3d-model/cartoon-plant'],\n", + " ['lowpoly', 'grass'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/lowpoly',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grass'],\n", + " 'Pack Contains: 13 types of Grass(FBX),7 types of Bunch of Grass(FBX),Blend File.'],\n", + " ['Piano Bench model',\n", + " 'Iridesium',\n", + " '\\nFree\\n',\n", + " ' - All Extended Uses',\n", + " '2019-03-13',\n", + " '\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n\\nOther \\n\\n',\n", + " ['3D Model', 'furnishings', 'seating', 'bench', 'wooden bench'],\n", + " ['https://www.turbosquid.com/Search/3d-models',\n", + " 'https://www.turbosquid.com/3d-model/furnishings',\n", + " 'https://www.turbosquid.com/3d-model/seating',\n", + " 'https://www.turbosquid.com/3d-model/bench',\n", + " 'https://www.turbosquid.com/3d-model/wooden-bench'],\n", + " ['Piano',\n", + " 'bench',\n", + " 'grand',\n", + " 'seat',\n", + " 'stool',\n", + " 'desk',\n", + " 'side',\n", + " 'table',\n", + " 'Yamaha',\n", + " 'sitting'],\n", + " ['https://www.turbosquid.com/Search/3D-Models/piano',\n", + " 'https://www.turbosquid.com/Search/3D-Models/bench',\n", + " 'https://www.turbosquid.com/Search/3D-Models/grand',\n", + " 'https://www.turbosquid.com/Search/3D-Models/seat',\n", + " 'https://www.turbosquid.com/Search/3D-Models/stool',\n", + " 'https://www.turbosquid.com/Search/3D-Models/desk',\n", + " 'https://www.turbosquid.com/Search/3D-Models/side',\n", + " 'https://www.turbosquid.com/Search/3D-Models/table',\n", + " 'https://www.turbosquid.com/Search/3D-Models/yamaha',\n", + " 'https://www.turbosquid.com/Search/3D-Models/sitting'],\n", + " 'This is an older, worn, piano bench (or any kind of bench). This is an old, wooden piano bench. This model is made to go with the old Grand Piano model I have for sale. The bench is exclusively wooden and is a little worn.The mesh is very clean. And quite low resolution if you want to use it in a game.Although this model is pretty cool and will stand on its own in a scene, it does have a slight Medieval or Victorian style and works well with the other Victorian assets I have made. I will be uploading the full pack soon!The textures have been uploaded separately in a .zip from the rest of the 3D model files. They (the textures) come in only one size, 256x256 resolution. I made this model for usage in games or as a background detail for a big scene so the textures are not super hi-res.This model includes: Color map Normal map Displacement map Specular mapThe separate maps were generated using Photoshop.Thanks!']]" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rows_dataset" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_modelownerpricelicensepublished_dateformats_availablelist_categorieslinks_categorieslist_tagslinks_tagsdescription
03D Free Base Male Anatomyniyoo\\nFree\\n- All Extended Uses2019-07-21\\n\\n\\nOBJ \\n\\n[3D Model, characters, people, man][https://www.turbosquid.com/Search/3d-models, ...[characters, man, male, human, zbrush, ztl, ob...[https://www.turbosquid.com/Search/3D-Models/c...Free model. You can use for base anatomy/propo...
13D model Minecraft Grass BlockRender at Night\\nFree\\n- Editorial Uses Only2019-07-21\\n\\n\\nOBJ \\n\\n[3D Model, nature, plants, grasses, ornamental...[https://www.turbosquid.com/Search/3d-models, ...[minecraft, grass, block, cube][https://www.turbosquid.com/Search/3D-Models/m...
2Diving Helmet 3D modelNotJerd\\nFree\\n- All Extended Uses2019-07-20\\n\\n\\nOBJ \\n\\n[3D Model, sports, outdoor sports, scuba, divi...[https://www.turbosquid.com/Search/3d-models, ...[Helmet, Undersea][https://www.turbosquid.com/Search/3D-Models/h...This is a helmet I made.CC0 License
33D DominoesRender at Night\\nFree\\n- All Extended Uses2019-07-20\\n\\n\\nOBJ \\n\\n[3D Model, toys and games, games, dominos][https://www.turbosquid.com/Search/3d-models, ...[domino, dominoes, black, white, tile][https://www.turbosquid.com/Search/3D-Models/d...Models of 5 different dominoes.Polygons/Vertic...
4Prototyping Polygons 3D modelHyperChromatica\\nFree\\n- All Extended Uses2019-07-20\\n\\n\\nFBX 1.0\\n\\n[3D Model, symbols][https://www.turbosquid.com/Search/3d-models, ...[primitives, prototyping, blender, unity, geom...[https://www.turbosquid.com/Search/3D-Models/p...I was starting work on a new game in unity and...
53D counter and bar stoolsESalem\\nFree\\n- All Extended Uses2019-07-20\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n[3D Model, furnishings, cupboard, showcase][https://www.turbosquid.com/Search/3d-models, ...[counter, and, bar, stools, Are, same, specifi...[https://www.turbosquid.com/Search/3D-Models/c...counter and bar stools Are the same specificat...
63D model Cabin ShopMarkoffIN\\nFree\\n- All Extended Uses2019-07-20\\n\\n\\nFBX \\n\\n[3D Model, architecture, building, commercial ...[https://www.turbosquid.com/Search/3d-models, ...[House, shop, store, stall, depot, trade, cabin.][https://www.turbosquid.com/Search/3D-Models/h...Small low poly shop cabin.
73D Viper sniper rifleYoung_Wizard\\nFree\\n- All Extended Uses2019-07-20\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n[3D Model, weaponry, weapons, firearms, rifle,...[https://www.turbosquid.com/Search/3d-models, ...[weapon, sci-fi, low-poly, game-ready, sniper-...[https://www.turbosquid.com/Search/3D-Models/w...Game ready model, low poly can used as a game ...
8Atom modelAbdo Ashraf\\nFree\\n- All Extended Uses2019-07-20[3D Model, science, chemistry, atom][https://www.turbosquid.com/Search/3d-models, ...[atom, science, chemistry, chemical, scientifi...[https://www.turbosquid.com/Search/3D-Models/a...3D model for the atom. The whole project was m...
93D FanAkumax Maxime\\nFree\\n- All Extended Uses2019-07-19\\n\\n\\nOBJ \\n\\n[3D Model, interior design, housewares, fan, b...[https://www.turbosquid.com/Search/3d-models, ...[Fan, ventilateur][https://www.turbosquid.com/Search/3D-Models/f...Vintage fan
10Pouf Stool 3D modelfolkvangr\\nFree\\n- All Extended Uses2019-07-19[][][leather, furniture, seat, decor, stool, other][https://www.turbosquid.com/Search/3D-Models/l...This model was created for an art challenge an...
11Indoor test 3D modelfolkvangr\\nFree\\n- All Extended Uses2019-07-19[][][indoors, room, furniture, seat, wood, chair, ...[https://www.turbosquid.com/Search/3D-Models/i...Indoors test scene made with Blender 2.8.It co...
123D model Apartment basic floor planfolkvangr\\nFree\\n- All Extended Uses2019-07-19[][][flat, apartment, household, building, kitchen...[https://www.turbosquid.com/Search/3D-Models/f...This is a simple architecture test scene made ...
133D Coffee CupOemThr\\nFree\\n- All Extended Uses2019-07-19\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n[3D Model, interior design, housewares, dining...[https://www.turbosquid.com/Search/3d-models, ...[coffee, dinner, breakfast, cup, plate, porcel...[https://www.turbosquid.com/Search/3D-Models/c...- Ceramic coffee cup with plate -This model co...
14Man HeadSculpt 3D modelVertici\\nFree\\n- All Extended Uses2019-07-19[][][Head, man, male, human][https://www.turbosquid.com/Search/3D-Models/h...Just a sculpting/texturing practice I did.
15blue low poly car modelAndres_R26\\nFree\\n- All Extended Uses2019-07-19\\n\\n\\nOther \\n\\n[][][low, poly, car, blue][https://www.turbosquid.com/Search/3D-Models/l...free 3d obj and Maya please give me. feedback,...
16Bath house architecture test 3D modelfolkvangr\\nFree\\n- All Extended Uses2019-07-18[][][column, architecture, marble, bedrock, roman,...[https://www.turbosquid.com/Search/3D-Models/c...This is a simple architecture test scene made ...
17Motorola Moto G7 Plus Blue And Red 3D modelES_3D\\nFree\\n- Editorial Uses AllowedExtended Uses May Nee...2019-07-18\\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n...[3D Model, technology, phone, cellphone, smart...[https://www.turbosquid.com/Search/3d-models, ...[3d, model, 3ds, max, Motorola, Moto, G7, Plus...[https://www.turbosquid.com/Search/3D-Models/3...Detailed High definition model Xiaomi Redmi 7A...
183D Lightingw1050263\\nFree\\n- All Extended Uses2019-07-18\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[#lighting, #light, bulb, #firelight][https://www.turbosquid.com/Search/3D-Models/%...
19office chair 3DEsraa abdelsalam2711\\nFree\\n- All Extended Uses2019-07-17\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFB...[3D Model, furnishings, seating, chair, office...[https://www.turbosquid.com/Search/3d-models, ...[#chair, #office, #modern, #3dsmax, #3dmodelin...[https://www.turbosquid.com/Search/3D-Models/%...**office chair** with vray material ready to p...
203D model Free garden urn planterwave design\\nFree\\n- All Extended Uses2019-07-17\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n[3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[Urn, Planter, Vase, Garden, pot, decor, Decor...[https://www.turbosquid.com/Search/3D-Models/u...* This Urn is a high quality polygonal model w...
213D model Tableshara_d\\nFree\\n- All Extended Uses2019-07-14\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n[3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[Table, Home, Decor, Kitchen, TableLegs, Unwra...[https://www.turbosquid.com/Search/3D-Models/t...OBJ, FBX, DAE files of an unwrapped 3D object ...
223D Metal ContainersAdrian Kulawik\\nFree\\n- All Extended Uses2019-07-17\\n\\n\\nOBJ 2019\\n\\n[3D Model, industrial, industrial container, c...[https://www.turbosquid.com/Search/3d-models, ...[metal, container, mars, kitbash, modular, pro...[https://www.turbosquid.com/Search/3D-Models/m...Metal Containers3D Model Ready for Games. PBR ...
233D coffee machinew1050263\\nFree\\n- All Extended Uses2019-07-17\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n...[3D Model, interior design, appliance, commerc...[https://www.turbosquid.com/Search/3d-models, ...[#coffee, #machine, #vending, machine][https://www.turbosquid.com/Search/3D-Models/%...Saved as 3ds max 2015 version file.As you work...
243D sinkw1050263\\nFree\\n- All Extended Uses2019-07-17\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n...[3D Model, interior design, fixtures, sink, ki...[https://www.turbosquid.com/Search/3d-models, ...[#sink, #Kitchen, #tap, #faucet, #bibcock][https://www.turbosquid.com/Search/3D-Models/%...#sink #Kitchen #tap #faucet #bibcock
253D model building 002vini3dmodels\\nFree\\n- All Extended Uses2019-07-15\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nOthe...[3D Model, architecture, building, residential...[https://www.turbosquid.com/Search/3d-models, ...[architecture, house, home, building, suburb, ...[https://www.turbosquid.com/Search/3D-Models/a...This is a simple house model. Except for the c...
26table 3D modelw1050263\\nFree\\n- All Extended Uses2019-07-15\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n...[3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[table, Kitchen, cooktable, Breakfast, Lunch, ...[https://www.turbosquid.com/Search/3D-Models/t...* Saved as 3ds max 2015 version file.Nowadays,...
273D CPU case fanDevmanModels\\nFree\\n- All Extended Uses2019-07-14\\n\\n\\nOther \\n\\n[3D Model, technology, computer equipment, com...[https://www.turbosquid.com/Search/3d-models, ...[3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler][https://www.turbosquid.com/Search/3D-Models/3...A CPU fan.Low poly and mid poly includedBlend ...
283D CanisterMarkoffIN\\nFree\\n- All Extended Uses2019-07-13\\n\\n\\nFBX \\n\\n[3D Model, industrial, industrial container, f...[https://www.turbosquid.com/Search/3d-models, ...[Canister, vessel, vial, container, fuel, green][https://www.turbosquid.com/Search/3D-Models/c...Low poly fuel canister.
293D Road SpikesMarkoffIN\\nFree\\n- All Extended Uses2019-07-13\\n\\n\\nFBX \\n\\n[3D Model, architecture, urban design, street ...[https://www.turbosquid.com/Search/3d-models, ...[Spikes, Road, Obstacle, Hazard][https://www.turbosquid.com/Search/3D-Models/s...Low poly road obstacle with texture.
....................................
4703D Tama ConsoleDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, table, console table][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Gallotti-and-Radice, Carlo-Co...[https://www.turbosquid.com/Search/3D-Models/c...Tama Console by Gallotti & Radice | 3d model p...
4713D model Tama CrédenceDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, sideboard][https://www.turbosquid.com/Search/3d-models, ...[Sideboards, Gallotti-and-Radice, Carlo-Colomb...[https://www.turbosquid.com/Search/3D-Models/s...Tama Crédence by Gallotti & Radice | 3d model ...
4723D Roly-Poly Chair modelDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n[3D Model, furnishings, seating, chair, side c...[https://www.turbosquid.com/Search/3d-models, ...[Chairs, Driade, Faye-Toogood, Plastic, Contem...[https://www.turbosquid.com/Search/3D-Models/c...Roly-Poly Chair by Driade | 3d model produced ...
473Calee Table Lamp 3DDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, South-Hill-Home, Brass, Painted...[https://www.turbosquid.com/Search/3D-Models/t...Calee Table Lamp by South Hill Home | 3d model...
4743D Song Coffee TablesDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, table, coffee table][https://www.turbosquid.com/Search/3d-models, ...[Coffee-tables, Minotti, Rodolfo-Dordoni, Natu...[https://www.turbosquid.com/Search/3D-Models/c...Song Coffee Tables by Minotti | 3d model produ...
475Neil Table Lamp 3D modelDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, -Ligne-Roset, Glas...[https://www.turbosquid.com/Search/3D-Models/t...Neil Table Lamp by Ligne Roset | 3d model prod...
4763D Melusine Table Lamp modelDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, Peter-Maly, Solid-...[https://www.turbosquid.com/Search/3D-Models/t...Melusine Table Lamp by Ligne Roset | 3d model ...
4773D Mategot TrolleyDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, industrial, tools, cart][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Occasional-tables, Gubi, Math...[https://www.turbosquid.com/Search/3D-Models/c...Mategot Trolley by Gubi | 3d model produced by...
478Inciucio Pendant Lamp 3D modelDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Gibas, Painted-metal, Contemp...[https://www.turbosquid.com/Search/3D-Models/p...Inciucio Pendant Lamp by Gibas | 3d model prod...
4793D model Riki TrolleyDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, kitchen cart][https://www.turbosquid.com/Search/3d-models, ...[Trays, Gallotti-and-Radice, Pierangelo-Gallot...[https://www.turbosquid.com/Search/3D-Models/t...Riki Trolley by Gallotti & Radice | 3d model p...
480Cancan Floor Light 3DDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Floor-lights, Ligne-Roset, Patrick-Zulauf, Co...[https://www.turbosquid.com/Search/3D-Models/f...Cancan Floor Light by Ligne Roset | 3d model p...
4813D Passe-Passe Coat Rack modelDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, rack, clothes rack, co...[https://www.turbosquid.com/Search/3d-models, ...[Cloth-stands, Ligne-Roset, Philippe-Nigro, So...[https://www.turbosquid.com/Search/3D-Models/c...Passe-Passe Coat Rack by Ligne Roset | 3d mode...
482Destructuree Pendant Lamp 3D modelDesignconnected\\nFree\\n- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak...[https://www.turbosquid.com/Search/3D-Models/p...Destructuree Pendant Lamp by Ligne Roset | 3d ...
483Sports bottle 3D modelbomi1337\\nFree\\n- All Extended Uses2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n...[3D Model, sports, exercise equipment, sports ...[https://www.turbosquid.com/Search/3d-models, ...[bottle, metal, sport, sports, drink, hydro, v...[https://www.turbosquid.com/Search/3D-Models/b...**********************************************...
4843D Lego_Bricksanubhav462\\nFree\\n- Editorial Uses AllowedExtended Uses May Nee...2019-03-17\\n\\n\\nFBX \\n\\n[3D Model, toys and games, toys, building toys...[https://www.turbosquid.com/Search/3d-models, ...[Lego, Bricks][https://www.turbosquid.com/Search/3D-Models/l...Lego Bricks Basic
4853D kids chair modelrayson278\\nFree\\n- All Extended Uses2019-03-17[3D Model, furnishings, seating, chair, childr...[https://www.turbosquid.com/Search/3d-models, ...[table, and, chair][https://www.turbosquid.com/Search/3D-Models/t...cinema 4d model of simple kids table and chair...
4863D Antique Oil LampDTG Amusements\\nFree\\n- All Extended Uses2019-03-16\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, oil, lamp][https://www.turbosquid.com/Search/3D-Models/l...A collection of antique oil lampsThis design i...
487Diwali Oil Lamp modelDTG Amusements\\nFree\\n- All Extended Uses2019-03-16\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Diwali, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...Diwali Oil LampThis design is not animated. 80...
4883D model Antique Oil LampDTG Amusements\\nFree\\n- All Extended Uses2019-03-16\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...Antique Oil LampThis design is not animated. 4...
4893D Casual Couple LowPoly Rigged (Free Sample) ...Denys Almaral\\nFree\\n- All Extended Uses2019-03-16\\n\\n\\nFBX 2014\\n\\n[3D Model, characters, people, man, cartoon man][https://www.turbosquid.com/Search/3d-models, ...[people, rigged, character, lowpoly, style, wo...[https://www.turbosquid.com/Search/3D-Models/p...LowPoly Style Couple, casual man and woman. Cr...
4903D model Simple PoufDesert Night\\nFree\\n- All Extended Uses2019-03-16[3D Model, furnishings, seating, chair, foot r...[https://www.turbosquid.com/Search/3d-models, ...[simple, pouf, chair, fabric, modern, 3d, model][https://www.turbosquid.com/Search/3D-Models/s...Simple PoufDimensions: L 450 x W 450 x H 350 m...
4913D model Classic Water FountainMarc Mons\\nFree\\n- All Extended Uses2019-03-15\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n[3D Model, architecture, site components, land...[https://www.turbosquid.com/Search/3d-models, ...[water, fountain, architecture, exterior, stre...[https://www.turbosquid.com/Search/3D-Models/w...Modeled with Autodesk Maya 2016 using polygons...
4923D Kitchen Chef's Knife modelsepandj\\nFree\\n- All Extended Uses2019-03-15\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n...[3D Model, interior design, housewares, kitche...[https://www.turbosquid.com/Search/3d-models, ...[knife, kitchen, sharp, still, wood, brass, bl...[https://www.turbosquid.com/Search/3D-Models/k...It's a simple chef's knife with a wooden handl...
4933D dirty steam punk knight for unityGAMEASS\\nFree\\n- All Extended Uses2019-03-15[3D Model, characters, people, military people...[https://www.turbosquid.com/Search/3d-models, ...[knight, unity, humanoid, rigged, character, s...[https://www.turbosquid.com/Search/3D-Models/k...humanoid rigged character for unity.this packa...
4943D Shotgun (Free) modelmaskedmole\\nFree\\n- All Extended Uses2019-03-15\\n\\n\\nFBX \\n\\n[3D Model, weaponry, weapons, firearms, shotgun][https://www.turbosquid.com/Search/3d-models, ...[shotgun, free, firearm][https://www.turbosquid.com/Search/3D-Models/s...Free shotgun ready to use for your game, fully...
495quin the mantis for unity REMAKE 3D modelGAMEASS\\nFree\\n- All Extended Uses2019-03-15[3D Model, characters, mythological creatures,...[https://www.turbosquid.com/Search/3d-models, ...[unity, RPG, monster, bug, creature, sci, fi, ...[https://www.turbosquid.com/Search/3D-Models/u...'CREATURE FOR UNITY' REMAKED!QUIN the mantis R...
4963D UrnIridesium\\nFree\\n- Editorial Uses Only2019-03-14\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n...[3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[urn, ashes, tomb, bottle, jar, ancient, ossua...[https://www.turbosquid.com/Search/3D-Models/u...This is an older looking Medieval or Victorian...
497Armchair - Fabric/Wood Materials 3D modelmatredo\\nFree\\n- All Extended Uses2019-03-14[3D Model, furnishings, seating, chair, lounge...[https://www.turbosquid.com/Search/3d-models, ...[chair, armchair, furniture, interior, design][https://www.turbosquid.com/Search/3D-Models/c...| MODEL DESCRIPTION |-This is a model of a mod...
498Low Poly Grass Pack 3DMoi Loy\\nFree\\n- All Extended Uses2019-03-14\\n\\n\\nFBX \\n\\n[3D Model, nature, plants, cartoon plant][https://www.turbosquid.com/Search/3d-models, ...[lowpoly, grass][https://www.turbosquid.com/Search/3D-Models/l...Pack Contains: 13 types of Grass(FBX),7 types ...
499Piano Bench modelIridesium\\nFree\\n- All Extended Uses2019-03-13\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n...[3D Model, furnishings, seating, bench, wooden...[https://www.turbosquid.com/Search/3d-models, ...[Piano, bench, grand, seat, stool, desk, side,...[https://www.turbosquid.com/Search/3D-Models/p...This is an older, worn, piano bench (or any ki...
\n", + "

500 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " name_model owner \\\n", + "0 3D Free Base Male Anatomy niyoo \n", + "1 3D model Minecraft Grass Block Render at Night \n", + "2 Diving Helmet 3D model NotJerd \n", + "3 3D Dominoes Render at Night \n", + "4 Prototyping Polygons 3D model HyperChromatica \n", + "5 3D counter and bar stools ESalem \n", + "6 3D model Cabin Shop MarkoffIN \n", + "7 3D Viper sniper rifle Young_Wizard \n", + "8 Atom model Abdo Ashraf \n", + "9 3D Fan Akumax Maxime \n", + "10 Pouf Stool 3D model folkvangr \n", + "11 Indoor test 3D model folkvangr \n", + "12 3D model Apartment basic floor plan folkvangr \n", + "13 3D Coffee Cup OemThr \n", + "14 Man HeadSculpt 3D model Vertici \n", + "15 blue low poly car model Andres_R26 \n", + "16 Bath house architecture test 3D model folkvangr \n", + "17 Motorola Moto G7 Plus Blue And Red 3D model ES_3D \n", + "18 3D Lighting w1050263 \n", + "19 office chair 3D Esraa abdelsalam2711 \n", + "20 3D model Free garden urn planter wave design \n", + "21 3D model Table shara_d \n", + "22 3D Metal Containers Adrian Kulawik \n", + "23 3D coffee machine w1050263 \n", + "24 3D sink w1050263 \n", + "25 3D model building 002 vini3dmodels \n", + "26 table 3D model w1050263 \n", + "27 3D CPU case fan DevmanModels \n", + "28 3D Canister MarkoffIN \n", + "29 3D Road Spikes MarkoffIN \n", + ".. ... ... \n", + "470 3D Tama Console Designconnected \n", + "471 3D model Tama Crédence Designconnected \n", + "472 3D Roly-Poly Chair model Designconnected \n", + "473 Calee Table Lamp 3D Designconnected \n", + "474 3D Song Coffee Tables Designconnected \n", + "475 Neil Table Lamp 3D model Designconnected \n", + "476 3D Melusine Table Lamp model Designconnected \n", + "477 3D Mategot Trolley Designconnected \n", + "478 Inciucio Pendant Lamp 3D model Designconnected \n", + "479 3D model Riki Trolley Designconnected \n", + "480 Cancan Floor Light 3D Designconnected \n", + "481 3D Passe-Passe Coat Rack model Designconnected \n", + "482 Destructuree Pendant Lamp 3D model Designconnected \n", + "483 Sports bottle 3D model bomi1337 \n", + "484 3D Lego_Bricks anubhav462 \n", + "485 3D kids chair model rayson278 \n", + "486 3D Antique Oil Lamp DTG Amusements \n", + "487 Diwali Oil Lamp model DTG Amusements \n", + "488 3D model Antique Oil Lamp DTG Amusements \n", + "489 3D Casual Couple LowPoly Rigged (Free Sample) ... Denys Almaral \n", + "490 3D model Simple Pouf Desert Night \n", + "491 3D model Classic Water Fountain Marc Mons \n", + "492 3D Kitchen Chef's Knife model sepandj \n", + "493 3D dirty steam punk knight for unity GAMEASS \n", + "494 3D Shotgun (Free) model maskedmole \n", + "495 quin the mantis for unity REMAKE 3D model GAMEASS \n", + "496 3D Urn Iridesium \n", + "497 Armchair - Fabric/Wood Materials 3D model matredo \n", + "498 Low Poly Grass Pack 3D Moi Loy \n", + "499 Piano Bench model Iridesium \n", + "\n", + " price license \\\n", + "0 \\nFree\\n - All Extended Uses \n", + "1 \\nFree\\n - Editorial Uses Only \n", + "2 \\nFree\\n - All Extended Uses \n", + "3 \\nFree\\n - All Extended Uses \n", + "4 \\nFree\\n - All Extended Uses \n", + "5 \\nFree\\n - All Extended Uses \n", + "6 \\nFree\\n - All Extended Uses \n", + "7 \\nFree\\n - All Extended Uses \n", + "8 \\nFree\\n - All Extended Uses \n", + "9 \\nFree\\n - All Extended Uses \n", + "10 \\nFree\\n - All Extended Uses \n", + "11 \\nFree\\n - All Extended Uses \n", + "12 \\nFree\\n - All Extended Uses \n", + "13 \\nFree\\n - All Extended Uses \n", + "14 \\nFree\\n - All Extended Uses \n", + "15 \\nFree\\n - All Extended Uses \n", + "16 \\nFree\\n - All Extended Uses \n", + "17 \\nFree\\n - Editorial Uses AllowedExtended Uses May Nee... \n", + "18 \\nFree\\n - All Extended Uses \n", + "19 \\nFree\\n - All Extended Uses \n", + "20 \\nFree\\n - All Extended Uses \n", + "21 \\nFree\\n - All Extended Uses \n", + "22 \\nFree\\n - All Extended Uses \n", + "23 \\nFree\\n - All Extended Uses \n", + "24 \\nFree\\n - All Extended Uses \n", + "25 \\nFree\\n - All Extended Uses \n", + "26 \\nFree\\n - All Extended Uses \n", + "27 \\nFree\\n - All Extended Uses \n", + "28 \\nFree\\n - All Extended Uses \n", + "29 \\nFree\\n - All Extended Uses \n", + ".. ... ... \n", + "470 \\nFree\\n - Editorial Uses Only \n", + "471 \\nFree\\n - Editorial Uses Only \n", + "472 \\nFree\\n - Editorial Uses Only \n", + "473 \\nFree\\n - Editorial Uses Only \n", + "474 \\nFree\\n - Editorial Uses Only \n", + "475 \\nFree\\n - Editorial Uses Only \n", + "476 \\nFree\\n - Editorial Uses Only \n", + "477 \\nFree\\n - Editorial Uses Only \n", + "478 \\nFree\\n - Editorial Uses Only \n", + "479 \\nFree\\n - Editorial Uses Only \n", + "480 \\nFree\\n - Editorial Uses Only \n", + "481 \\nFree\\n - Editorial Uses Only \n", + "482 \\nFree\\n - Editorial Uses Only \n", + "483 \\nFree\\n - All Extended Uses \n", + "484 \\nFree\\n - Editorial Uses AllowedExtended Uses May Nee... \n", + "485 \\nFree\\n - All Extended Uses \n", + "486 \\nFree\\n - All Extended Uses \n", + "487 \\nFree\\n - All Extended Uses \n", + "488 \\nFree\\n - All Extended Uses \n", + "489 \\nFree\\n - All Extended Uses \n", + "490 \\nFree\\n - All Extended Uses \n", + "491 \\nFree\\n - All Extended Uses \n", + "492 \\nFree\\n - All Extended Uses \n", + "493 \\nFree\\n - All Extended Uses \n", + "494 \\nFree\\n - All Extended Uses \n", + "495 \\nFree\\n - All Extended Uses \n", + "496 \\nFree\\n - Editorial Uses Only \n", + "497 \\nFree\\n - All Extended Uses \n", + "498 \\nFree\\n - All Extended Uses \n", + "499 \\nFree\\n - All Extended Uses \n", + "\n", + " published_date formats_available \\\n", + "0 2019-07-21 \\n\\n\\nOBJ \\n\\n \n", + "1 2019-07-21 \\n\\n\\nOBJ \\n\\n \n", + "2 2019-07-20 \\n\\n\\nOBJ \\n\\n \n", + "3 2019-07-20 \\n\\n\\nOBJ \\n\\n \n", + "4 2019-07-20 \\n\\n\\nFBX 1.0\\n\\n \n", + "5 2019-07-20 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n \n", + "6 2019-07-20 \\n\\n\\nFBX \\n\\n \n", + "7 2019-07-20 \\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n \n", + "8 2019-07-20 \n", + "9 2019-07-19 \\n\\n\\nOBJ \\n\\n \n", + "10 2019-07-19 \n", + "11 2019-07-19 \n", + "12 2019-07-19 \n", + "13 2019-07-19 \\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n \n", + "14 2019-07-19 \n", + "15 2019-07-19 \\n\\n\\nOther \\n\\n \n", + "16 2019-07-18 \n", + "17 2019-07-18 \\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n... \n", + "18 2019-07-18 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n... \n", + "19 2019-07-17 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFB... \n", + "20 2019-07-17 \\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n \n", + "21 2019-07-14 \\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n \n", + "22 2019-07-17 \\n\\n\\nOBJ 2019\\n\\n \n", + "23 2019-07-17 \\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n... \n", + "24 2019-07-17 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n... \n", + "25 2019-07-15 \\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nOthe... \n", + "26 2019-07-15 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n... \n", + "27 2019-07-14 \\n\\n\\nOther \\n\\n \n", + "28 2019-07-13 \\n\\n\\nFBX \\n\\n \n", + "29 2019-07-13 \\n\\n\\nFBX \\n\\n \n", + ".. ... ... \n", + "470 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "471 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "472 2019-03-18 \\n\\n\\nFBX \\n\\n \n", + "473 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "474 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "475 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "476 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "477 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "478 2019-03-18 \\n\\n\\nFBX \\n\\n \n", + "479 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "480 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "481 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "482 2019-03-18 \\n\\n\\nFBX \\n\\n \n", + "483 2019-03-18 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n... \n", + "484 2019-03-17 \\n\\n\\nFBX \\n\\n \n", + "485 2019-03-17 \n", + "486 2019-03-16 \\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ... \n", + "487 2019-03-16 \\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ... \n", + "488 2019-03-16 \\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ... \n", + "489 2019-03-16 \\n\\n\\nFBX 2014\\n\\n \n", + "490 2019-03-16 \n", + "491 2019-03-15 \\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n \n", + "492 2019-03-15 \\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n... \n", + "493 2019-03-15 \n", + "494 2019-03-15 \\n\\n\\nFBX \\n\\n \n", + "495 2019-03-15 \n", + "496 2019-03-14 \\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n... \n", + "497 2019-03-14 \n", + "498 2019-03-14 \\n\\n\\nFBX \\n\\n \n", + "499 2019-03-13 \\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n... \n", + "\n", + " list_categories \\\n", + "0 [3D Model, characters, people, man] \n", + "1 [3D Model, nature, plants, grasses, ornamental... \n", + "2 [3D Model, sports, outdoor sports, scuba, divi... \n", + "3 [3D Model, toys and games, games, dominos] \n", + "4 [3D Model, symbols] \n", + "5 [3D Model, furnishings, cupboard, showcase] \n", + "6 [3D Model, architecture, building, commercial ... \n", + "7 [3D Model, weaponry, weapons, firearms, rifle,... \n", + "8 [3D Model, science, chemistry, atom] \n", + "9 [3D Model, interior design, housewares, fan, b... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [3D Model, interior design, housewares, dining... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [3D Model, technology, phone, cellphone, smart... \n", + "18 [3D Model, interior design, fixtures, lighting... \n", + "19 [3D Model, furnishings, seating, chair, office... \n", + "20 [3D Model, interior design, housewares, genera... \n", + "21 [3D Model, furnishings, table] \n", + "22 [3D Model, industrial, industrial container, c... \n", + "23 [3D Model, interior design, appliance, commerc... \n", + "24 [3D Model, interior design, fixtures, sink, ki... \n", + "25 [3D Model, architecture, building, residential... \n", + "26 [3D Model, furnishings, table] \n", + "27 [3D Model, technology, computer equipment, com... \n", + "28 [3D Model, industrial, industrial container, f... \n", + "29 [3D Model, architecture, urban design, street ... \n", + ".. ... \n", + "470 [3D Model, furnishings, table, console table] \n", + "471 [3D Model, furnishings, sideboard] \n", + "472 [3D Model, furnishings, seating, chair, side c... \n", + "473 [3D Model, interior design, fixtures, lighting... \n", + "474 [3D Model, furnishings, table, coffee table] \n", + "475 [3D Model, interior design, fixtures, lighting... \n", + "476 [3D Model, interior design, fixtures, lighting... \n", + "477 [3D Model, industrial, tools, cart] \n", + "478 [3D Model, interior design, fixtures, lighting... \n", + "479 [3D Model, furnishings, kitchen cart] \n", + "480 [3D Model, interior design, fixtures, lighting... \n", + "481 [3D Model, furnishings, rack, clothes rack, co... \n", + "482 [3D Model, interior design, fixtures, lighting... \n", + "483 [3D Model, sports, exercise equipment, sports ... \n", + "484 [3D Model, toys and games, toys, building toys... \n", + "485 [3D Model, furnishings, seating, chair, childr... \n", + "486 [3D Model, interior design, fixtures, lighting... \n", + "487 [3D Model, interior design, fixtures, lighting... \n", + "488 [3D Model, interior design, fixtures, lighting... \n", + "489 [3D Model, characters, people, man, cartoon man] \n", + "490 [3D Model, furnishings, seating, chair, foot r... \n", + "491 [3D Model, architecture, site components, land... \n", + "492 [3D Model, interior design, housewares, kitche... \n", + "493 [3D Model, characters, people, military people... \n", + "494 [3D Model, weaponry, weapons, firearms, shotgun] \n", + "495 [3D Model, characters, mythological creatures,... \n", + "496 [3D Model, interior design, housewares, genera... \n", + "497 [3D Model, furnishings, seating, chair, lounge... \n", + "498 [3D Model, nature, plants, cartoon plant] \n", + "499 [3D Model, furnishings, seating, bench, wooden... \n", + "\n", + " links_categories \\\n", + "0 [https://www.turbosquid.com/Search/3d-models, ... \n", + "1 [https://www.turbosquid.com/Search/3d-models, ... \n", + "2 [https://www.turbosquid.com/Search/3d-models, ... \n", + "3 [https://www.turbosquid.com/Search/3d-models, ... \n", + "4 [https://www.turbosquid.com/Search/3d-models, ... \n", + "5 [https://www.turbosquid.com/Search/3d-models, ... \n", + "6 [https://www.turbosquid.com/Search/3d-models, ... \n", + "7 [https://www.turbosquid.com/Search/3d-models, ... \n", + "8 [https://www.turbosquid.com/Search/3d-models, ... \n", + "9 [https://www.turbosquid.com/Search/3d-models, ... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [https://www.turbosquid.com/Search/3d-models, ... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [https://www.turbosquid.com/Search/3d-models, ... \n", + "18 [https://www.turbosquid.com/Search/3d-models, ... \n", + "19 [https://www.turbosquid.com/Search/3d-models, ... \n", + "20 [https://www.turbosquid.com/Search/3d-models, ... \n", + "21 [https://www.turbosquid.com/Search/3d-models, ... \n", + "22 [https://www.turbosquid.com/Search/3d-models, ... \n", + "23 [https://www.turbosquid.com/Search/3d-models, ... \n", + "24 [https://www.turbosquid.com/Search/3d-models, ... \n", + "25 [https://www.turbosquid.com/Search/3d-models, ... \n", + "26 [https://www.turbosquid.com/Search/3d-models, ... \n", + "27 [https://www.turbosquid.com/Search/3d-models, ... \n", + "28 [https://www.turbosquid.com/Search/3d-models, ... \n", + "29 [https://www.turbosquid.com/Search/3d-models, ... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3d-models, ... \n", + "471 [https://www.turbosquid.com/Search/3d-models, ... \n", + "472 [https://www.turbosquid.com/Search/3d-models, ... \n", + "473 [https://www.turbosquid.com/Search/3d-models, ... \n", + "474 [https://www.turbosquid.com/Search/3d-models, ... \n", + "475 [https://www.turbosquid.com/Search/3d-models, ... \n", + "476 [https://www.turbosquid.com/Search/3d-models, ... \n", + "477 [https://www.turbosquid.com/Search/3d-models, ... \n", + "478 [https://www.turbosquid.com/Search/3d-models, ... \n", + "479 [https://www.turbosquid.com/Search/3d-models, ... \n", + "480 [https://www.turbosquid.com/Search/3d-models, ... \n", + "481 [https://www.turbosquid.com/Search/3d-models, ... \n", + "482 [https://www.turbosquid.com/Search/3d-models, ... \n", + "483 [https://www.turbosquid.com/Search/3d-models, ... \n", + "484 [https://www.turbosquid.com/Search/3d-models, ... \n", + "485 [https://www.turbosquid.com/Search/3d-models, ... \n", + "486 [https://www.turbosquid.com/Search/3d-models, ... \n", + "487 [https://www.turbosquid.com/Search/3d-models, ... \n", + "488 [https://www.turbosquid.com/Search/3d-models, ... \n", + "489 [https://www.turbosquid.com/Search/3d-models, ... \n", + "490 [https://www.turbosquid.com/Search/3d-models, ... \n", + "491 [https://www.turbosquid.com/Search/3d-models, ... \n", + "492 [https://www.turbosquid.com/Search/3d-models, ... \n", + "493 [https://www.turbosquid.com/Search/3d-models, ... \n", + "494 [https://www.turbosquid.com/Search/3d-models, ... \n", + "495 [https://www.turbosquid.com/Search/3d-models, ... \n", + "496 [https://www.turbosquid.com/Search/3d-models, ... \n", + "497 [https://www.turbosquid.com/Search/3d-models, ... \n", + "498 [https://www.turbosquid.com/Search/3d-models, ... \n", + "499 [https://www.turbosquid.com/Search/3d-models, ... \n", + "\n", + " list_tags \\\n", + "0 [characters, man, male, human, zbrush, ztl, ob... \n", + "1 [minecraft, grass, block, cube] \n", + "2 [Helmet, Undersea] \n", + "3 [domino, dominoes, black, white, tile] \n", + "4 [primitives, prototyping, blender, unity, geom... \n", + "5 [counter, and, bar, stools, Are, same, specifi... \n", + "6 [House, shop, store, stall, depot, trade, cabin.] \n", + "7 [weapon, sci-fi, low-poly, game-ready, sniper-... \n", + "8 [atom, science, chemistry, chemical, scientifi... \n", + "9 [Fan, ventilateur] \n", + "10 [leather, furniture, seat, decor, stool, other] \n", + "11 [indoors, room, furniture, seat, wood, chair, ... \n", + "12 [flat, apartment, household, building, kitchen... \n", + "13 [coffee, dinner, breakfast, cup, plate, porcel... \n", + "14 [Head, man, male, human] \n", + "15 [low, poly, car, blue] \n", + "16 [column, architecture, marble, bedrock, roman,... \n", + "17 [3d, model, 3ds, max, Motorola, Moto, G7, Plus... \n", + "18 [#lighting, #light, bulb, #firelight] \n", + "19 [#chair, #office, #modern, #3dsmax, #3dmodelin... \n", + "20 [Urn, Planter, Vase, Garden, pot, decor, Decor... \n", + "21 [Table, Home, Decor, Kitchen, TableLegs, Unwra... \n", + "22 [metal, container, mars, kitbash, modular, pro... \n", + "23 [#coffee, #machine, #vending, machine] \n", + "24 [#sink, #Kitchen, #tap, #faucet, #bibcock] \n", + "25 [architecture, house, home, building, suburb, ... \n", + "26 [table, Kitchen, cooktable, Breakfast, Lunch, ... \n", + "27 [3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler] \n", + "28 [Canister, vessel, vial, container, fuel, green] \n", + "29 [Spikes, Road, Obstacle, Hazard] \n", + ".. ... \n", + "470 [Console-tables, Gallotti-and-Radice, Carlo-Co... \n", + "471 [Sideboards, Gallotti-and-Radice, Carlo-Colomb... \n", + "472 [Chairs, Driade, Faye-Toogood, Plastic, Contem... \n", + "473 [Table-lights, South-Hill-Home, Brass, Painted... \n", + "474 [Coffee-tables, Minotti, Rodolfo-Dordoni, Natu... \n", + "475 [Table-lights, Ligne-Roset, -Ligne-Roset, Glas... \n", + "476 [Table-lights, Ligne-Roset, Peter-Maly, Solid-... \n", + "477 [Console-tables, Occasional-tables, Gubi, Math... \n", + "478 [Pendant-lights, Gibas, Painted-metal, Contemp... \n", + "479 [Trays, Gallotti-and-Radice, Pierangelo-Gallot... \n", + "480 [Floor-lights, Ligne-Roset, Patrick-Zulauf, Co... \n", + "481 [Cloth-stands, Ligne-Roset, Philippe-Nigro, So... \n", + "482 [Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak... \n", + "483 [bottle, metal, sport, sports, drink, hydro, v... \n", + "484 [Lego, Bricks] \n", + "485 [table, and, chair] \n", + "486 [Lamp, oil, lamp] \n", + "487 [Lamp, Diwali, Oil, Lamp] \n", + "488 [Lamp, Oil, Lamp] \n", + "489 [people, rigged, character, lowpoly, style, wo... \n", + "490 [simple, pouf, chair, fabric, modern, 3d, model] \n", + "491 [water, fountain, architecture, exterior, stre... \n", + "492 [knife, kitchen, sharp, still, wood, brass, bl... \n", + "493 [knight, unity, humanoid, rigged, character, s... \n", + "494 [shotgun, free, firearm] \n", + "495 [unity, RPG, monster, bug, creature, sci, fi, ... \n", + "496 [urn, ashes, tomb, bottle, jar, ancient, ossua... \n", + "497 [chair, armchair, furniture, interior, design] \n", + "498 [lowpoly, grass] \n", + "499 [Piano, bench, grand, seat, stool, desk, side,... \n", + "\n", + " links_tags \\\n", + "0 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "1 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "2 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "3 [https://www.turbosquid.com/Search/3D-Models/d... \n", + "4 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "5 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "6 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "7 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "8 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "9 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "10 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "11 [https://www.turbosquid.com/Search/3D-Models/i... \n", + "12 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "13 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "14 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "15 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "16 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "17 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "18 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "19 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "20 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "21 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "22 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "23 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "24 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "25 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "26 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "27 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "28 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "29 [https://www.turbosquid.com/Search/3D-Models/s... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "471 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "472 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "473 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "474 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "475 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "476 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "477 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "478 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "479 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "480 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "481 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "482 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "483 [https://www.turbosquid.com/Search/3D-Models/b... \n", + "484 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "485 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "486 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "487 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "488 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "489 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "490 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "491 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "492 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "493 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "494 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "495 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "496 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "497 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "498 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "499 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "\n", + " description \n", + "0 Free model. You can use for base anatomy/propo... \n", + "1 \n", + "2 This is a helmet I made.CC0 License \n", + "3 Models of 5 different dominoes.Polygons/Vertic... \n", + "4 I was starting work on a new game in unity and... \n", + "5 counter and bar stools Are the same specificat... \n", + "6 Small low poly shop cabin. \n", + "7 Game ready model, low poly can used as a game ... \n", + "8 3D model for the atom. The whole project was m... \n", + "9 Vintage fan \n", + "10 This model was created for an art challenge an... \n", + "11 Indoors test scene made with Blender 2.8.It co... \n", + "12 This is a simple architecture test scene made ... \n", + "13 - Ceramic coffee cup with plate -This model co... \n", + "14 Just a sculpting/texturing practice I did. \n", + "15 free 3d obj and Maya please give me. feedback,... \n", + "16 This is a simple architecture test scene made ... \n", + "17 Detailed High definition model Xiaomi Redmi 7A... \n", + "18 \n", + "19 **office chair** with vray material ready to p... \n", + "20 * This Urn is a high quality polygonal model w... \n", + "21 OBJ, FBX, DAE files of an unwrapped 3D object ... \n", + "22 Metal Containers3D Model Ready for Games. PBR ... \n", + "23 Saved as 3ds max 2015 version file.As you work... \n", + "24 #sink #Kitchen #tap #faucet #bibcock \n", + "25 This is a simple house model. Except for the c... \n", + "26 * Saved as 3ds max 2015 version file.Nowadays,... \n", + "27 A CPU fan.Low poly and mid poly includedBlend ... \n", + "28 Low poly fuel canister. \n", + "29 Low poly road obstacle with texture. \n", + ".. ... \n", + "470 Tama Console by Gallotti & Radice | 3d model p... \n", + "471 Tama Crédence by Gallotti & Radice | 3d model ... \n", + "472 Roly-Poly Chair by Driade | 3d model produced ... \n", + "473 Calee Table Lamp by South Hill Home | 3d model... \n", + "474 Song Coffee Tables by Minotti | 3d model produ... \n", + "475 Neil Table Lamp by Ligne Roset | 3d model prod... \n", + "476 Melusine Table Lamp by Ligne Roset | 3d model ... \n", + "477 Mategot Trolley by Gubi | 3d model produced by... \n", + "478 Inciucio Pendant Lamp by Gibas | 3d model prod... \n", + "479 Riki Trolley by Gallotti & Radice | 3d model p... \n", + "480 Cancan Floor Light by Ligne Roset | 3d model p... \n", + "481 Passe-Passe Coat Rack by Ligne Roset | 3d mode... \n", + "482 Destructuree Pendant Lamp by Ligne Roset | 3d ... \n", + "483 **********************************************... \n", + "484 Lego Bricks Basic \n", + "485 cinema 4d model of simple kids table and chair... \n", + "486 A collection of antique oil lampsThis design i... \n", + "487 Diwali Oil LampThis design is not animated. 80... \n", + "488 Antique Oil LampThis design is not animated. 4... \n", + "489 LowPoly Style Couple, casual man and woman. Cr... \n", + "490 Simple PoufDimensions: L 450 x W 450 x H 350 m... \n", + "491 Modeled with Autodesk Maya 2016 using polygons... \n", + "492 It's a simple chef's knife with a wooden handl... \n", + "493 humanoid rigged character for unity.this packa... \n", + "494 Free shotgun ready to use for your game, fully... \n", + "495 'CREATURE FOR UNITY' REMAKED!QUIN the mantis R... \n", + "496 This is an older looking Medieval or Victorian... \n", + "497 | MODEL DESCRIPTION |-This is a model of a mod... \n", + "498 Pack Contains: 13 types of Grass(FBX),7 types ... \n", + "499 This is an older, worn, piano bench (or any ki... \n", + "\n", + "[500 rows x 11 columns]" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_scraping = pd.DataFrame(rows_dataset)\n", + "dataset_scraping.columns = [['name_model','owner','price','license','published_date','formats_available','list_categories','links_categories','list_tags','links_tags','description']]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Por el momento he realizado el scraping a 10 páginas del sitio, con cien modelos, lo que representa 1000 requests. He mantenido este número por la posibilidad de que bloquen la dirección IP, sin embargo puede modificarse el parametro del primer Spider y tratar de obtener los url de todos los modelos disponibles." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [], + "source": [ + "# Guardamos en archivo csv los resultados obtenidos.\n", + "dataset_scraping.to_csv('dataset_scraping.csv',index=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Limpieza de datos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Es necesario aplicar una limpieza a los datos." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Revisamos la cantida de valores vacios" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "name_model 0\n", + "owner 0\n", + "price 0\n", + "license 0\n", + "published_date 0\n", + "formats_available 0\n", + "list_categories 0\n", + "links_categories 0\n", + "list_tags 0\n", + "links_tags 0\n", + "description 0\n", + "dtype: int64" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "missing_values_scraping = dataset_scraping.isna()\n", + "missing_values_scraping = missing_values_scraping.sum()\n", + "missing_values_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna name_model" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "En este caso podemos darle un formato más limpio a los nombres (capitalize) y eliminar palabras que son innecesarias." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "With the name we now that all are 3D models, so we remove this word for all the names." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "MultiIndex(levels=[['description', 'formats_available', 'license', 'links_categories', 'links_tags', 'list_categories', 'list_tags', 'name_model', 'owner', 'price', 'published_date']],\n", + " codes=[[7, 8, 9, 2, 10, 1, 5, 3, 6, 4, 0]])" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_scraping.columns" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Here I had a problem because I got a multiindex dataframe, so I had to apply some extra steps each time I wanted to modify a column." + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": {}, + "outputs": [], + "source": [ + "nombres = dataset_scraping['name_model']\n", + "nombres = [nombres.loc[[i]].values[0][0] for i in range(len(nombres))]\n", + "nombres = [nombre.replace('3D ','').replace('model ','').replace('3D','').replace('model','').capitalize() for nombre in nombres]\n", + "dataset_scraping['name_model'] = nombres" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna price." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Primero nos damos una idea de la variedad de precios en esta columna." + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": {}, + "outputs": [], + "source": [ + "prices = dataset_scraping['price']\n", + "prices = [prices.loc[[i]].values[0][0] for i in range(len(prices))]" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Parece que dentro de los primeros 1000 modelos todos son gratuitos, por lo que solo limpiamos un poco el string." + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_modelownerpricelicensepublished_dateformats_availablelist_categorieslinks_categorieslist_tagslinks_tagsdescription
0Free base male anatomyniyooFree- All Extended Uses2019-07-21\\n\\n\\nOBJ \\n\\n[3D Model, characters, people, man][https://www.turbosquid.com/Search/3d-models, ...[characters, man, male, human, zbrush, ztl, ob...[https://www.turbosquid.com/Search/3D-Models/c...Free model. You can use for base anatomy/propo...
1Minecraft grass blockRender at NightFree- Editorial Uses Only2019-07-21\\n\\n\\nOBJ \\n\\n[3D Model, nature, plants, grasses, ornamental...[https://www.turbosquid.com/Search/3d-models, ...[minecraft, grass, block, cube][https://www.turbosquid.com/Search/3D-Models/m...
2Diving helmetNotJerdFree- All Extended Uses2019-07-20\\n\\n\\nOBJ \\n\\n[3D Model, sports, outdoor sports, scuba, divi...[https://www.turbosquid.com/Search/3d-models, ...[Helmet, Undersea][https://www.turbosquid.com/Search/3D-Models/h...This is a helmet I made.CC0 License
3DominoesRender at NightFree- All Extended Uses2019-07-20\\n\\n\\nOBJ \\n\\n[3D Model, toys and games, games, dominos][https://www.turbosquid.com/Search/3d-models, ...[domino, dominoes, black, white, tile][https://www.turbosquid.com/Search/3D-Models/d...Models of 5 different dominoes.Polygons/Vertic...
4Prototyping polygonsHyperChromaticaFree- All Extended Uses2019-07-20\\n\\n\\nFBX 1.0\\n\\n[3D Model, symbols][https://www.turbosquid.com/Search/3d-models, ...[primitives, prototyping, blender, unity, geom...[https://www.turbosquid.com/Search/3D-Models/p...I was starting work on a new game in unity and...
5Counter and bar stoolsESalemFree- All Extended Uses2019-07-20\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n[3D Model, furnishings, cupboard, showcase][https://www.turbosquid.com/Search/3d-models, ...[counter, and, bar, stools, Are, same, specifi...[https://www.turbosquid.com/Search/3D-Models/c...counter and bar stools Are the same specificat...
6Cabin shopMarkoffINFree- All Extended Uses2019-07-20\\n\\n\\nFBX \\n\\n[3D Model, architecture, building, commercial ...[https://www.turbosquid.com/Search/3d-models, ...[House, shop, store, stall, depot, trade, cabin.][https://www.turbosquid.com/Search/3D-Models/h...Small low poly shop cabin.
7Viper sniper rifleYoung_WizardFree- All Extended Uses2019-07-20\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n[3D Model, weaponry, weapons, firearms, rifle,...[https://www.turbosquid.com/Search/3d-models, ...[weapon, sci-fi, low-poly, game-ready, sniper-...[https://www.turbosquid.com/Search/3D-Models/w...Game ready model, low poly can used as a game ...
8AtomAbdo AshrafFree- All Extended Uses2019-07-20[3D Model, science, chemistry, atom][https://www.turbosquid.com/Search/3d-models, ...[atom, science, chemistry, chemical, scientifi...[https://www.turbosquid.com/Search/3D-Models/a...3D model for the atom. The whole project was m...
9FanAkumax MaximeFree- All Extended Uses2019-07-19\\n\\n\\nOBJ \\n\\n[3D Model, interior design, housewares, fan, b...[https://www.turbosquid.com/Search/3d-models, ...[Fan, ventilateur][https://www.turbosquid.com/Search/3D-Models/f...Vintage fan
10Pouf stoolfolkvangrFree- All Extended Uses2019-07-19[][][leather, furniture, seat, decor, stool, other][https://www.turbosquid.com/Search/3D-Models/l...This model was created for an art challenge an...
11Indoor testfolkvangrFree- All Extended Uses2019-07-19[][][indoors, room, furniture, seat, wood, chair, ...[https://www.turbosquid.com/Search/3D-Models/i...Indoors test scene made with Blender 2.8.It co...
12Apartment basic floor planfolkvangrFree- All Extended Uses2019-07-19[][][flat, apartment, household, building, kitchen...[https://www.turbosquid.com/Search/3D-Models/f...This is a simple architecture test scene made ...
13Coffee cupOemThrFree- All Extended Uses2019-07-19\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n[3D Model, interior design, housewares, dining...[https://www.turbosquid.com/Search/3d-models, ...[coffee, dinner, breakfast, cup, plate, porcel...[https://www.turbosquid.com/Search/3D-Models/c...- Ceramic coffee cup with plate -This model co...
14Man headsculptVerticiFree- All Extended Uses2019-07-19[][][Head, man, male, human][https://www.turbosquid.com/Search/3D-Models/h...Just a sculpting/texturing practice I did.
15Blue low poly carAndres_R26Free- All Extended Uses2019-07-19\\n\\n\\nOther \\n\\n[][][low, poly, car, blue][https://www.turbosquid.com/Search/3D-Models/l...free 3d obj and Maya please give me. feedback,...
16Bath house architecture testfolkvangrFree- All Extended Uses2019-07-18[][][column, architecture, marble, bedrock, roman,...[https://www.turbosquid.com/Search/3D-Models/c...This is a simple architecture test scene made ...
17Motorola moto g7 plus blue and redES_3DFree- Editorial Uses AllowedExtended Uses May Nee...2019-07-18\\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n...[3D Model, technology, phone, cellphone, smart...[https://www.turbosquid.com/Search/3d-models, ...[3d, model, 3ds, max, Motorola, Moto, G7, Plus...[https://www.turbosquid.com/Search/3D-Models/3...Detailed High definition model Xiaomi Redmi 7A...
18Lightingw1050263Free- All Extended Uses2019-07-18\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[#lighting, #light, bulb, #firelight][https://www.turbosquid.com/Search/3D-Models/%...
19Office chairEsraa abdelsalam2711Free- All Extended Uses2019-07-17\\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFB...[3D Model, furnishings, seating, chair, office...[https://www.turbosquid.com/Search/3d-models, ...[#chair, #office, #modern, #3dsmax, #3dmodelin...[https://www.turbosquid.com/Search/3D-Models/%...**office chair** with vray material ready to p...
20Free garden urn planterwave designFree- All Extended Uses2019-07-17\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n[3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[Urn, Planter, Vase, Garden, pot, decor, Decor...[https://www.turbosquid.com/Search/3D-Models/u...* This Urn is a high quality polygonal model w...
21Tableshara_dFree- All Extended Uses2019-07-14\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n[3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[Table, Home, Decor, Kitchen, TableLegs, Unwra...[https://www.turbosquid.com/Search/3D-Models/t...OBJ, FBX, DAE files of an unwrapped 3D object ...
22Metal containersAdrian KulawikFree- All Extended Uses2019-07-17\\n\\n\\nOBJ 2019\\n\\n[3D Model, industrial, industrial container, c...[https://www.turbosquid.com/Search/3d-models, ...[metal, container, mars, kitbash, modular, pro...[https://www.turbosquid.com/Search/3D-Models/m...Metal Containers3D Model Ready for Games. PBR ...
23Coffee machinew1050263Free- All Extended Uses2019-07-17\\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n...[3D Model, interior design, appliance, commerc...[https://www.turbosquid.com/Search/3d-models, ...[#coffee, #machine, #vending, machine][https://www.turbosquid.com/Search/3D-Models/%...Saved as 3ds max 2015 version file.As you work...
24Sinkw1050263Free- All Extended Uses2019-07-17\\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n...[3D Model, interior design, fixtures, sink, ki...[https://www.turbosquid.com/Search/3d-models, ...[#sink, #Kitchen, #tap, #faucet, #bibcock][https://www.turbosquid.com/Search/3D-Models/%...#sink #Kitchen #tap #faucet #bibcock
25Building 002vini3dmodelsFree- All Extended Uses2019-07-15\\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nOthe...[3D Model, architecture, building, residential...[https://www.turbosquid.com/Search/3d-models, ...[architecture, house, home, building, suburb, ...[https://www.turbosquid.com/Search/3D-Models/a...This is a simple house model. Except for the c...
26Tablew1050263Free- All Extended Uses2019-07-15\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n...[3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[table, Kitchen, cooktable, Breakfast, Lunch, ...[https://www.turbosquid.com/Search/3D-Models/t...* Saved as 3ds max 2015 version file.Nowadays,...
27Cpu case fanDevmanModelsFree- All Extended Uses2019-07-14\\n\\n\\nOther \\n\\n[3D Model, technology, computer equipment, com...[https://www.turbosquid.com/Search/3d-models, ...[3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler][https://www.turbosquid.com/Search/3D-Models/3...A CPU fan.Low poly and mid poly includedBlend ...
28CanisterMarkoffINFree- All Extended Uses2019-07-13\\n\\n\\nFBX \\n\\n[3D Model, industrial, industrial container, f...[https://www.turbosquid.com/Search/3d-models, ...[Canister, vessel, vial, container, fuel, green][https://www.turbosquid.com/Search/3D-Models/c...Low poly fuel canister.
29Road spikesMarkoffINFree- All Extended Uses2019-07-13\\n\\n\\nFBX \\n\\n[3D Model, architecture, urban design, street ...[https://www.turbosquid.com/Search/3d-models, ...[Spikes, Road, Obstacle, Hazard][https://www.turbosquid.com/Search/3D-Models/s...Low poly road obstacle with texture.
....................................
470Tama consoleDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, table, console table][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Gallotti-and-Radice, Carlo-Co...[https://www.turbosquid.com/Search/3D-Models/c...Tama Console by Gallotti & Radice | 3d model p...
471Tama crédenceDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, sideboard][https://www.turbosquid.com/Search/3d-models, ...[Sideboards, Gallotti-and-Radice, Carlo-Colomb...[https://www.turbosquid.com/Search/3D-Models/s...Tama Crédence by Gallotti & Radice | 3d model ...
472Roly-poly chairDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n[3D Model, furnishings, seating, chair, side c...[https://www.turbosquid.com/Search/3d-models, ...[Chairs, Driade, Faye-Toogood, Plastic, Contem...[https://www.turbosquid.com/Search/3D-Models/c...Roly-Poly Chair by Driade | 3d model produced ...
473Calee table lampDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, South-Hill-Home, Brass, Painted...[https://www.turbosquid.com/Search/3D-Models/t...Calee Table Lamp by South Hill Home | 3d model...
474Song coffee tablesDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, table, coffee table][https://www.turbosquid.com/Search/3d-models, ...[Coffee-tables, Minotti, Rodolfo-Dordoni, Natu...[https://www.turbosquid.com/Search/3D-Models/c...Song Coffee Tables by Minotti | 3d model produ...
475Neil table lampDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, -Ligne-Roset, Glas...[https://www.turbosquid.com/Search/3D-Models/t...Neil Table Lamp by Ligne Roset | 3d model prod...
476Melusine table lampDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, Peter-Maly, Solid-...[https://www.turbosquid.com/Search/3D-Models/t...Melusine Table Lamp by Ligne Roset | 3d model ...
477Mategot trolleyDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, industrial, tools, cart][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Occasional-tables, Gubi, Math...[https://www.turbosquid.com/Search/3D-Models/c...Mategot Trolley by Gubi | 3d model produced by...
478Inciucio pendant lampDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Gibas, Painted-metal, Contemp...[https://www.turbosquid.com/Search/3D-Models/p...Inciucio Pendant Lamp by Gibas | 3d model prod...
479Riki trolleyDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, kitchen cart][https://www.turbosquid.com/Search/3d-models, ...[Trays, Gallotti-and-Radice, Pierangelo-Gallot...[https://www.turbosquid.com/Search/3D-Models/t...Riki Trolley by Gallotti & Radice | 3d model p...
480Cancan floor lightDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Floor-lights, Ligne-Roset, Patrick-Zulauf, Co...[https://www.turbosquid.com/Search/3D-Models/f...Cancan Floor Light by Ligne Roset | 3d model p...
481Passe-passe coat rackDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n[3D Model, furnishings, rack, clothes rack, co...[https://www.turbosquid.com/Search/3d-models, ...[Cloth-stands, Ligne-Roset, Philippe-Nigro, So...[https://www.turbosquid.com/Search/3D-Models/c...Passe-Passe Coat Rack by Ligne Roset | 3d mode...
482Destructuree pendant lampDesignconnectedFree- Editorial Uses Only2019-03-18\\n\\n\\nFBX \\n\\n[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak...[https://www.turbosquid.com/Search/3D-Models/p...Destructuree Pendant Lamp by Ligne Roset | 3d ...
483Sports bottlebomi1337Free- All Extended Uses2019-03-18\\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n...[3D Model, sports, exercise equipment, sports ...[https://www.turbosquid.com/Search/3d-models, ...[bottle, metal, sport, sports, drink, hydro, v...[https://www.turbosquid.com/Search/3D-Models/b...**********************************************...
484Lego_bricksanubhav462Free- Editorial Uses AllowedExtended Uses May Nee...2019-03-17\\n\\n\\nFBX \\n\\n[3D Model, toys and games, toys, building toys...[https://www.turbosquid.com/Search/3d-models, ...[Lego, Bricks][https://www.turbosquid.com/Search/3D-Models/l...Lego Bricks Basic
485Kids chairrayson278Free- All Extended Uses2019-03-17[3D Model, furnishings, seating, chair, childr...[https://www.turbosquid.com/Search/3d-models, ...[table, and, chair][https://www.turbosquid.com/Search/3D-Models/t...cinema 4d model of simple kids table and chair...
486Antique oil lampDTG AmusementsFree- All Extended Uses2019-03-16\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, oil, lamp][https://www.turbosquid.com/Search/3D-Models/l...A collection of antique oil lampsThis design i...
487Diwali oil lampDTG AmusementsFree- All Extended Uses2019-03-16\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Diwali, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...Diwali Oil LampThis design is not animated. 80...
488Antique oil lampDTG AmusementsFree- All Extended Uses2019-03-16\\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...Antique Oil LampThis design is not animated. 4...
489Casual couple lowpoly rigged (free sample)Denys AlmaralFree- All Extended Uses2019-03-16\\n\\n\\nFBX 2014\\n\\n[3D Model, characters, people, man, cartoon man][https://www.turbosquid.com/Search/3d-models, ...[people, rigged, character, lowpoly, style, wo...[https://www.turbosquid.com/Search/3D-Models/p...LowPoly Style Couple, casual man and woman. Cr...
490Simple poufDesert NightFree- All Extended Uses2019-03-16[3D Model, furnishings, seating, chair, foot r...[https://www.turbosquid.com/Search/3d-models, ...[simple, pouf, chair, fabric, modern, 3d, model][https://www.turbosquid.com/Search/3D-Models/s...Simple PoufDimensions: L 450 x W 450 x H 350 m...
491Classic water fountainMarc MonsFree- All Extended Uses2019-03-15\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n[3D Model, architecture, site components, land...[https://www.turbosquid.com/Search/3d-models, ...[water, fountain, architecture, exterior, stre...[https://www.turbosquid.com/Search/3D-Models/w...Modeled with Autodesk Maya 2016 using polygons...
492Kitchen chef's knifesepandjFree- All Extended Uses2019-03-15\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n...[3D Model, interior design, housewares, kitche...[https://www.turbosquid.com/Search/3d-models, ...[knife, kitchen, sharp, still, wood, brass, bl...[https://www.turbosquid.com/Search/3D-Models/k...It's a simple chef's knife with a wooden handl...
493Dirty steam punk knight for unityGAMEASSFree- All Extended Uses2019-03-15[3D Model, characters, people, military people...[https://www.turbosquid.com/Search/3d-models, ...[knight, unity, humanoid, rigged, character, s...[https://www.turbosquid.com/Search/3D-Models/k...humanoid rigged character for unity.this packa...
494Shotgun (free)maskedmoleFree- All Extended Uses2019-03-15\\n\\n\\nFBX \\n\\n[3D Model, weaponry, weapons, firearms, shotgun][https://www.turbosquid.com/Search/3d-models, ...[shotgun, free, firearm][https://www.turbosquid.com/Search/3D-Models/s...Free shotgun ready to use for your game, fully...
495Quin the mantis for unity remakeGAMEASSFree- All Extended Uses2019-03-15[3D Model, characters, mythological creatures,...[https://www.turbosquid.com/Search/3d-models, ...[unity, RPG, monster, bug, creature, sci, fi, ...[https://www.turbosquid.com/Search/3D-Models/u...'CREATURE FOR UNITY' REMAKED!QUIN the mantis R...
496UrnIridesiumFree- Editorial Uses Only2019-03-14\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n...[3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[urn, ashes, tomb, bottle, jar, ancient, ossua...[https://www.turbosquid.com/Search/3D-Models/u...This is an older looking Medieval or Victorian...
497Armchair - fabric/wood materialsmatredoFree- All Extended Uses2019-03-14[3D Model, furnishings, seating, chair, lounge...[https://www.turbosquid.com/Search/3d-models, ...[chair, armchair, furniture, interior, design][https://www.turbosquid.com/Search/3D-Models/c...| MODEL DESCRIPTION |-This is a model of a mod...
498Low poly grass packMoi LoyFree- All Extended Uses2019-03-14\\n\\n\\nFBX \\n\\n[3D Model, nature, plants, cartoon plant][https://www.turbosquid.com/Search/3d-models, ...[lowpoly, grass][https://www.turbosquid.com/Search/3D-Models/l...Pack Contains: 13 types of Grass(FBX),7 types ...
499Piano benchIridesiumFree- All Extended Uses2019-03-13\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n...[3D Model, furnishings, seating, bench, wooden...[https://www.turbosquid.com/Search/3d-models, ...[Piano, bench, grand, seat, stool, desk, side,...[https://www.turbosquid.com/Search/3D-Models/p...This is an older, worn, piano bench (or any ki...
\n", + "

500 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " name_model owner price \\\n", + "0 Free base male anatomy niyoo Free \n", + "1 Minecraft grass block Render at Night Free \n", + "2 Diving helmet NotJerd Free \n", + "3 Dominoes Render at Night Free \n", + "4 Prototyping polygons HyperChromatica Free \n", + "5 Counter and bar stools ESalem Free \n", + "6 Cabin shop MarkoffIN Free \n", + "7 Viper sniper rifle Young_Wizard Free \n", + "8 Atom Abdo Ashraf Free \n", + "9 Fan Akumax Maxime Free \n", + "10 Pouf stool folkvangr Free \n", + "11 Indoor test folkvangr Free \n", + "12 Apartment basic floor plan folkvangr Free \n", + "13 Coffee cup OemThr Free \n", + "14 Man headsculpt Vertici Free \n", + "15 Blue low poly car Andres_R26 Free \n", + "16 Bath house architecture test folkvangr Free \n", + "17 Motorola moto g7 plus blue and red ES_3D Free \n", + "18 Lighting w1050263 Free \n", + "19 Office chair Esraa abdelsalam2711 Free \n", + "20 Free garden urn planter wave design Free \n", + "21 Table shara_d Free \n", + "22 Metal containers Adrian Kulawik Free \n", + "23 Coffee machine w1050263 Free \n", + "24 Sink w1050263 Free \n", + "25 Building 002 vini3dmodels Free \n", + "26 Table w1050263 Free \n", + "27 Cpu case fan DevmanModels Free \n", + "28 Canister MarkoffIN Free \n", + "29 Road spikes MarkoffIN Free \n", + ".. ... ... ... \n", + "470 Tama console Designconnected Free \n", + "471 Tama crédence Designconnected Free \n", + "472 Roly-poly chair Designconnected Free \n", + "473 Calee table lamp Designconnected Free \n", + "474 Song coffee tables Designconnected Free \n", + "475 Neil table lamp Designconnected Free \n", + "476 Melusine table lamp Designconnected Free \n", + "477 Mategot trolley Designconnected Free \n", + "478 Inciucio pendant lamp Designconnected Free \n", + "479 Riki trolley Designconnected Free \n", + "480 Cancan floor light Designconnected Free \n", + "481 Passe-passe coat rack Designconnected Free \n", + "482 Destructuree pendant lamp Designconnected Free \n", + "483 Sports bottle bomi1337 Free \n", + "484 Lego_bricks anubhav462 Free \n", + "485 Kids chair rayson278 Free \n", + "486 Antique oil lamp DTG Amusements Free \n", + "487 Diwali oil lamp DTG Amusements Free \n", + "488 Antique oil lamp DTG Amusements Free \n", + "489 Casual couple lowpoly rigged (free sample) Denys Almaral Free \n", + "490 Simple pouf Desert Night Free \n", + "491 Classic water fountain Marc Mons Free \n", + "492 Kitchen chef's knife sepandj Free \n", + "493 Dirty steam punk knight for unity GAMEASS Free \n", + "494 Shotgun (free) maskedmole Free \n", + "495 Quin the mantis for unity remake GAMEASS Free \n", + "496 Urn Iridesium Free \n", + "497 Armchair - fabric/wood materials matredo Free \n", + "498 Low poly grass pack Moi Loy Free \n", + "499 Piano bench Iridesium Free \n", + "\n", + " license published_date \\\n", + "0 - All Extended Uses 2019-07-21 \n", + "1 - Editorial Uses Only 2019-07-21 \n", + "2 - All Extended Uses 2019-07-20 \n", + "3 - All Extended Uses 2019-07-20 \n", + "4 - All Extended Uses 2019-07-20 \n", + "5 - All Extended Uses 2019-07-20 \n", + "6 - All Extended Uses 2019-07-20 \n", + "7 - All Extended Uses 2019-07-20 \n", + "8 - All Extended Uses 2019-07-20 \n", + "9 - All Extended Uses 2019-07-19 \n", + "10 - All Extended Uses 2019-07-19 \n", + "11 - All Extended Uses 2019-07-19 \n", + "12 - All Extended Uses 2019-07-19 \n", + "13 - All Extended Uses 2019-07-19 \n", + "14 - All Extended Uses 2019-07-19 \n", + "15 - All Extended Uses 2019-07-19 \n", + "16 - All Extended Uses 2019-07-18 \n", + "17 - Editorial Uses AllowedExtended Uses May Nee... 2019-07-18 \n", + "18 - All Extended Uses 2019-07-18 \n", + "19 - All Extended Uses 2019-07-17 \n", + "20 - All Extended Uses 2019-07-17 \n", + "21 - All Extended Uses 2019-07-14 \n", + "22 - All Extended Uses 2019-07-17 \n", + "23 - All Extended Uses 2019-07-17 \n", + "24 - All Extended Uses 2019-07-17 \n", + "25 - All Extended Uses 2019-07-15 \n", + "26 - All Extended Uses 2019-07-15 \n", + "27 - All Extended Uses 2019-07-14 \n", + "28 - All Extended Uses 2019-07-13 \n", + "29 - All Extended Uses 2019-07-13 \n", + ".. ... ... \n", + "470 - Editorial Uses Only 2019-03-18 \n", + "471 - Editorial Uses Only 2019-03-18 \n", + "472 - Editorial Uses Only 2019-03-18 \n", + "473 - Editorial Uses Only 2019-03-18 \n", + "474 - Editorial Uses Only 2019-03-18 \n", + "475 - Editorial Uses Only 2019-03-18 \n", + "476 - Editorial Uses Only 2019-03-18 \n", + "477 - Editorial Uses Only 2019-03-18 \n", + "478 - Editorial Uses Only 2019-03-18 \n", + "479 - Editorial Uses Only 2019-03-18 \n", + "480 - Editorial Uses Only 2019-03-18 \n", + "481 - Editorial Uses Only 2019-03-18 \n", + "482 - Editorial Uses Only 2019-03-18 \n", + "483 - All Extended Uses 2019-03-18 \n", + "484 - Editorial Uses AllowedExtended Uses May Nee... 2019-03-17 \n", + "485 - All Extended Uses 2019-03-17 \n", + "486 - All Extended Uses 2019-03-16 \n", + "487 - All Extended Uses 2019-03-16 \n", + "488 - All Extended Uses 2019-03-16 \n", + "489 - All Extended Uses 2019-03-16 \n", + "490 - All Extended Uses 2019-03-16 \n", + "491 - All Extended Uses 2019-03-15 \n", + "492 - All Extended Uses 2019-03-15 \n", + "493 - All Extended Uses 2019-03-15 \n", + "494 - All Extended Uses 2019-03-15 \n", + "495 - All Extended Uses 2019-03-15 \n", + "496 - Editorial Uses Only 2019-03-14 \n", + "497 - All Extended Uses 2019-03-14 \n", + "498 - All Extended Uses 2019-03-14 \n", + "499 - All Extended Uses 2019-03-13 \n", + "\n", + " formats_available \\\n", + "0 \\n\\n\\nOBJ \\n\\n \n", + "1 \\n\\n\\nOBJ \\n\\n \n", + "2 \\n\\n\\nOBJ \\n\\n \n", + "3 \\n\\n\\nOBJ \\n\\n \n", + "4 \\n\\n\\nFBX 1.0\\n\\n \n", + "5 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n \n", + "6 \\n\\n\\nFBX \\n\\n \n", + "7 \\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n \n", + "8 \n", + "9 \\n\\n\\nOBJ \\n\\n \n", + "10 \n", + "11 \n", + "12 \n", + "13 \\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n \n", + "14 \n", + "15 \\n\\n\\nOther \\n\\n \n", + "16 \n", + "17 \\n\\n\\n3D Studio 2011\\n\\n\\n\\n\\nFBX 2011\\n\\n\\n\\n... \n", + "18 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n... \n", + "19 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nFB... \n", + "20 \\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n \n", + "21 \\n\\n\\nFBX \\n\\n\\n\\n\\nCollada \\n\\n\\n\\n\\nOBJ \\n\\n \n", + "22 \\n\\n\\nOBJ 2019\\n\\n \n", + "23 \\n\\n\\nOBJ \\n\\n\\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n... \n", + "24 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nFBX \\n... \n", + "25 \\n\\n\\nFBX 2016\\n\\n\\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nOthe... \n", + "26 \\n\\n\\n3D Studio \\n\\n\\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n... \n", + "27 \\n\\n\\nOther \\n\\n \n", + "28 \\n\\n\\nFBX \\n\\n \n", + "29 \\n\\n\\nFBX \\n\\n \n", + ".. ... \n", + "470 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "471 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "472 \\n\\n\\nFBX \\n\\n \n", + "473 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "474 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "475 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "476 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "477 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "478 \\n\\n\\nFBX \\n\\n \n", + "479 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "480 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "481 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n \n", + "482 \\n\\n\\nFBX \\n\\n \n", + "483 \\n\\n\\nFBX \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nOBJ \\n\\n\\n... \n", + "484 \\n\\n\\nFBX \\n\\n \n", + "485 \n", + "486 \\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ... \n", + "487 \\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ... \n", + "488 \\n\\n\\n3D Studio 2013\\n\\n\\n\\n\\nAutoCAD drawing ... \n", + "489 \\n\\n\\nFBX 2014\\n\\n \n", + "490 \n", + "491 \\n\\n\\nOBJ 2016\\n\\n\\n\\n\\nFBX 2016\\n\\n \n", + "492 \\n\\n\\nOBJ \\n\\n\\n\\n\\nOther \\n\\n\\n\\n\\nFBX \\n\\n\\n... \n", + "493 \n", + "494 \\n\\n\\nFBX \\n\\n \n", + "495 \n", + "496 \\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n... \n", + "497 \n", + "498 \\n\\n\\nFBX \\n\\n \n", + "499 \\n\\n\\nFBX \\n\\n\\n\\n\\nOBJ \\n\\n\\n\\n\\nSTL \\n\\n\\n\\n... \n", + "\n", + " list_categories \\\n", + "0 [3D Model, characters, people, man] \n", + "1 [3D Model, nature, plants, grasses, ornamental... \n", + "2 [3D Model, sports, outdoor sports, scuba, divi... \n", + "3 [3D Model, toys and games, games, dominos] \n", + "4 [3D Model, symbols] \n", + "5 [3D Model, furnishings, cupboard, showcase] \n", + "6 [3D Model, architecture, building, commercial ... \n", + "7 [3D Model, weaponry, weapons, firearms, rifle,... \n", + "8 [3D Model, science, chemistry, atom] \n", + "9 [3D Model, interior design, housewares, fan, b... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [3D Model, interior design, housewares, dining... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [3D Model, technology, phone, cellphone, smart... \n", + "18 [3D Model, interior design, fixtures, lighting... \n", + "19 [3D Model, furnishings, seating, chair, office... \n", + "20 [3D Model, interior design, housewares, genera... \n", + "21 [3D Model, furnishings, table] \n", + "22 [3D Model, industrial, industrial container, c... \n", + "23 [3D Model, interior design, appliance, commerc... \n", + "24 [3D Model, interior design, fixtures, sink, ki... \n", + "25 [3D Model, architecture, building, residential... \n", + "26 [3D Model, furnishings, table] \n", + "27 [3D Model, technology, computer equipment, com... \n", + "28 [3D Model, industrial, industrial container, f... \n", + "29 [3D Model, architecture, urban design, street ... \n", + ".. ... \n", + "470 [3D Model, furnishings, table, console table] \n", + "471 [3D Model, furnishings, sideboard] \n", + "472 [3D Model, furnishings, seating, chair, side c... \n", + "473 [3D Model, interior design, fixtures, lighting... \n", + "474 [3D Model, furnishings, table, coffee table] \n", + "475 [3D Model, interior design, fixtures, lighting... \n", + "476 [3D Model, interior design, fixtures, lighting... \n", + "477 [3D Model, industrial, tools, cart] \n", + "478 [3D Model, interior design, fixtures, lighting... \n", + "479 [3D Model, furnishings, kitchen cart] \n", + "480 [3D Model, interior design, fixtures, lighting... \n", + "481 [3D Model, furnishings, rack, clothes rack, co... \n", + "482 [3D Model, interior design, fixtures, lighting... \n", + "483 [3D Model, sports, exercise equipment, sports ... \n", + "484 [3D Model, toys and games, toys, building toys... \n", + "485 [3D Model, furnishings, seating, chair, childr... \n", + "486 [3D Model, interior design, fixtures, lighting... \n", + "487 [3D Model, interior design, fixtures, lighting... \n", + "488 [3D Model, interior design, fixtures, lighting... \n", + "489 [3D Model, characters, people, man, cartoon man] \n", + "490 [3D Model, furnishings, seating, chair, foot r... \n", + "491 [3D Model, architecture, site components, land... \n", + "492 [3D Model, interior design, housewares, kitche... \n", + "493 [3D Model, characters, people, military people... \n", + "494 [3D Model, weaponry, weapons, firearms, shotgun] \n", + "495 [3D Model, characters, mythological creatures,... \n", + "496 [3D Model, interior design, housewares, genera... \n", + "497 [3D Model, furnishings, seating, chair, lounge... \n", + "498 [3D Model, nature, plants, cartoon plant] \n", + "499 [3D Model, furnishings, seating, bench, wooden... \n", + "\n", + " links_categories \\\n", + "0 [https://www.turbosquid.com/Search/3d-models, ... \n", + "1 [https://www.turbosquid.com/Search/3d-models, ... \n", + "2 [https://www.turbosquid.com/Search/3d-models, ... \n", + "3 [https://www.turbosquid.com/Search/3d-models, ... \n", + "4 [https://www.turbosquid.com/Search/3d-models, ... \n", + "5 [https://www.turbosquid.com/Search/3d-models, ... \n", + "6 [https://www.turbosquid.com/Search/3d-models, ... \n", + "7 [https://www.turbosquid.com/Search/3d-models, ... \n", + "8 [https://www.turbosquid.com/Search/3d-models, ... \n", + "9 [https://www.turbosquid.com/Search/3d-models, ... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [https://www.turbosquid.com/Search/3d-models, ... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [https://www.turbosquid.com/Search/3d-models, ... \n", + "18 [https://www.turbosquid.com/Search/3d-models, ... \n", + "19 [https://www.turbosquid.com/Search/3d-models, ... \n", + "20 [https://www.turbosquid.com/Search/3d-models, ... \n", + "21 [https://www.turbosquid.com/Search/3d-models, ... \n", + "22 [https://www.turbosquid.com/Search/3d-models, ... \n", + "23 [https://www.turbosquid.com/Search/3d-models, ... \n", + "24 [https://www.turbosquid.com/Search/3d-models, ... \n", + "25 [https://www.turbosquid.com/Search/3d-models, ... \n", + "26 [https://www.turbosquid.com/Search/3d-models, ... \n", + "27 [https://www.turbosquid.com/Search/3d-models, ... \n", + "28 [https://www.turbosquid.com/Search/3d-models, ... \n", + "29 [https://www.turbosquid.com/Search/3d-models, ... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3d-models, ... \n", + "471 [https://www.turbosquid.com/Search/3d-models, ... \n", + "472 [https://www.turbosquid.com/Search/3d-models, ... \n", + "473 [https://www.turbosquid.com/Search/3d-models, ... \n", + "474 [https://www.turbosquid.com/Search/3d-models, ... \n", + "475 [https://www.turbosquid.com/Search/3d-models, ... \n", + "476 [https://www.turbosquid.com/Search/3d-models, ... \n", + "477 [https://www.turbosquid.com/Search/3d-models, ... \n", + "478 [https://www.turbosquid.com/Search/3d-models, ... \n", + "479 [https://www.turbosquid.com/Search/3d-models, ... \n", + "480 [https://www.turbosquid.com/Search/3d-models, ... \n", + "481 [https://www.turbosquid.com/Search/3d-models, ... \n", + "482 [https://www.turbosquid.com/Search/3d-models, ... \n", + "483 [https://www.turbosquid.com/Search/3d-models, ... \n", + "484 [https://www.turbosquid.com/Search/3d-models, ... \n", + "485 [https://www.turbosquid.com/Search/3d-models, ... \n", + "486 [https://www.turbosquid.com/Search/3d-models, ... \n", + "487 [https://www.turbosquid.com/Search/3d-models, ... \n", + "488 [https://www.turbosquid.com/Search/3d-models, ... \n", + "489 [https://www.turbosquid.com/Search/3d-models, ... \n", + "490 [https://www.turbosquid.com/Search/3d-models, ... \n", + "491 [https://www.turbosquid.com/Search/3d-models, ... \n", + "492 [https://www.turbosquid.com/Search/3d-models, ... \n", + "493 [https://www.turbosquid.com/Search/3d-models, ... \n", + "494 [https://www.turbosquid.com/Search/3d-models, ... \n", + "495 [https://www.turbosquid.com/Search/3d-models, ... \n", + "496 [https://www.turbosquid.com/Search/3d-models, ... \n", + "497 [https://www.turbosquid.com/Search/3d-models, ... \n", + "498 [https://www.turbosquid.com/Search/3d-models, ... \n", + "499 [https://www.turbosquid.com/Search/3d-models, ... \n", + "\n", + " list_tags \\\n", + "0 [characters, man, male, human, zbrush, ztl, ob... \n", + "1 [minecraft, grass, block, cube] \n", + "2 [Helmet, Undersea] \n", + "3 [domino, dominoes, black, white, tile] \n", + "4 [primitives, prototyping, blender, unity, geom... \n", + "5 [counter, and, bar, stools, Are, same, specifi... \n", + "6 [House, shop, store, stall, depot, trade, cabin.] \n", + "7 [weapon, sci-fi, low-poly, game-ready, sniper-... \n", + "8 [atom, science, chemistry, chemical, scientifi... \n", + "9 [Fan, ventilateur] \n", + "10 [leather, furniture, seat, decor, stool, other] \n", + "11 [indoors, room, furniture, seat, wood, chair, ... \n", + "12 [flat, apartment, household, building, kitchen... \n", + "13 [coffee, dinner, breakfast, cup, plate, porcel... \n", + "14 [Head, man, male, human] \n", + "15 [low, poly, car, blue] \n", + "16 [column, architecture, marble, bedrock, roman,... \n", + "17 [3d, model, 3ds, max, Motorola, Moto, G7, Plus... \n", + "18 [#lighting, #light, bulb, #firelight] \n", + "19 [#chair, #office, #modern, #3dsmax, #3dmodelin... \n", + "20 [Urn, Planter, Vase, Garden, pot, decor, Decor... \n", + "21 [Table, Home, Decor, Kitchen, TableLegs, Unwra... \n", + "22 [metal, container, mars, kitbash, modular, pro... \n", + "23 [#coffee, #machine, #vending, machine] \n", + "24 [#sink, #Kitchen, #tap, #faucet, #bibcock] \n", + "25 [architecture, house, home, building, suburb, ... \n", + "26 [table, Kitchen, cooktable, Breakfast, Lunch, ... \n", + "27 [3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler] \n", + "28 [Canister, vessel, vial, container, fuel, green] \n", + "29 [Spikes, Road, Obstacle, Hazard] \n", + ".. ... \n", + "470 [Console-tables, Gallotti-and-Radice, Carlo-Co... \n", + "471 [Sideboards, Gallotti-and-Radice, Carlo-Colomb... \n", + "472 [Chairs, Driade, Faye-Toogood, Plastic, Contem... \n", + "473 [Table-lights, South-Hill-Home, Brass, Painted... \n", + "474 [Coffee-tables, Minotti, Rodolfo-Dordoni, Natu... \n", + "475 [Table-lights, Ligne-Roset, -Ligne-Roset, Glas... \n", + "476 [Table-lights, Ligne-Roset, Peter-Maly, Solid-... \n", + "477 [Console-tables, Occasional-tables, Gubi, Math... \n", + "478 [Pendant-lights, Gibas, Painted-metal, Contemp... \n", + "479 [Trays, Gallotti-and-Radice, Pierangelo-Gallot... \n", + "480 [Floor-lights, Ligne-Roset, Patrick-Zulauf, Co... \n", + "481 [Cloth-stands, Ligne-Roset, Philippe-Nigro, So... \n", + "482 [Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak... \n", + "483 [bottle, metal, sport, sports, drink, hydro, v... \n", + "484 [Lego, Bricks] \n", + "485 [table, and, chair] \n", + "486 [Lamp, oil, lamp] \n", + "487 [Lamp, Diwali, Oil, Lamp] \n", + "488 [Lamp, Oil, Lamp] \n", + "489 [people, rigged, character, lowpoly, style, wo... \n", + "490 [simple, pouf, chair, fabric, modern, 3d, model] \n", + "491 [water, fountain, architecture, exterior, stre... \n", + "492 [knife, kitchen, sharp, still, wood, brass, bl... \n", + "493 [knight, unity, humanoid, rigged, character, s... \n", + "494 [shotgun, free, firearm] \n", + "495 [unity, RPG, monster, bug, creature, sci, fi, ... \n", + "496 [urn, ashes, tomb, bottle, jar, ancient, ossua... \n", + "497 [chair, armchair, furniture, interior, design] \n", + "498 [lowpoly, grass] \n", + "499 [Piano, bench, grand, seat, stool, desk, side,... \n", + "\n", + " links_tags \\\n", + "0 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "1 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "2 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "3 [https://www.turbosquid.com/Search/3D-Models/d... \n", + "4 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "5 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "6 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "7 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "8 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "9 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "10 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "11 [https://www.turbosquid.com/Search/3D-Models/i... \n", + "12 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "13 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "14 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "15 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "16 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "17 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "18 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "19 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "20 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "21 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "22 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "23 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "24 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "25 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "26 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "27 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "28 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "29 [https://www.turbosquid.com/Search/3D-Models/s... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "471 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "472 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "473 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "474 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "475 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "476 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "477 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "478 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "479 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "480 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "481 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "482 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "483 [https://www.turbosquid.com/Search/3D-Models/b... \n", + "484 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "485 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "486 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "487 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "488 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "489 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "490 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "491 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "492 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "493 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "494 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "495 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "496 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "497 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "498 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "499 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "\n", + " description \n", + "0 Free model. You can use for base anatomy/propo... \n", + "1 \n", + "2 This is a helmet I made.CC0 License \n", + "3 Models of 5 different dominoes.Polygons/Vertic... \n", + "4 I was starting work on a new game in unity and... \n", + "5 counter and bar stools Are the same specificat... \n", + "6 Small low poly shop cabin. \n", + "7 Game ready model, low poly can used as a game ... \n", + "8 3D model for the atom. The whole project was m... \n", + "9 Vintage fan \n", + "10 This model was created for an art challenge an... \n", + "11 Indoors test scene made with Blender 2.8.It co... \n", + "12 This is a simple architecture test scene made ... \n", + "13 - Ceramic coffee cup with plate -This model co... \n", + "14 Just a sculpting/texturing practice I did. \n", + "15 free 3d obj and Maya please give me. feedback,... \n", + "16 This is a simple architecture test scene made ... \n", + "17 Detailed High definition model Xiaomi Redmi 7A... \n", + "18 \n", + "19 **office chair** with vray material ready to p... \n", + "20 * This Urn is a high quality polygonal model w... \n", + "21 OBJ, FBX, DAE files of an unwrapped 3D object ... \n", + "22 Metal Containers3D Model Ready for Games. PBR ... \n", + "23 Saved as 3ds max 2015 version file.As you work... \n", + "24 #sink #Kitchen #tap #faucet #bibcock \n", + "25 This is a simple house model. Except for the c... \n", + "26 * Saved as 3ds max 2015 version file.Nowadays,... \n", + "27 A CPU fan.Low poly and mid poly includedBlend ... \n", + "28 Low poly fuel canister. \n", + "29 Low poly road obstacle with texture. \n", + ".. ... \n", + "470 Tama Console by Gallotti & Radice | 3d model p... \n", + "471 Tama Crédence by Gallotti & Radice | 3d model ... \n", + "472 Roly-Poly Chair by Driade | 3d model produced ... \n", + "473 Calee Table Lamp by South Hill Home | 3d model... \n", + "474 Song Coffee Tables by Minotti | 3d model produ... \n", + "475 Neil Table Lamp by Ligne Roset | 3d model prod... \n", + "476 Melusine Table Lamp by Ligne Roset | 3d model ... \n", + "477 Mategot Trolley by Gubi | 3d model produced by... \n", + "478 Inciucio Pendant Lamp by Gibas | 3d model prod... \n", + "479 Riki Trolley by Gallotti & Radice | 3d model p... \n", + "480 Cancan Floor Light by Ligne Roset | 3d model p... \n", + "481 Passe-Passe Coat Rack by Ligne Roset | 3d mode... \n", + "482 Destructuree Pendant Lamp by Ligne Roset | 3d ... \n", + "483 **********************************************... \n", + "484 Lego Bricks Basic \n", + "485 cinema 4d model of simple kids table and chair... \n", + "486 A collection of antique oil lampsThis design i... \n", + "487 Diwali Oil LampThis design is not animated. 80... \n", + "488 Antique Oil LampThis design is not animated. 4... \n", + "489 LowPoly Style Couple, casual man and woman. Cr... \n", + "490 Simple PoufDimensions: L 450 x W 450 x H 350 m... \n", + "491 Modeled with Autodesk Maya 2016 using polygons... \n", + "492 It's a simple chef's knife with a wooden handl... \n", + "493 humanoid rigged character for unity.this packa... \n", + "494 Free shotgun ready to use for your game, fully... \n", + "495 'CREATURE FOR UNITY' REMAKED!QUIN the mantis R... \n", + "496 This is an older looking Medieval or Victorian... \n", + "497 | MODEL DESCRIPTION |-This is a model of a mod... \n", + "498 Pack Contains: 13 types of Grass(FBX),7 types ... \n", + "499 This is an older, worn, piano bench (or any ki... \n", + "\n", + "[500 rows x 11 columns]" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_scraping['price'] = [re.sub(r'\\n','',price) for price in prices]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Columna formats_available" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Para esta columna necesitamos un formao similar a la columna price, solo que generamos una lista de formatos." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": {}, + "outputs": [], + "source": [ + "formatos = dataset_scraping['formats_available']\n", + "formatos = [formatos.loc[[i]].values[0][0] for i in range(len(formatos))]" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_modelownerpricelicensepublished_dateformats_availablelist_categorieslinks_categorieslist_tagslinks_tagsdescription
0Free base male anatomyniyooFree- All Extended Uses2019-07-21[OBJ ][3D Model, characters, people, man][https://www.turbosquid.com/Search/3d-models, ...[characters, man, male, human, zbrush, ztl, ob...[https://www.turbosquid.com/Search/3D-Models/c...Free model. You can use for base anatomy/propo...
1Minecraft grass blockRender at NightFree- Editorial Uses Only2019-07-21[OBJ ][3D Model, nature, plants, grasses, ornamental...[https://www.turbosquid.com/Search/3d-models, ...[minecraft, grass, block, cube][https://www.turbosquid.com/Search/3D-Models/m...
2Diving helmetNotJerdFree- All Extended Uses2019-07-20[OBJ ][3D Model, sports, outdoor sports, scuba, divi...[https://www.turbosquid.com/Search/3d-models, ...[Helmet, Undersea][https://www.turbosquid.com/Search/3D-Models/h...This is a helmet I made.CC0 License
3DominoesRender at NightFree- All Extended Uses2019-07-20[OBJ ][3D Model, toys and games, games, dominos][https://www.turbosquid.com/Search/3d-models, ...[domino, dominoes, black, white, tile][https://www.turbosquid.com/Search/3D-Models/d...Models of 5 different dominoes.Polygons/Vertic...
4Prototyping polygonsHyperChromaticaFree- All Extended Uses2019-07-20[FBX 1, 0\\n][3D Model, symbols][https://www.turbosquid.com/Search/3d-models, ...[primitives, prototyping, blender, unity, geom...[https://www.turbosquid.com/Search/3D-Models/p...I was starting work on a new game in unity and...
5Counter and bar stoolsESalemFree- All Extended Uses2019-07-20[3D Studio, FBX , OBJ ][3D Model, furnishings, cupboard, showcase][https://www.turbosquid.com/Search/3d-models, ...[counter, and, bar, stools, Are, same, specifi...[https://www.turbosquid.com/Search/3D-Models/c...counter and bar stools Are the same specificat...
6Cabin shopMarkoffINFree- All Extended Uses2019-07-20[FBX ][3D Model, architecture, building, commercial ...[https://www.turbosquid.com/Search/3d-models, ...[House, shop, store, stall, depot, trade, cabin.][https://www.turbosquid.com/Search/3D-Models/h...Small low poly shop cabin.
7Viper sniper rifleYoung_WizardFree- All Extended Uses2019-07-20[FBX , OBJ , Other ][3D Model, weaponry, weapons, firearms, rifle,...[https://www.turbosquid.com/Search/3d-models, ...[weapon, sci-fi, low-poly, game-ready, sniper-...[https://www.turbosquid.com/Search/3D-Models/w...Game ready model, low poly can used as a game ...
8AtomAbdo AshrafFree- All Extended Uses2019-07-20[][3D Model, science, chemistry, atom][https://www.turbosquid.com/Search/3d-models, ...[atom, science, chemistry, chemical, scientifi...[https://www.turbosquid.com/Search/3D-Models/a...3D model for the atom. The whole project was m...
9FanAkumax MaximeFree- All Extended Uses2019-07-19[OBJ ][3D Model, interior design, housewares, fan, b...[https://www.turbosquid.com/Search/3d-models, ...[Fan, ventilateur][https://www.turbosquid.com/Search/3D-Models/f...Vintage fan
10Pouf stoolfolkvangrFree- All Extended Uses2019-07-19[][][][leather, furniture, seat, decor, stool, other][https://www.turbosquid.com/Search/3D-Models/l...This model was created for an art challenge an...
11Indoor testfolkvangrFree- All Extended Uses2019-07-19[][][][indoors, room, furniture, seat, wood, chair, ...[https://www.turbosquid.com/Search/3D-Models/i...Indoors test scene made with Blender 2.8.It co...
12Apartment basic floor planfolkvangrFree- All Extended Uses2019-07-19[][][][flat, apartment, household, building, kitchen...[https://www.turbosquid.com/Search/3D-Models/f...This is a simple architecture test scene made ...
13Coffee cupOemThrFree- All Extended Uses2019-07-19[OBJ , FBX , Collada ][3D Model, interior design, housewares, dining...[https://www.turbosquid.com/Search/3d-models, ...[coffee, dinner, breakfast, cup, plate, porcel...[https://www.turbosquid.com/Search/3D-Models/c...- Ceramic coffee cup with plate -This model co...
14Man headsculptVerticiFree- All Extended Uses2019-07-19[][][][Head, man, male, human][https://www.turbosquid.com/Search/3D-Models/h...Just a sculpting/texturing practice I did.
15Blue low poly carAndres_R26Free- All Extended Uses2019-07-19[Other ][][][low, poly, car, blue][https://www.turbosquid.com/Search/3D-Models/l...free 3d obj and Maya please give me. feedback,...
16Bath house architecture testfolkvangrFree- All Extended Uses2019-07-18[][][][column, architecture, marble, bedrock, roman,...[https://www.turbosquid.com/Search/3D-Models/c...This is a simple architecture test scene made ...
17Motorola moto g7 plus blue and redES_3DFree- Editorial Uses AllowedExtended Uses May Nee...2019-07-18[3D Studio, 2011\\n, FBX 2011, OBJ 2011, VRML 2...[3D Model, technology, phone, cellphone, smart...[https://www.turbosquid.com/Search/3d-models, ...[3d, model, 3ds, max, Motorola, Moto, G7, Plus...[https://www.turbosquid.com/Search/3D-Models/3...Detailed High definition model Xiaomi Redmi 7A...
18Lightingw1050263Free- All Extended Uses2019-07-18[3D Studio, OBJ , FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[#lighting, #light, bulb, #firelight][https://www.turbosquid.com/Search/3D-Models/%...
19Office chairEsraa abdelsalam2711Free- All Extended Uses2019-07-17[3D Studio, Collada , FBX , OBJ , Other ][3D Model, furnishings, seating, chair, office...[https://www.turbosquid.com/Search/3d-models, ...[#chair, #office, #modern, #3dsmax, #3dmodelin...[https://www.turbosquid.com/Search/3D-Models/%...**office chair** with vray material ready to p...
20Free garden urn planterwave designFree- All Extended Uses2019-07-17[OBJ , FBX , Collada ][3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[Urn, Planter, Vase, Garden, pot, decor, Decor...[https://www.turbosquid.com/Search/3D-Models/u...* This Urn is a high quality polygonal model w...
21Tableshara_dFree- All Extended Uses2019-07-14[FBX , Collada , OBJ ][3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[Table, Home, Decor, Kitchen, TableLegs, Unwra...[https://www.turbosquid.com/Search/3D-Models/t...OBJ, FBX, DAE files of an unwrapped 3D object ...
22Metal containersAdrian KulawikFree- All Extended Uses2019-07-17[OBJ 2019][3D Model, industrial, industrial container, c...[https://www.turbosquid.com/Search/3d-models, ...[metal, container, mars, kitbash, modular, pro...[https://www.turbosquid.com/Search/3D-Models/m...Metal Containers3D Model Ready for Games. PBR ...
23Coffee machinew1050263Free- All Extended Uses2019-07-17[OBJ , 3D Studio, FBX , Other ][3D Model, interior design, appliance, commerc...[https://www.turbosquid.com/Search/3d-models, ...[#coffee, #machine, #vending, machine][https://www.turbosquid.com/Search/3D-Models/%...Saved as 3ds max 2015 version file.As you work...
24Sinkw1050263Free- All Extended Uses2019-07-17[3D Studio, OBJ , FBX , Other ][3D Model, interior design, fixtures, sink, ki...[https://www.turbosquid.com/Search/3d-models, ...[#sink, #Kitchen, #tap, #faucet, #bibcock][https://www.turbosquid.com/Search/3D-Models/%...#sink #Kitchen #tap #faucet #bibcock
25Building 002vini3dmodelsFree- All Extended Uses2019-07-15[FBX 2016, OBJ 2016, Other 2016][3D Model, architecture, building, residential...[https://www.turbosquid.com/Search/3d-models, ...[architecture, house, home, building, suburb, ...[https://www.turbosquid.com/Search/3D-Models/a...This is a simple house model. Except for the c...
26Tablew1050263Free- All Extended Uses2019-07-15[3D Studio, FBX , OBJ , Other ][3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[table, Kitchen, cooktable, Breakfast, Lunch, ...[https://www.turbosquid.com/Search/3D-Models/t...* Saved as 3ds max 2015 version file.Nowadays,...
27Cpu case fanDevmanModelsFree- All Extended Uses2019-07-14[Other ][3D Model, technology, computer equipment, com...[https://www.turbosquid.com/Search/3d-models, ...[3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler][https://www.turbosquid.com/Search/3D-Models/3...A CPU fan.Low poly and mid poly includedBlend ...
28CanisterMarkoffINFree- All Extended Uses2019-07-13[FBX ][3D Model, industrial, industrial container, f...[https://www.turbosquid.com/Search/3d-models, ...[Canister, vessel, vial, container, fuel, green][https://www.turbosquid.com/Search/3D-Models/c...Low poly fuel canister.
29Road spikesMarkoffINFree- All Extended Uses2019-07-13[FBX ][3D Model, architecture, urban design, street ...[https://www.turbosquid.com/Search/3d-models, ...[Spikes, Road, Obstacle, Hazard][https://www.turbosquid.com/Search/3D-Models/s...Low poly road obstacle with texture.
....................................
470Tama consoleDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, table, console table][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Gallotti-and-Radice, Carlo-Co...[https://www.turbosquid.com/Search/3D-Models/c...Tama Console by Gallotti & Radice | 3d model p...
471Tama crédenceDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, sideboard][https://www.turbosquid.com/Search/3d-models, ...[Sideboards, Gallotti-and-Radice, Carlo-Colomb...[https://www.turbosquid.com/Search/3D-Models/s...Tama Crédence by Gallotti & Radice | 3d model ...
472Roly-poly chairDesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, furnishings, seating, chair, side c...[https://www.turbosquid.com/Search/3d-models, ...[Chairs, Driade, Faye-Toogood, Plastic, Contem...[https://www.turbosquid.com/Search/3D-Models/c...Roly-Poly Chair by Driade | 3d model produced ...
473Calee table lampDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, South-Hill-Home, Brass, Painted...[https://www.turbosquid.com/Search/3D-Models/t...Calee Table Lamp by South Hill Home | 3d model...
474Song coffee tablesDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, table, coffee table][https://www.turbosquid.com/Search/3d-models, ...[Coffee-tables, Minotti, Rodolfo-Dordoni, Natu...[https://www.turbosquid.com/Search/3D-Models/c...Song Coffee Tables by Minotti | 3d model produ...
475Neil table lampDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, -Ligne-Roset, Glas...[https://www.turbosquid.com/Search/3D-Models/t...Neil Table Lamp by Ligne Roset | 3d model prod...
476Melusine table lampDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, Peter-Maly, Solid-...[https://www.turbosquid.com/Search/3D-Models/t...Melusine Table Lamp by Ligne Roset | 3d model ...
477Mategot trolleyDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, industrial, tools, cart][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Occasional-tables, Gubi, Math...[https://www.turbosquid.com/Search/3D-Models/c...Mategot Trolley by Gubi | 3d model produced by...
478Inciucio pendant lampDesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Gibas, Painted-metal, Contemp...[https://www.turbosquid.com/Search/3D-Models/p...Inciucio Pendant Lamp by Gibas | 3d model prod...
479Riki trolleyDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, kitchen cart][https://www.turbosquid.com/Search/3d-models, ...[Trays, Gallotti-and-Radice, Pierangelo-Gallot...[https://www.turbosquid.com/Search/3D-Models/t...Riki Trolley by Gallotti & Radice | 3d model p...
480Cancan floor lightDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Floor-lights, Ligne-Roset, Patrick-Zulauf, Co...[https://www.turbosquid.com/Search/3D-Models/f...Cancan Floor Light by Ligne Roset | 3d model p...
481Passe-passe coat rackDesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, rack, clothes rack, co...[https://www.turbosquid.com/Search/3d-models, ...[Cloth-stands, Ligne-Roset, Philippe-Nigro, So...[https://www.turbosquid.com/Search/3D-Models/c...Passe-Passe Coat Rack by Ligne Roset | 3d mode...
482Destructuree pendant lampDesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak...[https://www.turbosquid.com/Search/3D-Models/p...Destructuree Pendant Lamp by Ligne Roset | 3d ...
483Sports bottlebomi1337Free- All Extended Uses2019-03-18[FBX , Other , OBJ , STL ][3D Model, sports, exercise equipment, sports ...[https://www.turbosquid.com/Search/3d-models, ...[bottle, metal, sport, sports, drink, hydro, v...[https://www.turbosquid.com/Search/3D-Models/b...**********************************************...
484Lego_bricksanubhav462Free- Editorial Uses AllowedExtended Uses May Nee...2019-03-17[FBX ][3D Model, toys and games, toys, building toys...[https://www.turbosquid.com/Search/3d-models, ...[Lego, Bricks][https://www.turbosquid.com/Search/3D-Models/l...Lego Bricks Basic
485Kids chairrayson278Free- All Extended Uses2019-03-17[][3D Model, furnishings, seating, chair, childr...[https://www.turbosquid.com/Search/3d-models, ...[table, and, chair][https://www.turbosquid.com/Search/3D-Models/t...cinema 4d model of simple kids table and chair...
486Antique oil lampDTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, oil, lamp][https://www.turbosquid.com/Search/3D-Models/l...A collection of antique oil lampsThis design i...
487Diwali oil lampDTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Diwali, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...Diwali Oil LampThis design is not animated. 80...
488Antique oil lampDTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...Antique Oil LampThis design is not animated. 4...
489Casual couple lowpoly rigged (free sample)Denys AlmaralFree- All Extended Uses2019-03-16[FBX 2014][3D Model, characters, people, man, cartoon man][https://www.turbosquid.com/Search/3d-models, ...[people, rigged, character, lowpoly, style, wo...[https://www.turbosquid.com/Search/3D-Models/p...LowPoly Style Couple, casual man and woman. Cr...
490Simple poufDesert NightFree- All Extended Uses2019-03-16[][3D Model, furnishings, seating, chair, foot r...[https://www.turbosquid.com/Search/3d-models, ...[simple, pouf, chair, fabric, modern, 3d, model][https://www.turbosquid.com/Search/3D-Models/s...Simple PoufDimensions: L 450 x W 450 x H 350 m...
491Classic water fountainMarc MonsFree- All Extended Uses2019-03-15[OBJ 2016, FBX 2016][3D Model, architecture, site components, land...[https://www.turbosquid.com/Search/3d-models, ...[water, fountain, architecture, exterior, stre...[https://www.turbosquid.com/Search/3D-Models/w...Modeled with Autodesk Maya 2016 using polygons...
492Kitchen chef's knifesepandjFree- All Extended Uses2019-03-15[OBJ , Other , FBX , OpenFlight , IGES , 3D St...[3D Model, interior design, housewares, kitche...[https://www.turbosquid.com/Search/3d-models, ...[knife, kitchen, sharp, still, wood, brass, bl...[https://www.turbosquid.com/Search/3D-Models/k...It's a simple chef's knife with a wooden handl...
493Dirty steam punk knight for unityGAMEASSFree- All Extended Uses2019-03-15[][3D Model, characters, people, military people...[https://www.turbosquid.com/Search/3d-models, ...[knight, unity, humanoid, rigged, character, s...[https://www.turbosquid.com/Search/3D-Models/k...humanoid rigged character for unity.this packa...
494Shotgun (free)maskedmoleFree- All Extended Uses2019-03-15[FBX ][3D Model, weaponry, weapons, firearms, shotgun][https://www.turbosquid.com/Search/3d-models, ...[shotgun, free, firearm][https://www.turbosquid.com/Search/3D-Models/s...Free shotgun ready to use for your game, fully...
495Quin the mantis for unity remakeGAMEASSFree- All Extended Uses2019-03-15[][3D Model, characters, mythological creatures,...[https://www.turbosquid.com/Search/3d-models, ...[unity, RPG, monster, bug, creature, sci, fi, ...[https://www.turbosquid.com/Search/3D-Models/u...'CREATURE FOR UNITY' REMAKED!QUIN the mantis R...
496UrnIridesiumFree- Editorial Uses Only2019-03-14[FBX , OBJ , STL , Other ][3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[urn, ashes, tomb, bottle, jar, ancient, ossua...[https://www.turbosquid.com/Search/3D-Models/u...This is an older looking Medieval or Victorian...
497Armchair - fabric/wood materialsmatredoFree- All Extended Uses2019-03-14[][3D Model, furnishings, seating, chair, lounge...[https://www.turbosquid.com/Search/3d-models, ...[chair, armchair, furniture, interior, design][https://www.turbosquid.com/Search/3D-Models/c...| MODEL DESCRIPTION |-This is a model of a mod...
498Low poly grass packMoi LoyFree- All Extended Uses2019-03-14[FBX ][3D Model, nature, plants, cartoon plant][https://www.turbosquid.com/Search/3d-models, ...[lowpoly, grass][https://www.turbosquid.com/Search/3D-Models/l...Pack Contains: 13 types of Grass(FBX),7 types ...
499Piano benchIridesiumFree- All Extended Uses2019-03-13[FBX , OBJ , STL , Other ][3D Model, furnishings, seating, bench, wooden...[https://www.turbosquid.com/Search/3d-models, ...[Piano, bench, grand, seat, stool, desk, side,...[https://www.turbosquid.com/Search/3D-Models/p...This is an older, worn, piano bench (or any ki...
\n", + "

500 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " name_model owner price \\\n", + "0 Free base male anatomy niyoo Free \n", + "1 Minecraft grass block Render at Night Free \n", + "2 Diving helmet NotJerd Free \n", + "3 Dominoes Render at Night Free \n", + "4 Prototyping polygons HyperChromatica Free \n", + "5 Counter and bar stools ESalem Free \n", + "6 Cabin shop MarkoffIN Free \n", + "7 Viper sniper rifle Young_Wizard Free \n", + "8 Atom Abdo Ashraf Free \n", + "9 Fan Akumax Maxime Free \n", + "10 Pouf stool folkvangr Free \n", + "11 Indoor test folkvangr Free \n", + "12 Apartment basic floor plan folkvangr Free \n", + "13 Coffee cup OemThr Free \n", + "14 Man headsculpt Vertici Free \n", + "15 Blue low poly car Andres_R26 Free \n", + "16 Bath house architecture test folkvangr Free \n", + "17 Motorola moto g7 plus blue and red ES_3D Free \n", + "18 Lighting w1050263 Free \n", + "19 Office chair Esraa abdelsalam2711 Free \n", + "20 Free garden urn planter wave design Free \n", + "21 Table shara_d Free \n", + "22 Metal containers Adrian Kulawik Free \n", + "23 Coffee machine w1050263 Free \n", + "24 Sink w1050263 Free \n", + "25 Building 002 vini3dmodels Free \n", + "26 Table w1050263 Free \n", + "27 Cpu case fan DevmanModels Free \n", + "28 Canister MarkoffIN Free \n", + "29 Road spikes MarkoffIN Free \n", + ".. ... ... ... \n", + "470 Tama console Designconnected Free \n", + "471 Tama crédence Designconnected Free \n", + "472 Roly-poly chair Designconnected Free \n", + "473 Calee table lamp Designconnected Free \n", + "474 Song coffee tables Designconnected Free \n", + "475 Neil table lamp Designconnected Free \n", + "476 Melusine table lamp Designconnected Free \n", + "477 Mategot trolley Designconnected Free \n", + "478 Inciucio pendant lamp Designconnected Free \n", + "479 Riki trolley Designconnected Free \n", + "480 Cancan floor light Designconnected Free \n", + "481 Passe-passe coat rack Designconnected Free \n", + "482 Destructuree pendant lamp Designconnected Free \n", + "483 Sports bottle bomi1337 Free \n", + "484 Lego_bricks anubhav462 Free \n", + "485 Kids chair rayson278 Free \n", + "486 Antique oil lamp DTG Amusements Free \n", + "487 Diwali oil lamp DTG Amusements Free \n", + "488 Antique oil lamp DTG Amusements Free \n", + "489 Casual couple lowpoly rigged (free sample) Denys Almaral Free \n", + "490 Simple pouf Desert Night Free \n", + "491 Classic water fountain Marc Mons Free \n", + "492 Kitchen chef's knife sepandj Free \n", + "493 Dirty steam punk knight for unity GAMEASS Free \n", + "494 Shotgun (free) maskedmole Free \n", + "495 Quin the mantis for unity remake GAMEASS Free \n", + "496 Urn Iridesium Free \n", + "497 Armchair - fabric/wood materials matredo Free \n", + "498 Low poly grass pack Moi Loy Free \n", + "499 Piano bench Iridesium Free \n", + "\n", + " license published_date \\\n", + "0 - All Extended Uses 2019-07-21 \n", + "1 - Editorial Uses Only 2019-07-21 \n", + "2 - All Extended Uses 2019-07-20 \n", + "3 - All Extended Uses 2019-07-20 \n", + "4 - All Extended Uses 2019-07-20 \n", + "5 - All Extended Uses 2019-07-20 \n", + "6 - All Extended Uses 2019-07-20 \n", + "7 - All Extended Uses 2019-07-20 \n", + "8 - All Extended Uses 2019-07-20 \n", + "9 - All Extended Uses 2019-07-19 \n", + "10 - All Extended Uses 2019-07-19 \n", + "11 - All Extended Uses 2019-07-19 \n", + "12 - All Extended Uses 2019-07-19 \n", + "13 - All Extended Uses 2019-07-19 \n", + "14 - All Extended Uses 2019-07-19 \n", + "15 - All Extended Uses 2019-07-19 \n", + "16 - All Extended Uses 2019-07-18 \n", + "17 - Editorial Uses AllowedExtended Uses May Nee... 2019-07-18 \n", + "18 - All Extended Uses 2019-07-18 \n", + "19 - All Extended Uses 2019-07-17 \n", + "20 - All Extended Uses 2019-07-17 \n", + "21 - All Extended Uses 2019-07-14 \n", + "22 - All Extended Uses 2019-07-17 \n", + "23 - All Extended Uses 2019-07-17 \n", + "24 - All Extended Uses 2019-07-17 \n", + "25 - All Extended Uses 2019-07-15 \n", + "26 - All Extended Uses 2019-07-15 \n", + "27 - All Extended Uses 2019-07-14 \n", + "28 - All Extended Uses 2019-07-13 \n", + "29 - All Extended Uses 2019-07-13 \n", + ".. ... ... \n", + "470 - Editorial Uses Only 2019-03-18 \n", + "471 - Editorial Uses Only 2019-03-18 \n", + "472 - Editorial Uses Only 2019-03-18 \n", + "473 - Editorial Uses Only 2019-03-18 \n", + "474 - Editorial Uses Only 2019-03-18 \n", + "475 - Editorial Uses Only 2019-03-18 \n", + "476 - Editorial Uses Only 2019-03-18 \n", + "477 - Editorial Uses Only 2019-03-18 \n", + "478 - Editorial Uses Only 2019-03-18 \n", + "479 - Editorial Uses Only 2019-03-18 \n", + "480 - Editorial Uses Only 2019-03-18 \n", + "481 - Editorial Uses Only 2019-03-18 \n", + "482 - Editorial Uses Only 2019-03-18 \n", + "483 - All Extended Uses 2019-03-18 \n", + "484 - Editorial Uses AllowedExtended Uses May Nee... 2019-03-17 \n", + "485 - All Extended Uses 2019-03-17 \n", + "486 - All Extended Uses 2019-03-16 \n", + "487 - All Extended Uses 2019-03-16 \n", + "488 - All Extended Uses 2019-03-16 \n", + "489 - All Extended Uses 2019-03-16 \n", + "490 - All Extended Uses 2019-03-16 \n", + "491 - All Extended Uses 2019-03-15 \n", + "492 - All Extended Uses 2019-03-15 \n", + "493 - All Extended Uses 2019-03-15 \n", + "494 - All Extended Uses 2019-03-15 \n", + "495 - All Extended Uses 2019-03-15 \n", + "496 - Editorial Uses Only 2019-03-14 \n", + "497 - All Extended Uses 2019-03-14 \n", + "498 - All Extended Uses 2019-03-14 \n", + "499 - All Extended Uses 2019-03-13 \n", + "\n", + " formats_available \\\n", + "0 [OBJ ] \n", + "1 [OBJ ] \n", + "2 [OBJ ] \n", + "3 [OBJ ] \n", + "4 [FBX 1, 0\\n] \n", + "5 [3D Studio, FBX , OBJ ] \n", + "6 [FBX ] \n", + "7 [FBX , OBJ , Other ] \n", + "8 [] \n", + "9 [OBJ ] \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [OBJ , FBX , Collada ] \n", + "14 [] \n", + "15 [Other ] \n", + "16 [] \n", + "17 [3D Studio, 2011\\n, FBX 2011, OBJ 2011, VRML 2... \n", + "18 [3D Studio, OBJ , FBX , Other ] \n", + "19 [3D Studio, Collada , FBX , OBJ , Other ] \n", + "20 [OBJ , FBX , Collada ] \n", + "21 [FBX , Collada , OBJ ] \n", + "22 [OBJ 2019] \n", + "23 [OBJ , 3D Studio, FBX , Other ] \n", + "24 [3D Studio, OBJ , FBX , Other ] \n", + "25 [FBX 2016, OBJ 2016, Other 2016] \n", + "26 [3D Studio, FBX , OBJ , Other ] \n", + "27 [Other ] \n", + "28 [FBX ] \n", + "29 [FBX ] \n", + ".. ... \n", + "470 [FBX , Other ] \n", + "471 [FBX , Other ] \n", + "472 [FBX ] \n", + "473 [FBX , Other ] \n", + "474 [FBX , Other ] \n", + "475 [FBX , Other ] \n", + "476 [FBX , Other ] \n", + "477 [FBX , Other ] \n", + "478 [FBX ] \n", + "479 [FBX , Other ] \n", + "480 [FBX , Other ] \n", + "481 [FBX , Other ] \n", + "482 [FBX ] \n", + "483 [FBX , Other , OBJ , STL ] \n", + "484 [FBX ] \n", + "485 [] \n", + "486 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "487 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "488 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "489 [FBX 2014] \n", + "490 [] \n", + "491 [OBJ 2016, FBX 2016] \n", + "492 [OBJ , Other , FBX , OpenFlight , IGES , 3D St... \n", + "493 [] \n", + "494 [FBX ] \n", + "495 [] \n", + "496 [FBX , OBJ , STL , Other ] \n", + "497 [] \n", + "498 [FBX ] \n", + "499 [FBX , OBJ , STL , Other ] \n", + "\n", + " list_categories \\\n", + "0 [3D Model, characters, people, man] \n", + "1 [3D Model, nature, plants, grasses, ornamental... \n", + "2 [3D Model, sports, outdoor sports, scuba, divi... \n", + "3 [3D Model, toys and games, games, dominos] \n", + "4 [3D Model, symbols] \n", + "5 [3D Model, furnishings, cupboard, showcase] \n", + "6 [3D Model, architecture, building, commercial ... \n", + "7 [3D Model, weaponry, weapons, firearms, rifle,... \n", + "8 [3D Model, science, chemistry, atom] \n", + "9 [3D Model, interior design, housewares, fan, b... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [3D Model, interior design, housewares, dining... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [3D Model, technology, phone, cellphone, smart... \n", + "18 [3D Model, interior design, fixtures, lighting... \n", + "19 [3D Model, furnishings, seating, chair, office... \n", + "20 [3D Model, interior design, housewares, genera... \n", + "21 [3D Model, furnishings, table] \n", + "22 [3D Model, industrial, industrial container, c... \n", + "23 [3D Model, interior design, appliance, commerc... \n", + "24 [3D Model, interior design, fixtures, sink, ki... \n", + "25 [3D Model, architecture, building, residential... \n", + "26 [3D Model, furnishings, table] \n", + "27 [3D Model, technology, computer equipment, com... \n", + "28 [3D Model, industrial, industrial container, f... \n", + "29 [3D Model, architecture, urban design, street ... \n", + ".. ... \n", + "470 [3D Model, furnishings, table, console table] \n", + "471 [3D Model, furnishings, sideboard] \n", + "472 [3D Model, furnishings, seating, chair, side c... \n", + "473 [3D Model, interior design, fixtures, lighting... \n", + "474 [3D Model, furnishings, table, coffee table] \n", + "475 [3D Model, interior design, fixtures, lighting... \n", + "476 [3D Model, interior design, fixtures, lighting... \n", + "477 [3D Model, industrial, tools, cart] \n", + "478 [3D Model, interior design, fixtures, lighting... \n", + "479 [3D Model, furnishings, kitchen cart] \n", + "480 [3D Model, interior design, fixtures, lighting... \n", + "481 [3D Model, furnishings, rack, clothes rack, co... \n", + "482 [3D Model, interior design, fixtures, lighting... \n", + "483 [3D Model, sports, exercise equipment, sports ... \n", + "484 [3D Model, toys and games, toys, building toys... \n", + "485 [3D Model, furnishings, seating, chair, childr... \n", + "486 [3D Model, interior design, fixtures, lighting... \n", + "487 [3D Model, interior design, fixtures, lighting... \n", + "488 [3D Model, interior design, fixtures, lighting... \n", + "489 [3D Model, characters, people, man, cartoon man] \n", + "490 [3D Model, furnishings, seating, chair, foot r... \n", + "491 [3D Model, architecture, site components, land... \n", + "492 [3D Model, interior design, housewares, kitche... \n", + "493 [3D Model, characters, people, military people... \n", + "494 [3D Model, weaponry, weapons, firearms, shotgun] \n", + "495 [3D Model, characters, mythological creatures,... \n", + "496 [3D Model, interior design, housewares, genera... \n", + "497 [3D Model, furnishings, seating, chair, lounge... \n", + "498 [3D Model, nature, plants, cartoon plant] \n", + "499 [3D Model, furnishings, seating, bench, wooden... \n", + "\n", + " links_categories \\\n", + "0 [https://www.turbosquid.com/Search/3d-models, ... \n", + "1 [https://www.turbosquid.com/Search/3d-models, ... \n", + "2 [https://www.turbosquid.com/Search/3d-models, ... \n", + "3 [https://www.turbosquid.com/Search/3d-models, ... \n", + "4 [https://www.turbosquid.com/Search/3d-models, ... \n", + "5 [https://www.turbosquid.com/Search/3d-models, ... \n", + "6 [https://www.turbosquid.com/Search/3d-models, ... \n", + "7 [https://www.turbosquid.com/Search/3d-models, ... \n", + "8 [https://www.turbosquid.com/Search/3d-models, ... \n", + "9 [https://www.turbosquid.com/Search/3d-models, ... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [https://www.turbosquid.com/Search/3d-models, ... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [https://www.turbosquid.com/Search/3d-models, ... \n", + "18 [https://www.turbosquid.com/Search/3d-models, ... \n", + "19 [https://www.turbosquid.com/Search/3d-models, ... \n", + "20 [https://www.turbosquid.com/Search/3d-models, ... \n", + "21 [https://www.turbosquid.com/Search/3d-models, ... \n", + "22 [https://www.turbosquid.com/Search/3d-models, ... \n", + "23 [https://www.turbosquid.com/Search/3d-models, ... \n", + "24 [https://www.turbosquid.com/Search/3d-models, ... \n", + "25 [https://www.turbosquid.com/Search/3d-models, ... \n", + "26 [https://www.turbosquid.com/Search/3d-models, ... \n", + "27 [https://www.turbosquid.com/Search/3d-models, ... \n", + "28 [https://www.turbosquid.com/Search/3d-models, ... \n", + "29 [https://www.turbosquid.com/Search/3d-models, ... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3d-models, ... \n", + "471 [https://www.turbosquid.com/Search/3d-models, ... \n", + "472 [https://www.turbosquid.com/Search/3d-models, ... \n", + "473 [https://www.turbosquid.com/Search/3d-models, ... \n", + "474 [https://www.turbosquid.com/Search/3d-models, ... \n", + "475 [https://www.turbosquid.com/Search/3d-models, ... \n", + "476 [https://www.turbosquid.com/Search/3d-models, ... \n", + "477 [https://www.turbosquid.com/Search/3d-models, ... \n", + "478 [https://www.turbosquid.com/Search/3d-models, ... \n", + "479 [https://www.turbosquid.com/Search/3d-models, ... \n", + "480 [https://www.turbosquid.com/Search/3d-models, ... \n", + "481 [https://www.turbosquid.com/Search/3d-models, ... \n", + "482 [https://www.turbosquid.com/Search/3d-models, ... \n", + "483 [https://www.turbosquid.com/Search/3d-models, ... \n", + "484 [https://www.turbosquid.com/Search/3d-models, ... \n", + "485 [https://www.turbosquid.com/Search/3d-models, ... \n", + "486 [https://www.turbosquid.com/Search/3d-models, ... \n", + "487 [https://www.turbosquid.com/Search/3d-models, ... \n", + "488 [https://www.turbosquid.com/Search/3d-models, ... \n", + "489 [https://www.turbosquid.com/Search/3d-models, ... \n", + "490 [https://www.turbosquid.com/Search/3d-models, ... \n", + "491 [https://www.turbosquid.com/Search/3d-models, ... \n", + "492 [https://www.turbosquid.com/Search/3d-models, ... \n", + "493 [https://www.turbosquid.com/Search/3d-models, ... \n", + "494 [https://www.turbosquid.com/Search/3d-models, ... \n", + "495 [https://www.turbosquid.com/Search/3d-models, ... \n", + "496 [https://www.turbosquid.com/Search/3d-models, ... \n", + "497 [https://www.turbosquid.com/Search/3d-models, ... \n", + "498 [https://www.turbosquid.com/Search/3d-models, ... \n", + "499 [https://www.turbosquid.com/Search/3d-models, ... \n", + "\n", + " list_tags \\\n", + "0 [characters, man, male, human, zbrush, ztl, ob... \n", + "1 [minecraft, grass, block, cube] \n", + "2 [Helmet, Undersea] \n", + "3 [domino, dominoes, black, white, tile] \n", + "4 [primitives, prototyping, blender, unity, geom... \n", + "5 [counter, and, bar, stools, Are, same, specifi... \n", + "6 [House, shop, store, stall, depot, trade, cabin.] \n", + "7 [weapon, sci-fi, low-poly, game-ready, sniper-... \n", + "8 [atom, science, chemistry, chemical, scientifi... \n", + "9 [Fan, ventilateur] \n", + "10 [leather, furniture, seat, decor, stool, other] \n", + "11 [indoors, room, furniture, seat, wood, chair, ... \n", + "12 [flat, apartment, household, building, kitchen... \n", + "13 [coffee, dinner, breakfast, cup, plate, porcel... \n", + "14 [Head, man, male, human] \n", + "15 [low, poly, car, blue] \n", + "16 [column, architecture, marble, bedrock, roman,... \n", + "17 [3d, model, 3ds, max, Motorola, Moto, G7, Plus... \n", + "18 [#lighting, #light, bulb, #firelight] \n", + "19 [#chair, #office, #modern, #3dsmax, #3dmodelin... \n", + "20 [Urn, Planter, Vase, Garden, pot, decor, Decor... \n", + "21 [Table, Home, Decor, Kitchen, TableLegs, Unwra... \n", + "22 [metal, container, mars, kitbash, modular, pro... \n", + "23 [#coffee, #machine, #vending, machine] \n", + "24 [#sink, #Kitchen, #tap, #faucet, #bibcock] \n", + "25 [architecture, house, home, building, suburb, ... \n", + "26 [table, Kitchen, cooktable, Breakfast, Lunch, ... \n", + "27 [3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler] \n", + "28 [Canister, vessel, vial, container, fuel, green] \n", + "29 [Spikes, Road, Obstacle, Hazard] \n", + ".. ... \n", + "470 [Console-tables, Gallotti-and-Radice, Carlo-Co... \n", + "471 [Sideboards, Gallotti-and-Radice, Carlo-Colomb... \n", + "472 [Chairs, Driade, Faye-Toogood, Plastic, Contem... \n", + "473 [Table-lights, South-Hill-Home, Brass, Painted... \n", + "474 [Coffee-tables, Minotti, Rodolfo-Dordoni, Natu... \n", + "475 [Table-lights, Ligne-Roset, -Ligne-Roset, Glas... \n", + "476 [Table-lights, Ligne-Roset, Peter-Maly, Solid-... \n", + "477 [Console-tables, Occasional-tables, Gubi, Math... \n", + "478 [Pendant-lights, Gibas, Painted-metal, Contemp... \n", + "479 [Trays, Gallotti-and-Radice, Pierangelo-Gallot... \n", + "480 [Floor-lights, Ligne-Roset, Patrick-Zulauf, Co... \n", + "481 [Cloth-stands, Ligne-Roset, Philippe-Nigro, So... \n", + "482 [Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak... \n", + "483 [bottle, metal, sport, sports, drink, hydro, v... \n", + "484 [Lego, Bricks] \n", + "485 [table, and, chair] \n", + "486 [Lamp, oil, lamp] \n", + "487 [Lamp, Diwali, Oil, Lamp] \n", + "488 [Lamp, Oil, Lamp] \n", + "489 [people, rigged, character, lowpoly, style, wo... \n", + "490 [simple, pouf, chair, fabric, modern, 3d, model] \n", + "491 [water, fountain, architecture, exterior, stre... \n", + "492 [knife, kitchen, sharp, still, wood, brass, bl... \n", + "493 [knight, unity, humanoid, rigged, character, s... \n", + "494 [shotgun, free, firearm] \n", + "495 [unity, RPG, monster, bug, creature, sci, fi, ... \n", + "496 [urn, ashes, tomb, bottle, jar, ancient, ossua... \n", + "497 [chair, armchair, furniture, interior, design] \n", + "498 [lowpoly, grass] \n", + "499 [Piano, bench, grand, seat, stool, desk, side,... \n", + "\n", + " links_tags \\\n", + "0 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "1 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "2 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "3 [https://www.turbosquid.com/Search/3D-Models/d... \n", + "4 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "5 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "6 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "7 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "8 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "9 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "10 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "11 [https://www.turbosquid.com/Search/3D-Models/i... \n", + "12 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "13 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "14 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "15 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "16 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "17 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "18 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "19 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "20 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "21 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "22 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "23 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "24 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "25 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "26 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "27 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "28 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "29 [https://www.turbosquid.com/Search/3D-Models/s... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "471 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "472 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "473 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "474 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "475 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "476 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "477 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "478 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "479 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "480 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "481 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "482 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "483 [https://www.turbosquid.com/Search/3D-Models/b... \n", + "484 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "485 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "486 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "487 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "488 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "489 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "490 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "491 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "492 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "493 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "494 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "495 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "496 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "497 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "498 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "499 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "\n", + " description \n", + "0 Free model. You can use for base anatomy/propo... \n", + "1 \n", + "2 This is a helmet I made.CC0 License \n", + "3 Models of 5 different dominoes.Polygons/Vertic... \n", + "4 I was starting work on a new game in unity and... \n", + "5 counter and bar stools Are the same specificat... \n", + "6 Small low poly shop cabin. \n", + "7 Game ready model, low poly can used as a game ... \n", + "8 3D model for the atom. The whole project was m... \n", + "9 Vintage fan \n", + "10 This model was created for an art challenge an... \n", + "11 Indoors test scene made with Blender 2.8.It co... \n", + "12 This is a simple architecture test scene made ... \n", + "13 - Ceramic coffee cup with plate -This model co... \n", + "14 Just a sculpting/texturing practice I did. \n", + "15 free 3d obj and Maya please give me. feedback,... \n", + "16 This is a simple architecture test scene made ... \n", + "17 Detailed High definition model Xiaomi Redmi 7A... \n", + "18 \n", + "19 **office chair** with vray material ready to p... \n", + "20 * This Urn is a high quality polygonal model w... \n", + "21 OBJ, FBX, DAE files of an unwrapped 3D object ... \n", + "22 Metal Containers3D Model Ready for Games. PBR ... \n", + "23 Saved as 3ds max 2015 version file.As you work... \n", + "24 #sink #Kitchen #tap #faucet #bibcock \n", + "25 This is a simple house model. Except for the c... \n", + "26 * Saved as 3ds max 2015 version file.Nowadays,... \n", + "27 A CPU fan.Low poly and mid poly includedBlend ... \n", + "28 Low poly fuel canister. \n", + "29 Low poly road obstacle with texture. \n", + ".. ... \n", + "470 Tama Console by Gallotti & Radice | 3d model p... \n", + "471 Tama Crédence by Gallotti & Radice | 3d model ... \n", + "472 Roly-Poly Chair by Driade | 3d model produced ... \n", + "473 Calee Table Lamp by South Hill Home | 3d model... \n", + "474 Song Coffee Tables by Minotti | 3d model produ... \n", + "475 Neil Table Lamp by Ligne Roset | 3d model prod... \n", + "476 Melusine Table Lamp by Ligne Roset | 3d model ... \n", + "477 Mategot Trolley by Gubi | 3d model produced by... \n", + "478 Inciucio Pendant Lamp by Gibas | 3d model prod... \n", + "479 Riki Trolley by Gallotti & Radice | 3d model p... \n", + "480 Cancan Floor Light by Ligne Roset | 3d model p... \n", + "481 Passe-Passe Coat Rack by Ligne Roset | 3d mode... \n", + "482 Destructuree Pendant Lamp by Ligne Roset | 3d ... \n", + "483 **********************************************... \n", + "484 Lego Bricks Basic \n", + "485 cinema 4d model of simple kids table and chair... \n", + "486 A collection of antique oil lampsThis design i... \n", + "487 Diwali Oil LampThis design is not animated. 80... \n", + "488 Antique Oil LampThis design is not animated. 4... \n", + "489 LowPoly Style Couple, casual man and woman. Cr... \n", + "490 Simple PoufDimensions: L 450 x W 450 x H 350 m... \n", + "491 Modeled with Autodesk Maya 2016 using polygons... \n", + "492 It's a simple chef's knife with a wooden handl... \n", + "493 humanoid rigged character for unity.this packa... \n", + "494 Free shotgun ready to use for your game, fully... \n", + "495 'CREATURE FOR UNITY' REMAKED!QUIN the mantis R... \n", + "496 This is an older looking Medieval or Victorian... \n", + "497 | MODEL DESCRIPTION |-This is a model of a mod... \n", + "498 Pack Contains: 13 types of Grass(FBX),7 types ... \n", + "499 This is an older, worn, piano bench (or any ki... \n", + "\n", + "[500 rows x 11 columns]" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_scraping['formats_available'] = [re.findall(r'\\b\\w+\\s(?:\\w+)?',str(formato)) for formato in formatos]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Finalmente podemos hacer un reordenamiento de las columnas." + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": {}, + "outputs": [], + "source": [ + "orden_columnas = ['name_model', 'description','owner','price','license','published_date',\n", + " 'formats_available','list_categories','links_categories','list_tags','links_tags']" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_modeldescriptionownerpricelicensepublished_dateformats_availablelist_categorieslinks_categorieslist_tagslinks_tags
0Free base male anatomyFree model. You can use for base anatomy/propo...niyooFree- All Extended Uses2019-07-21[OBJ ][3D Model, characters, people, man][https://www.turbosquid.com/Search/3d-models, ...[characters, man, male, human, zbrush, ztl, ob...[https://www.turbosquid.com/Search/3D-Models/c...
1Minecraft grass blockRender at NightFree- Editorial Uses Only2019-07-21[OBJ ][3D Model, nature, plants, grasses, ornamental...[https://www.turbosquid.com/Search/3d-models, ...[minecraft, grass, block, cube][https://www.turbosquid.com/Search/3D-Models/m...
2Diving helmetThis is a helmet I made.CC0 LicenseNotJerdFree- All Extended Uses2019-07-20[OBJ ][3D Model, sports, outdoor sports, scuba, divi...[https://www.turbosquid.com/Search/3d-models, ...[Helmet, Undersea][https://www.turbosquid.com/Search/3D-Models/h...
3DominoesModels of 5 different dominoes.Polygons/Vertic...Render at NightFree- All Extended Uses2019-07-20[OBJ ][3D Model, toys and games, games, dominos][https://www.turbosquid.com/Search/3d-models, ...[domino, dominoes, black, white, tile][https://www.turbosquid.com/Search/3D-Models/d...
4Prototyping polygonsI was starting work on a new game in unity and...HyperChromaticaFree- All Extended Uses2019-07-20[FBX 1, 0\\n][3D Model, symbols][https://www.turbosquid.com/Search/3d-models, ...[primitives, prototyping, blender, unity, geom...[https://www.turbosquid.com/Search/3D-Models/p...
5Counter and bar stoolscounter and bar stools Are the same specificat...ESalemFree- All Extended Uses2019-07-20[3D Studio, FBX , OBJ ][3D Model, furnishings, cupboard, showcase][https://www.turbosquid.com/Search/3d-models, ...[counter, and, bar, stools, Are, same, specifi...[https://www.turbosquid.com/Search/3D-Models/c...
6Cabin shopSmall low poly shop cabin.MarkoffINFree- All Extended Uses2019-07-20[FBX ][3D Model, architecture, building, commercial ...[https://www.turbosquid.com/Search/3d-models, ...[House, shop, store, stall, depot, trade, cabin.][https://www.turbosquid.com/Search/3D-Models/h...
7Viper sniper rifleGame ready model, low poly can used as a game ...Young_WizardFree- All Extended Uses2019-07-20[FBX , OBJ , Other ][3D Model, weaponry, weapons, firearms, rifle,...[https://www.turbosquid.com/Search/3d-models, ...[weapon, sci-fi, low-poly, game-ready, sniper-...[https://www.turbosquid.com/Search/3D-Models/w...
8Atom3D model for the atom. The whole project was m...Abdo AshrafFree- All Extended Uses2019-07-20[][3D Model, science, chemistry, atom][https://www.turbosquid.com/Search/3d-models, ...[atom, science, chemistry, chemical, scientifi...[https://www.turbosquid.com/Search/3D-Models/a...
9FanVintage fanAkumax MaximeFree- All Extended Uses2019-07-19[OBJ ][3D Model, interior design, housewares, fan, b...[https://www.turbosquid.com/Search/3d-models, ...[Fan, ventilateur][https://www.turbosquid.com/Search/3D-Models/f...
10Pouf stoolThis model was created for an art challenge an...folkvangrFree- All Extended Uses2019-07-19[][][][leather, furniture, seat, decor, stool, other][https://www.turbosquid.com/Search/3D-Models/l...
11Indoor testIndoors test scene made with Blender 2.8.It co...folkvangrFree- All Extended Uses2019-07-19[][][][indoors, room, furniture, seat, wood, chair, ...[https://www.turbosquid.com/Search/3D-Models/i...
12Apartment basic floor planThis is a simple architecture test scene made ...folkvangrFree- All Extended Uses2019-07-19[][][][flat, apartment, household, building, kitchen...[https://www.turbosquid.com/Search/3D-Models/f...
13Coffee cup- Ceramic coffee cup with plate -This model co...OemThrFree- All Extended Uses2019-07-19[OBJ , FBX , Collada ][3D Model, interior design, housewares, dining...[https://www.turbosquid.com/Search/3d-models, ...[coffee, dinner, breakfast, cup, plate, porcel...[https://www.turbosquid.com/Search/3D-Models/c...
14Man headsculptJust a sculpting/texturing practice I did.VerticiFree- All Extended Uses2019-07-19[][][][Head, man, male, human][https://www.turbosquid.com/Search/3D-Models/h...
15Blue low poly carfree 3d obj and Maya please give me. feedback,...Andres_R26Free- All Extended Uses2019-07-19[Other ][][][low, poly, car, blue][https://www.turbosquid.com/Search/3D-Models/l...
16Bath house architecture testThis is a simple architecture test scene made ...folkvangrFree- All Extended Uses2019-07-18[][][][column, architecture, marble, bedrock, roman,...[https://www.turbosquid.com/Search/3D-Models/c...
17Motorola moto g7 plus blue and redDetailed High definition model Xiaomi Redmi 7A...ES_3DFree- Editorial Uses AllowedExtended Uses May Nee...2019-07-18[3D Studio, 2011\\n, FBX 2011, OBJ 2011, VRML 2...[3D Model, technology, phone, cellphone, smart...[https://www.turbosquid.com/Search/3d-models, ...[3d, model, 3ds, max, Motorola, Moto, G7, Plus...[https://www.turbosquid.com/Search/3D-Models/3...
18Lightingw1050263Free- All Extended Uses2019-07-18[3D Studio, OBJ , FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[#lighting, #light, bulb, #firelight][https://www.turbosquid.com/Search/3D-Models/%...
19Office chair**office chair** with vray material ready to p...Esraa abdelsalam2711Free- All Extended Uses2019-07-17[3D Studio, Collada , FBX , OBJ , Other ][3D Model, furnishings, seating, chair, office...[https://www.turbosquid.com/Search/3d-models, ...[#chair, #office, #modern, #3dsmax, #3dmodelin...[https://www.turbosquid.com/Search/3D-Models/%...
20Free garden urn planter* This Urn is a high quality polygonal model w...wave designFree- All Extended Uses2019-07-17[OBJ , FBX , Collada ][3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[Urn, Planter, Vase, Garden, pot, decor, Decor...[https://www.turbosquid.com/Search/3D-Models/u...
21TableOBJ, FBX, DAE files of an unwrapped 3D object ...shara_dFree- All Extended Uses2019-07-14[FBX , Collada , OBJ ][3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[Table, Home, Decor, Kitchen, TableLegs, Unwra...[https://www.turbosquid.com/Search/3D-Models/t...
22Metal containersMetal Containers3D Model Ready for Games. PBR ...Adrian KulawikFree- All Extended Uses2019-07-17[OBJ 2019][3D Model, industrial, industrial container, c...[https://www.turbosquid.com/Search/3d-models, ...[metal, container, mars, kitbash, modular, pro...[https://www.turbosquid.com/Search/3D-Models/m...
23Coffee machineSaved as 3ds max 2015 version file.As you work...w1050263Free- All Extended Uses2019-07-17[OBJ , 3D Studio, FBX , Other ][3D Model, interior design, appliance, commerc...[https://www.turbosquid.com/Search/3d-models, ...[#coffee, #machine, #vending, machine][https://www.turbosquid.com/Search/3D-Models/%...
24Sink#sink #Kitchen #tap #faucet #bibcockw1050263Free- All Extended Uses2019-07-17[3D Studio, OBJ , FBX , Other ][3D Model, interior design, fixtures, sink, ki...[https://www.turbosquid.com/Search/3d-models, ...[#sink, #Kitchen, #tap, #faucet, #bibcock][https://www.turbosquid.com/Search/3D-Models/%...
25Building 002This is a simple house model. Except for the c...vini3dmodelsFree- All Extended Uses2019-07-15[FBX 2016, OBJ 2016, Other 2016][3D Model, architecture, building, residential...[https://www.turbosquid.com/Search/3d-models, ...[architecture, house, home, building, suburb, ...[https://www.turbosquid.com/Search/3D-Models/a...
26Table* Saved as 3ds max 2015 version file.Nowadays,...w1050263Free- All Extended Uses2019-07-15[3D Studio, FBX , OBJ , Other ][3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[table, Kitchen, cooktable, Breakfast, Lunch, ...[https://www.turbosquid.com/Search/3D-Models/t...
27Cpu case fanA CPU fan.Low poly and mid poly includedBlend ...DevmanModelsFree- All Extended Uses2019-07-14[Other ][3D Model, technology, computer equipment, com...[https://www.turbosquid.com/Search/3d-models, ...[3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler][https://www.turbosquid.com/Search/3D-Models/3...
28CanisterLow poly fuel canister.MarkoffINFree- All Extended Uses2019-07-13[FBX ][3D Model, industrial, industrial container, f...[https://www.turbosquid.com/Search/3d-models, ...[Canister, vessel, vial, container, fuel, green][https://www.turbosquid.com/Search/3D-Models/c...
29Road spikesLow poly road obstacle with texture.MarkoffINFree- All Extended Uses2019-07-13[FBX ][3D Model, architecture, urban design, street ...[https://www.turbosquid.com/Search/3d-models, ...[Spikes, Road, Obstacle, Hazard][https://www.turbosquid.com/Search/3D-Models/s...
....................................
470Tama consoleTama Console by Gallotti & Radice | 3d model p...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, table, console table][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Gallotti-and-Radice, Carlo-Co...[https://www.turbosquid.com/Search/3D-Models/c...
471Tama crédenceTama Crédence by Gallotti & Radice | 3d model ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, sideboard][https://www.turbosquid.com/Search/3d-models, ...[Sideboards, Gallotti-and-Radice, Carlo-Colomb...[https://www.turbosquid.com/Search/3D-Models/s...
472Roly-poly chairRoly-Poly Chair by Driade | 3d model produced ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, furnishings, seating, chair, side c...[https://www.turbosquid.com/Search/3d-models, ...[Chairs, Driade, Faye-Toogood, Plastic, Contem...[https://www.turbosquid.com/Search/3D-Models/c...
473Calee table lampCalee Table Lamp by South Hill Home | 3d model...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, South-Hill-Home, Brass, Painted...[https://www.turbosquid.com/Search/3D-Models/t...
474Song coffee tablesSong Coffee Tables by Minotti | 3d model produ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, table, coffee table][https://www.turbosquid.com/Search/3d-models, ...[Coffee-tables, Minotti, Rodolfo-Dordoni, Natu...[https://www.turbosquid.com/Search/3D-Models/c...
475Neil table lampNeil Table Lamp by Ligne Roset | 3d model prod...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, -Ligne-Roset, Glas...[https://www.turbosquid.com/Search/3D-Models/t...
476Melusine table lampMelusine Table Lamp by Ligne Roset | 3d model ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, Peter-Maly, Solid-...[https://www.turbosquid.com/Search/3D-Models/t...
477Mategot trolleyMategot Trolley by Gubi | 3d model produced by...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, industrial, tools, cart][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Occasional-tables, Gubi, Math...[https://www.turbosquid.com/Search/3D-Models/c...
478Inciucio pendant lampInciucio Pendant Lamp by Gibas | 3d model prod...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Gibas, Painted-metal, Contemp...[https://www.turbosquid.com/Search/3D-Models/p...
479Riki trolleyRiki Trolley by Gallotti & Radice | 3d model p...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, kitchen cart][https://www.turbosquid.com/Search/3d-models, ...[Trays, Gallotti-and-Radice, Pierangelo-Gallot...[https://www.turbosquid.com/Search/3D-Models/t...
480Cancan floor lightCancan Floor Light by Ligne Roset | 3d model p...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Floor-lights, Ligne-Roset, Patrick-Zulauf, Co...[https://www.turbosquid.com/Search/3D-Models/f...
481Passe-passe coat rackPasse-Passe Coat Rack by Ligne Roset | 3d mode...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, rack, clothes rack, co...[https://www.turbosquid.com/Search/3d-models, ...[Cloth-stands, Ligne-Roset, Philippe-Nigro, So...[https://www.turbosquid.com/Search/3D-Models/c...
482Destructuree pendant lampDestructuree Pendant Lamp by Ligne Roset | 3d ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak...[https://www.turbosquid.com/Search/3D-Models/p...
483Sports bottle**********************************************...bomi1337Free- All Extended Uses2019-03-18[FBX , Other , OBJ , STL ][3D Model, sports, exercise equipment, sports ...[https://www.turbosquid.com/Search/3d-models, ...[bottle, metal, sport, sports, drink, hydro, v...[https://www.turbosquid.com/Search/3D-Models/b...
484Lego_bricksLego Bricks Basicanubhav462Free- Editorial Uses AllowedExtended Uses May Nee...2019-03-17[FBX ][3D Model, toys and games, toys, building toys...[https://www.turbosquid.com/Search/3d-models, ...[Lego, Bricks][https://www.turbosquid.com/Search/3D-Models/l...
485Kids chaircinema 4d model of simple kids table and chair...rayson278Free- All Extended Uses2019-03-17[][3D Model, furnishings, seating, chair, childr...[https://www.turbosquid.com/Search/3d-models, ...[table, and, chair][https://www.turbosquid.com/Search/3D-Models/t...
486Antique oil lampA collection of antique oil lampsThis design i...DTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, oil, lamp][https://www.turbosquid.com/Search/3D-Models/l...
487Diwali oil lampDiwali Oil LampThis design is not animated. 80...DTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Diwali, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...
488Antique oil lampAntique Oil LampThis design is not animated. 4...DTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...
489Casual couple lowpoly rigged (free sample)LowPoly Style Couple, casual man and woman. Cr...Denys AlmaralFree- All Extended Uses2019-03-16[FBX 2014][3D Model, characters, people, man, cartoon man][https://www.turbosquid.com/Search/3d-models, ...[people, rigged, character, lowpoly, style, wo...[https://www.turbosquid.com/Search/3D-Models/p...
490Simple poufSimple PoufDimensions: L 450 x W 450 x H 350 m...Desert NightFree- All Extended Uses2019-03-16[][3D Model, furnishings, seating, chair, foot r...[https://www.turbosquid.com/Search/3d-models, ...[simple, pouf, chair, fabric, modern, 3d, model][https://www.turbosquid.com/Search/3D-Models/s...
491Classic water fountainModeled with Autodesk Maya 2016 using polygons...Marc MonsFree- All Extended Uses2019-03-15[OBJ 2016, FBX 2016][3D Model, architecture, site components, land...[https://www.turbosquid.com/Search/3d-models, ...[water, fountain, architecture, exterior, stre...[https://www.turbosquid.com/Search/3D-Models/w...
492Kitchen chef's knifeIt's a simple chef's knife with a wooden handl...sepandjFree- All Extended Uses2019-03-15[OBJ , Other , FBX , OpenFlight , IGES , 3D St...[3D Model, interior design, housewares, kitche...[https://www.turbosquid.com/Search/3d-models, ...[knife, kitchen, sharp, still, wood, brass, bl...[https://www.turbosquid.com/Search/3D-Models/k...
493Dirty steam punk knight for unityhumanoid rigged character for unity.this packa...GAMEASSFree- All Extended Uses2019-03-15[][3D Model, characters, people, military people...[https://www.turbosquid.com/Search/3d-models, ...[knight, unity, humanoid, rigged, character, s...[https://www.turbosquid.com/Search/3D-Models/k...
494Shotgun (free)Free shotgun ready to use for your game, fully...maskedmoleFree- All Extended Uses2019-03-15[FBX ][3D Model, weaponry, weapons, firearms, shotgun][https://www.turbosquid.com/Search/3d-models, ...[shotgun, free, firearm][https://www.turbosquid.com/Search/3D-Models/s...
495Quin the mantis for unity remake'CREATURE FOR UNITY' REMAKED!QUIN the mantis R...GAMEASSFree- All Extended Uses2019-03-15[][3D Model, characters, mythological creatures,...[https://www.turbosquid.com/Search/3d-models, ...[unity, RPG, monster, bug, creature, sci, fi, ...[https://www.turbosquid.com/Search/3D-Models/u...
496UrnThis is an older looking Medieval or Victorian...IridesiumFree- Editorial Uses Only2019-03-14[FBX , OBJ , STL , Other ][3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[urn, ashes, tomb, bottle, jar, ancient, ossua...[https://www.turbosquid.com/Search/3D-Models/u...
497Armchair - fabric/wood materials| MODEL DESCRIPTION |-This is a model of a mod...matredoFree- All Extended Uses2019-03-14[][3D Model, furnishings, seating, chair, lounge...[https://www.turbosquid.com/Search/3d-models, ...[chair, armchair, furniture, interior, design][https://www.turbosquid.com/Search/3D-Models/c...
498Low poly grass packPack Contains: 13 types of Grass(FBX),7 types ...Moi LoyFree- All Extended Uses2019-03-14[FBX ][3D Model, nature, plants, cartoon plant][https://www.turbosquid.com/Search/3d-models, ...[lowpoly, grass][https://www.turbosquid.com/Search/3D-Models/l...
499Piano benchThis is an older, worn, piano bench (or any ki...IridesiumFree- All Extended Uses2019-03-13[FBX , OBJ , STL , Other ][3D Model, furnishings, seating, bench, wooden...[https://www.turbosquid.com/Search/3d-models, ...[Piano, bench, grand, seat, stool, desk, side,...[https://www.turbosquid.com/Search/3D-Models/p...
\n", + "

500 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " name_model \\\n", + "0 Free base male anatomy \n", + "1 Minecraft grass block \n", + "2 Diving helmet \n", + "3 Dominoes \n", + "4 Prototyping polygons \n", + "5 Counter and bar stools \n", + "6 Cabin shop \n", + "7 Viper sniper rifle \n", + "8 Atom \n", + "9 Fan \n", + "10 Pouf stool \n", + "11 Indoor test \n", + "12 Apartment basic floor plan \n", + "13 Coffee cup \n", + "14 Man headsculpt \n", + "15 Blue low poly car \n", + "16 Bath house architecture test \n", + "17 Motorola moto g7 plus blue and red \n", + "18 Lighting \n", + "19 Office chair \n", + "20 Free garden urn planter \n", + "21 Table \n", + "22 Metal containers \n", + "23 Coffee machine \n", + "24 Sink \n", + "25 Building 002 \n", + "26 Table \n", + "27 Cpu case fan \n", + "28 Canister \n", + "29 Road spikes \n", + ".. ... \n", + "470 Tama console \n", + "471 Tama crédence \n", + "472 Roly-poly chair \n", + "473 Calee table lamp \n", + "474 Song coffee tables \n", + "475 Neil table lamp \n", + "476 Melusine table lamp \n", + "477 Mategot trolley \n", + "478 Inciucio pendant lamp \n", + "479 Riki trolley \n", + "480 Cancan floor light \n", + "481 Passe-passe coat rack \n", + "482 Destructuree pendant lamp \n", + "483 Sports bottle \n", + "484 Lego_bricks \n", + "485 Kids chair \n", + "486 Antique oil lamp \n", + "487 Diwali oil lamp \n", + "488 Antique oil lamp \n", + "489 Casual couple lowpoly rigged (free sample) \n", + "490 Simple pouf \n", + "491 Classic water fountain \n", + "492 Kitchen chef's knife \n", + "493 Dirty steam punk knight for unity \n", + "494 Shotgun (free) \n", + "495 Quin the mantis for unity remake \n", + "496 Urn \n", + "497 Armchair - fabric/wood materials \n", + "498 Low poly grass pack \n", + "499 Piano bench \n", + "\n", + " description owner \\\n", + "0 Free model. You can use for base anatomy/propo... niyoo \n", + "1 Render at Night \n", + "2 This is a helmet I made.CC0 License NotJerd \n", + "3 Models of 5 different dominoes.Polygons/Vertic... Render at Night \n", + "4 I was starting work on a new game in unity and... HyperChromatica \n", + "5 counter and bar stools Are the same specificat... ESalem \n", + "6 Small low poly shop cabin. MarkoffIN \n", + "7 Game ready model, low poly can used as a game ... Young_Wizard \n", + "8 3D model for the atom. The whole project was m... Abdo Ashraf \n", + "9 Vintage fan Akumax Maxime \n", + "10 This model was created for an art challenge an... folkvangr \n", + "11 Indoors test scene made with Blender 2.8.It co... folkvangr \n", + "12 This is a simple architecture test scene made ... folkvangr \n", + "13 - Ceramic coffee cup with plate -This model co... OemThr \n", + "14 Just a sculpting/texturing practice I did. Vertici \n", + "15 free 3d obj and Maya please give me. feedback,... Andres_R26 \n", + "16 This is a simple architecture test scene made ... folkvangr \n", + "17 Detailed High definition model Xiaomi Redmi 7A... ES_3D \n", + "18 w1050263 \n", + "19 **office chair** with vray material ready to p... Esraa abdelsalam2711 \n", + "20 * This Urn is a high quality polygonal model w... wave design \n", + "21 OBJ, FBX, DAE files of an unwrapped 3D object ... shara_d \n", + "22 Metal Containers3D Model Ready for Games. PBR ... Adrian Kulawik \n", + "23 Saved as 3ds max 2015 version file.As you work... w1050263 \n", + "24 #sink #Kitchen #tap #faucet #bibcock w1050263 \n", + "25 This is a simple house model. Except for the c... vini3dmodels \n", + "26 * Saved as 3ds max 2015 version file.Nowadays,... w1050263 \n", + "27 A CPU fan.Low poly and mid poly includedBlend ... DevmanModels \n", + "28 Low poly fuel canister. MarkoffIN \n", + "29 Low poly road obstacle with texture. MarkoffIN \n", + ".. ... ... \n", + "470 Tama Console by Gallotti & Radice | 3d model p... Designconnected \n", + "471 Tama Crédence by Gallotti & Radice | 3d model ... Designconnected \n", + "472 Roly-Poly Chair by Driade | 3d model produced ... Designconnected \n", + "473 Calee Table Lamp by South Hill Home | 3d model... Designconnected \n", + "474 Song Coffee Tables by Minotti | 3d model produ... Designconnected \n", + "475 Neil Table Lamp by Ligne Roset | 3d model prod... Designconnected \n", + "476 Melusine Table Lamp by Ligne Roset | 3d model ... Designconnected \n", + "477 Mategot Trolley by Gubi | 3d model produced by... Designconnected \n", + "478 Inciucio Pendant Lamp by Gibas | 3d model prod... Designconnected \n", + "479 Riki Trolley by Gallotti & Radice | 3d model p... Designconnected \n", + "480 Cancan Floor Light by Ligne Roset | 3d model p... Designconnected \n", + "481 Passe-Passe Coat Rack by Ligne Roset | 3d mode... Designconnected \n", + "482 Destructuree Pendant Lamp by Ligne Roset | 3d ... Designconnected \n", + "483 **********************************************... bomi1337 \n", + "484 Lego Bricks Basic anubhav462 \n", + "485 cinema 4d model of simple kids table and chair... rayson278 \n", + "486 A collection of antique oil lampsThis design i... DTG Amusements \n", + "487 Diwali Oil LampThis design is not animated. 80... DTG Amusements \n", + "488 Antique Oil LampThis design is not animated. 4... DTG Amusements \n", + "489 LowPoly Style Couple, casual man and woman. Cr... Denys Almaral \n", + "490 Simple PoufDimensions: L 450 x W 450 x H 350 m... Desert Night \n", + "491 Modeled with Autodesk Maya 2016 using polygons... Marc Mons \n", + "492 It's a simple chef's knife with a wooden handl... sepandj \n", + "493 humanoid rigged character for unity.this packa... GAMEASS \n", + "494 Free shotgun ready to use for your game, fully... maskedmole \n", + "495 'CREATURE FOR UNITY' REMAKED!QUIN the mantis R... GAMEASS \n", + "496 This is an older looking Medieval or Victorian... Iridesium \n", + "497 | MODEL DESCRIPTION |-This is a model of a mod... matredo \n", + "498 Pack Contains: 13 types of Grass(FBX),7 types ... Moi Loy \n", + "499 This is an older, worn, piano bench (or any ki... Iridesium \n", + "\n", + " price license published_date \\\n", + "0 Free - All Extended Uses 2019-07-21 \n", + "1 Free - Editorial Uses Only 2019-07-21 \n", + "2 Free - All Extended Uses 2019-07-20 \n", + "3 Free - All Extended Uses 2019-07-20 \n", + "4 Free - All Extended Uses 2019-07-20 \n", + "5 Free - All Extended Uses 2019-07-20 \n", + "6 Free - All Extended Uses 2019-07-20 \n", + "7 Free - All Extended Uses 2019-07-20 \n", + "8 Free - All Extended Uses 2019-07-20 \n", + "9 Free - All Extended Uses 2019-07-19 \n", + "10 Free - All Extended Uses 2019-07-19 \n", + "11 Free - All Extended Uses 2019-07-19 \n", + "12 Free - All Extended Uses 2019-07-19 \n", + "13 Free - All Extended Uses 2019-07-19 \n", + "14 Free - All Extended Uses 2019-07-19 \n", + "15 Free - All Extended Uses 2019-07-19 \n", + "16 Free - All Extended Uses 2019-07-18 \n", + "17 Free - Editorial Uses AllowedExtended Uses May Nee... 2019-07-18 \n", + "18 Free - All Extended Uses 2019-07-18 \n", + "19 Free - All Extended Uses 2019-07-17 \n", + "20 Free - All Extended Uses 2019-07-17 \n", + "21 Free - All Extended Uses 2019-07-14 \n", + "22 Free - All Extended Uses 2019-07-17 \n", + "23 Free - All Extended Uses 2019-07-17 \n", + "24 Free - All Extended Uses 2019-07-17 \n", + "25 Free - All Extended Uses 2019-07-15 \n", + "26 Free - All Extended Uses 2019-07-15 \n", + "27 Free - All Extended Uses 2019-07-14 \n", + "28 Free - All Extended Uses 2019-07-13 \n", + "29 Free - All Extended Uses 2019-07-13 \n", + ".. ... ... ... \n", + "470 Free - Editorial Uses Only 2019-03-18 \n", + "471 Free - Editorial Uses Only 2019-03-18 \n", + "472 Free - Editorial Uses Only 2019-03-18 \n", + "473 Free - Editorial Uses Only 2019-03-18 \n", + "474 Free - Editorial Uses Only 2019-03-18 \n", + "475 Free - Editorial Uses Only 2019-03-18 \n", + "476 Free - Editorial Uses Only 2019-03-18 \n", + "477 Free - Editorial Uses Only 2019-03-18 \n", + "478 Free - Editorial Uses Only 2019-03-18 \n", + "479 Free - Editorial Uses Only 2019-03-18 \n", + "480 Free - Editorial Uses Only 2019-03-18 \n", + "481 Free - Editorial Uses Only 2019-03-18 \n", + "482 Free - Editorial Uses Only 2019-03-18 \n", + "483 Free - All Extended Uses 2019-03-18 \n", + "484 Free - Editorial Uses AllowedExtended Uses May Nee... 2019-03-17 \n", + "485 Free - All Extended Uses 2019-03-17 \n", + "486 Free - All Extended Uses 2019-03-16 \n", + "487 Free - All Extended Uses 2019-03-16 \n", + "488 Free - All Extended Uses 2019-03-16 \n", + "489 Free - All Extended Uses 2019-03-16 \n", + "490 Free - All Extended Uses 2019-03-16 \n", + "491 Free - All Extended Uses 2019-03-15 \n", + "492 Free - All Extended Uses 2019-03-15 \n", + "493 Free - All Extended Uses 2019-03-15 \n", + "494 Free - All Extended Uses 2019-03-15 \n", + "495 Free - All Extended Uses 2019-03-15 \n", + "496 Free - Editorial Uses Only 2019-03-14 \n", + "497 Free - All Extended Uses 2019-03-14 \n", + "498 Free - All Extended Uses 2019-03-14 \n", + "499 Free - All Extended Uses 2019-03-13 \n", + "\n", + " formats_available \\\n", + "0 [OBJ ] \n", + "1 [OBJ ] \n", + "2 [OBJ ] \n", + "3 [OBJ ] \n", + "4 [FBX 1, 0\\n] \n", + "5 [3D Studio, FBX , OBJ ] \n", + "6 [FBX ] \n", + "7 [FBX , OBJ , Other ] \n", + "8 [] \n", + "9 [OBJ ] \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [OBJ , FBX , Collada ] \n", + "14 [] \n", + "15 [Other ] \n", + "16 [] \n", + "17 [3D Studio, 2011\\n, FBX 2011, OBJ 2011, VRML 2... \n", + "18 [3D Studio, OBJ , FBX , Other ] \n", + "19 [3D Studio, Collada , FBX , OBJ , Other ] \n", + "20 [OBJ , FBX , Collada ] \n", + "21 [FBX , Collada , OBJ ] \n", + "22 [OBJ 2019] \n", + "23 [OBJ , 3D Studio, FBX , Other ] \n", + "24 [3D Studio, OBJ , FBX , Other ] \n", + "25 [FBX 2016, OBJ 2016, Other 2016] \n", + "26 [3D Studio, FBX , OBJ , Other ] \n", + "27 [Other ] \n", + "28 [FBX ] \n", + "29 [FBX ] \n", + ".. ... \n", + "470 [FBX , Other ] \n", + "471 [FBX , Other ] \n", + "472 [FBX ] \n", + "473 [FBX , Other ] \n", + "474 [FBX , Other ] \n", + "475 [FBX , Other ] \n", + "476 [FBX , Other ] \n", + "477 [FBX , Other ] \n", + "478 [FBX ] \n", + "479 [FBX , Other ] \n", + "480 [FBX , Other ] \n", + "481 [FBX , Other ] \n", + "482 [FBX ] \n", + "483 [FBX , Other , OBJ , STL ] \n", + "484 [FBX ] \n", + "485 [] \n", + "486 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "487 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "488 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "489 [FBX 2014] \n", + "490 [] \n", + "491 [OBJ 2016, FBX 2016] \n", + "492 [OBJ , Other , FBX , OpenFlight , IGES , 3D St... \n", + "493 [] \n", + "494 [FBX ] \n", + "495 [] \n", + "496 [FBX , OBJ , STL , Other ] \n", + "497 [] \n", + "498 [FBX ] \n", + "499 [FBX , OBJ , STL , Other ] \n", + "\n", + " list_categories \\\n", + "0 [3D Model, characters, people, man] \n", + "1 [3D Model, nature, plants, grasses, ornamental... \n", + "2 [3D Model, sports, outdoor sports, scuba, divi... \n", + "3 [3D Model, toys and games, games, dominos] \n", + "4 [3D Model, symbols] \n", + "5 [3D Model, furnishings, cupboard, showcase] \n", + "6 [3D Model, architecture, building, commercial ... \n", + "7 [3D Model, weaponry, weapons, firearms, rifle,... \n", + "8 [3D Model, science, chemistry, atom] \n", + "9 [3D Model, interior design, housewares, fan, b... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [3D Model, interior design, housewares, dining... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [3D Model, technology, phone, cellphone, smart... \n", + "18 [3D Model, interior design, fixtures, lighting... \n", + "19 [3D Model, furnishings, seating, chair, office... \n", + "20 [3D Model, interior design, housewares, genera... \n", + "21 [3D Model, furnishings, table] \n", + "22 [3D Model, industrial, industrial container, c... \n", + "23 [3D Model, interior design, appliance, commerc... \n", + "24 [3D Model, interior design, fixtures, sink, ki... \n", + "25 [3D Model, architecture, building, residential... \n", + "26 [3D Model, furnishings, table] \n", + "27 [3D Model, technology, computer equipment, com... \n", + "28 [3D Model, industrial, industrial container, f... \n", + "29 [3D Model, architecture, urban design, street ... \n", + ".. ... \n", + "470 [3D Model, furnishings, table, console table] \n", + "471 [3D Model, furnishings, sideboard] \n", + "472 [3D Model, furnishings, seating, chair, side c... \n", + "473 [3D Model, interior design, fixtures, lighting... \n", + "474 [3D Model, furnishings, table, coffee table] \n", + "475 [3D Model, interior design, fixtures, lighting... \n", + "476 [3D Model, interior design, fixtures, lighting... \n", + "477 [3D Model, industrial, tools, cart] \n", + "478 [3D Model, interior design, fixtures, lighting... \n", + "479 [3D Model, furnishings, kitchen cart] \n", + "480 [3D Model, interior design, fixtures, lighting... \n", + "481 [3D Model, furnishings, rack, clothes rack, co... \n", + "482 [3D Model, interior design, fixtures, lighting... \n", + "483 [3D Model, sports, exercise equipment, sports ... \n", + "484 [3D Model, toys and games, toys, building toys... \n", + "485 [3D Model, furnishings, seating, chair, childr... \n", + "486 [3D Model, interior design, fixtures, lighting... \n", + "487 [3D Model, interior design, fixtures, lighting... \n", + "488 [3D Model, interior design, fixtures, lighting... \n", + "489 [3D Model, characters, people, man, cartoon man] \n", + "490 [3D Model, furnishings, seating, chair, foot r... \n", + "491 [3D Model, architecture, site components, land... \n", + "492 [3D Model, interior design, housewares, kitche... \n", + "493 [3D Model, characters, people, military people... \n", + "494 [3D Model, weaponry, weapons, firearms, shotgun] \n", + "495 [3D Model, characters, mythological creatures,... \n", + "496 [3D Model, interior design, housewares, genera... \n", + "497 [3D Model, furnishings, seating, chair, lounge... \n", + "498 [3D Model, nature, plants, cartoon plant] \n", + "499 [3D Model, furnishings, seating, bench, wooden... \n", + "\n", + " links_categories \\\n", + "0 [https://www.turbosquid.com/Search/3d-models, ... \n", + "1 [https://www.turbosquid.com/Search/3d-models, ... \n", + "2 [https://www.turbosquid.com/Search/3d-models, ... \n", + "3 [https://www.turbosquid.com/Search/3d-models, ... \n", + "4 [https://www.turbosquid.com/Search/3d-models, ... \n", + "5 [https://www.turbosquid.com/Search/3d-models, ... \n", + "6 [https://www.turbosquid.com/Search/3d-models, ... \n", + "7 [https://www.turbosquid.com/Search/3d-models, ... \n", + "8 [https://www.turbosquid.com/Search/3d-models, ... \n", + "9 [https://www.turbosquid.com/Search/3d-models, ... \n", + "10 [] \n", + "11 [] \n", + "12 [] \n", + "13 [https://www.turbosquid.com/Search/3d-models, ... \n", + "14 [] \n", + "15 [] \n", + "16 [] \n", + "17 [https://www.turbosquid.com/Search/3d-models, ... \n", + "18 [https://www.turbosquid.com/Search/3d-models, ... \n", + "19 [https://www.turbosquid.com/Search/3d-models, ... \n", + "20 [https://www.turbosquid.com/Search/3d-models, ... \n", + "21 [https://www.turbosquid.com/Search/3d-models, ... \n", + "22 [https://www.turbosquid.com/Search/3d-models, ... \n", + "23 [https://www.turbosquid.com/Search/3d-models, ... \n", + "24 [https://www.turbosquid.com/Search/3d-models, ... \n", + "25 [https://www.turbosquid.com/Search/3d-models, ... \n", + "26 [https://www.turbosquid.com/Search/3d-models, ... \n", + "27 [https://www.turbosquid.com/Search/3d-models, ... \n", + "28 [https://www.turbosquid.com/Search/3d-models, ... \n", + "29 [https://www.turbosquid.com/Search/3d-models, ... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3d-models, ... \n", + "471 [https://www.turbosquid.com/Search/3d-models, ... \n", + "472 [https://www.turbosquid.com/Search/3d-models, ... \n", + "473 [https://www.turbosquid.com/Search/3d-models, ... \n", + "474 [https://www.turbosquid.com/Search/3d-models, ... \n", + "475 [https://www.turbosquid.com/Search/3d-models, ... \n", + "476 [https://www.turbosquid.com/Search/3d-models, ... \n", + "477 [https://www.turbosquid.com/Search/3d-models, ... \n", + "478 [https://www.turbosquid.com/Search/3d-models, ... \n", + "479 [https://www.turbosquid.com/Search/3d-models, ... \n", + "480 [https://www.turbosquid.com/Search/3d-models, ... \n", + "481 [https://www.turbosquid.com/Search/3d-models, ... \n", + "482 [https://www.turbosquid.com/Search/3d-models, ... \n", + "483 [https://www.turbosquid.com/Search/3d-models, ... \n", + "484 [https://www.turbosquid.com/Search/3d-models, ... \n", + "485 [https://www.turbosquid.com/Search/3d-models, ... \n", + "486 [https://www.turbosquid.com/Search/3d-models, ... \n", + "487 [https://www.turbosquid.com/Search/3d-models, ... \n", + "488 [https://www.turbosquid.com/Search/3d-models, ... \n", + "489 [https://www.turbosquid.com/Search/3d-models, ... \n", + "490 [https://www.turbosquid.com/Search/3d-models, ... \n", + "491 [https://www.turbosquid.com/Search/3d-models, ... \n", + "492 [https://www.turbosquid.com/Search/3d-models, ... \n", + "493 [https://www.turbosquid.com/Search/3d-models, ... \n", + "494 [https://www.turbosquid.com/Search/3d-models, ... \n", + "495 [https://www.turbosquid.com/Search/3d-models, ... \n", + "496 [https://www.turbosquid.com/Search/3d-models, ... \n", + "497 [https://www.turbosquid.com/Search/3d-models, ... \n", + "498 [https://www.turbosquid.com/Search/3d-models, ... \n", + "499 [https://www.turbosquid.com/Search/3d-models, ... \n", + "\n", + " list_tags \\\n", + "0 [characters, man, male, human, zbrush, ztl, ob... \n", + "1 [minecraft, grass, block, cube] \n", + "2 [Helmet, Undersea] \n", + "3 [domino, dominoes, black, white, tile] \n", + "4 [primitives, prototyping, blender, unity, geom... \n", + "5 [counter, and, bar, stools, Are, same, specifi... \n", + "6 [House, shop, store, stall, depot, trade, cabin.] \n", + "7 [weapon, sci-fi, low-poly, game-ready, sniper-... \n", + "8 [atom, science, chemistry, chemical, scientifi... \n", + "9 [Fan, ventilateur] \n", + "10 [leather, furniture, seat, decor, stool, other] \n", + "11 [indoors, room, furniture, seat, wood, chair, ... \n", + "12 [flat, apartment, household, building, kitchen... \n", + "13 [coffee, dinner, breakfast, cup, plate, porcel... \n", + "14 [Head, man, male, human] \n", + "15 [low, poly, car, blue] \n", + "16 [column, architecture, marble, bedrock, roman,... \n", + "17 [3d, model, 3ds, max, Motorola, Moto, G7, Plus... \n", + "18 [#lighting, #light, bulb, #firelight] \n", + "19 [#chair, #office, #modern, #3dsmax, #3dmodelin... \n", + "20 [Urn, Planter, Vase, Garden, pot, decor, Decor... \n", + "21 [Table, Home, Decor, Kitchen, TableLegs, Unwra... \n", + "22 [metal, container, mars, kitbash, modular, pro... \n", + "23 [#coffee, #machine, #vending, machine] \n", + "24 [#sink, #Kitchen, #tap, #faucet, #bibcock] \n", + "25 [architecture, house, home, building, suburb, ... \n", + "26 [table, Kitchen, cooktable, Breakfast, Lunch, ... \n", + "27 [3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler] \n", + "28 [Canister, vessel, vial, container, fuel, green] \n", + "29 [Spikes, Road, Obstacle, Hazard] \n", + ".. ... \n", + "470 [Console-tables, Gallotti-and-Radice, Carlo-Co... \n", + "471 [Sideboards, Gallotti-and-Radice, Carlo-Colomb... \n", + "472 [Chairs, Driade, Faye-Toogood, Plastic, Contem... \n", + "473 [Table-lights, South-Hill-Home, Brass, Painted... \n", + "474 [Coffee-tables, Minotti, Rodolfo-Dordoni, Natu... \n", + "475 [Table-lights, Ligne-Roset, -Ligne-Roset, Glas... \n", + "476 [Table-lights, Ligne-Roset, Peter-Maly, Solid-... \n", + "477 [Console-tables, Occasional-tables, Gubi, Math... \n", + "478 [Pendant-lights, Gibas, Painted-metal, Contemp... \n", + "479 [Trays, Gallotti-and-Radice, Pierangelo-Gallot... \n", + "480 [Floor-lights, Ligne-Roset, Patrick-Zulauf, Co... \n", + "481 [Cloth-stands, Ligne-Roset, Philippe-Nigro, So... \n", + "482 [Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak... \n", + "483 [bottle, metal, sport, sports, drink, hydro, v... \n", + "484 [Lego, Bricks] \n", + "485 [table, and, chair] \n", + "486 [Lamp, oil, lamp] \n", + "487 [Lamp, Diwali, Oil, Lamp] \n", + "488 [Lamp, Oil, Lamp] \n", + "489 [people, rigged, character, lowpoly, style, wo... \n", + "490 [simple, pouf, chair, fabric, modern, 3d, model] \n", + "491 [water, fountain, architecture, exterior, stre... \n", + "492 [knife, kitchen, sharp, still, wood, brass, bl... \n", + "493 [knight, unity, humanoid, rigged, character, s... \n", + "494 [shotgun, free, firearm] \n", + "495 [unity, RPG, monster, bug, creature, sci, fi, ... \n", + "496 [urn, ashes, tomb, bottle, jar, ancient, ossua... \n", + "497 [chair, armchair, furniture, interior, design] \n", + "498 [lowpoly, grass] \n", + "499 [Piano, bench, grand, seat, stool, desk, side,... \n", + "\n", + " links_tags \n", + "0 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "1 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "2 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "3 [https://www.turbosquid.com/Search/3D-Models/d... \n", + "4 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "5 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "6 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "7 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "8 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "9 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "10 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "11 [https://www.turbosquid.com/Search/3D-Models/i... \n", + "12 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "13 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "14 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "15 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "16 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "17 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "18 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "19 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "20 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "21 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "22 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "23 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "24 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "25 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "26 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "27 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "28 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "29 [https://www.turbosquid.com/Search/3D-Models/s... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "471 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "472 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "473 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "474 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "475 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "476 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "477 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "478 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "479 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "480 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "481 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "482 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "483 [https://www.turbosquid.com/Search/3D-Models/b... \n", + "484 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "485 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "486 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "487 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "488 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "489 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "490 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "491 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "492 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "493 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "494 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "495 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "496 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "497 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "498 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "499 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "\n", + "[500 rows x 11 columns]" + ] + }, + "execution_count": 24, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_scraping = dataset_scraping[orden_columnas]\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ahora sustituimos los valores nulos y listas vacias por la cadena \"Unknown\"" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
name_modeldescriptionownerpricelicensepublished_dateformats_availablelist_categorieslinks_categorieslist_tagslinks_tags
0Free base male anatomyFree model. You can use for base anatomy/propo...niyooFree- All Extended Uses2019-07-21[OBJ ][3D Model, characters, people, man][https://www.turbosquid.com/Search/3d-models, ...[characters, man, male, human, zbrush, ztl, ob...[https://www.turbosquid.com/Search/3D-Models/c...
1Minecraft grass blockRender at NightFree- Editorial Uses Only2019-07-21[OBJ ][3D Model, nature, plants, grasses, ornamental...[https://www.turbosquid.com/Search/3d-models, ...[minecraft, grass, block, cube][https://www.turbosquid.com/Search/3D-Models/m...
2Diving helmetThis is a helmet I made.CC0 LicenseNotJerdFree- All Extended Uses2019-07-20[OBJ ][3D Model, sports, outdoor sports, scuba, divi...[https://www.turbosquid.com/Search/3d-models, ...[Helmet, Undersea][https://www.turbosquid.com/Search/3D-Models/h...
3DominoesModels of 5 different dominoes.Polygons/Vertic...Render at NightFree- All Extended Uses2019-07-20[OBJ ][3D Model, toys and games, games, dominos][https://www.turbosquid.com/Search/3d-models, ...[domino, dominoes, black, white, tile][https://www.turbosquid.com/Search/3D-Models/d...
4Prototyping polygonsI was starting work on a new game in unity and...HyperChromaticaFree- All Extended Uses2019-07-20[FBX 1, 0\\n][3D Model, symbols][https://www.turbosquid.com/Search/3d-models, ...[primitives, prototyping, blender, unity, geom...[https://www.turbosquid.com/Search/3D-Models/p...
5Counter and bar stoolscounter and bar stools Are the same specificat...ESalemFree- All Extended Uses2019-07-20[3D Studio, FBX , OBJ ][3D Model, furnishings, cupboard, showcase][https://www.turbosquid.com/Search/3d-models, ...[counter, and, bar, stools, Are, same, specifi...[https://www.turbosquid.com/Search/3D-Models/c...
6Cabin shopSmall low poly shop cabin.MarkoffINFree- All Extended Uses2019-07-20[FBX ][3D Model, architecture, building, commercial ...[https://www.turbosquid.com/Search/3d-models, ...[House, shop, store, stall, depot, trade, cabin.][https://www.turbosquid.com/Search/3D-Models/h...
7Viper sniper rifleGame ready model, low poly can used as a game ...Young_WizardFree- All Extended Uses2019-07-20[FBX , OBJ , Other ][3D Model, weaponry, weapons, firearms, rifle,...[https://www.turbosquid.com/Search/3d-models, ...[weapon, sci-fi, low-poly, game-ready, sniper-...[https://www.turbosquid.com/Search/3D-Models/w...
8Atom3D model for the atom. The whole project was m...Abdo AshrafFree- All Extended Uses2019-07-20Unknown[3D Model, science, chemistry, atom][https://www.turbosquid.com/Search/3d-models, ...[atom, science, chemistry, chemical, scientifi...[https://www.turbosquid.com/Search/3D-Models/a...
9FanVintage fanAkumax MaximeFree- All Extended Uses2019-07-19[OBJ ][3D Model, interior design, housewares, fan, b...[https://www.turbosquid.com/Search/3d-models, ...[Fan, ventilateur][https://www.turbosquid.com/Search/3D-Models/f...
10Pouf stoolThis model was created for an art challenge an...folkvangrFree- All Extended Uses2019-07-19UnknownUnknownUnknown[leather, furniture, seat, decor, stool, other][https://www.turbosquid.com/Search/3D-Models/l...
11Indoor testIndoors test scene made with Blender 2.8.It co...folkvangrFree- All Extended Uses2019-07-19UnknownUnknownUnknown[indoors, room, furniture, seat, wood, chair, ...[https://www.turbosquid.com/Search/3D-Models/i...
12Apartment basic floor planThis is a simple architecture test scene made ...folkvangrFree- All Extended Uses2019-07-19UnknownUnknownUnknown[flat, apartment, household, building, kitchen...[https://www.turbosquid.com/Search/3D-Models/f...
13Coffee cup- Ceramic coffee cup with plate -This model co...OemThrFree- All Extended Uses2019-07-19[OBJ , FBX , Collada ][3D Model, interior design, housewares, dining...[https://www.turbosquid.com/Search/3d-models, ...[coffee, dinner, breakfast, cup, plate, porcel...[https://www.turbosquid.com/Search/3D-Models/c...
14Man headsculptJust a sculpting/texturing practice I did.VerticiFree- All Extended Uses2019-07-19UnknownUnknownUnknown[Head, man, male, human][https://www.turbosquid.com/Search/3D-Models/h...
15Blue low poly carfree 3d obj and Maya please give me. feedback,...Andres_R26Free- All Extended Uses2019-07-19[Other ]UnknownUnknown[low, poly, car, blue][https://www.turbosquid.com/Search/3D-Models/l...
16Bath house architecture testThis is a simple architecture test scene made ...folkvangrFree- All Extended Uses2019-07-18UnknownUnknownUnknown[column, architecture, marble, bedrock, roman,...[https://www.turbosquid.com/Search/3D-Models/c...
17Motorola moto g7 plus blue and redDetailed High definition model Xiaomi Redmi 7A...ES_3DFree- Editorial Uses AllowedExtended Uses May Nee...2019-07-18[3D Studio, 2011\\n, FBX 2011, OBJ 2011, VRML 2...[3D Model, technology, phone, cellphone, smart...[https://www.turbosquid.com/Search/3d-models, ...[3d, model, 3ds, max, Motorola, Moto, G7, Plus...[https://www.turbosquid.com/Search/3D-Models/3...
18Lightingw1050263Free- All Extended Uses2019-07-18[3D Studio, OBJ , FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[#lighting, #light, bulb, #firelight][https://www.turbosquid.com/Search/3D-Models/%...
19Office chair**office chair** with vray material ready to p...Esraa abdelsalam2711Free- All Extended Uses2019-07-17[3D Studio, Collada , FBX , OBJ , Other ][3D Model, furnishings, seating, chair, office...[https://www.turbosquid.com/Search/3d-models, ...[#chair, #office, #modern, #3dsmax, #3dmodelin...[https://www.turbosquid.com/Search/3D-Models/%...
20Free garden urn planter* This Urn is a high quality polygonal model w...wave designFree- All Extended Uses2019-07-17[OBJ , FBX , Collada ][3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[Urn, Planter, Vase, Garden, pot, decor, Decor...[https://www.turbosquid.com/Search/3D-Models/u...
21TableOBJ, FBX, DAE files of an unwrapped 3D object ...shara_dFree- All Extended Uses2019-07-14[FBX , Collada , OBJ ][3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[Table, Home, Decor, Kitchen, TableLegs, Unwra...[https://www.turbosquid.com/Search/3D-Models/t...
22Metal containersMetal Containers3D Model Ready for Games. PBR ...Adrian KulawikFree- All Extended Uses2019-07-17[OBJ 2019][3D Model, industrial, industrial container, c...[https://www.turbosquid.com/Search/3d-models, ...[metal, container, mars, kitbash, modular, pro...[https://www.turbosquid.com/Search/3D-Models/m...
23Coffee machineSaved as 3ds max 2015 version file.As you work...w1050263Free- All Extended Uses2019-07-17[OBJ , 3D Studio, FBX , Other ][3D Model, interior design, appliance, commerc...[https://www.turbosquid.com/Search/3d-models, ...[#coffee, #machine, #vending, machine][https://www.turbosquid.com/Search/3D-Models/%...
24Sink#sink #Kitchen #tap #faucet #bibcockw1050263Free- All Extended Uses2019-07-17[3D Studio, OBJ , FBX , Other ][3D Model, interior design, fixtures, sink, ki...[https://www.turbosquid.com/Search/3d-models, ...[#sink, #Kitchen, #tap, #faucet, #bibcock][https://www.turbosquid.com/Search/3D-Models/%...
25Building 002This is a simple house model. Except for the c...vini3dmodelsFree- All Extended Uses2019-07-15[FBX 2016, OBJ 2016, Other 2016][3D Model, architecture, building, residential...[https://www.turbosquid.com/Search/3d-models, ...[architecture, house, home, building, suburb, ...[https://www.turbosquid.com/Search/3D-Models/a...
26Table* Saved as 3ds max 2015 version file.Nowadays,...w1050263Free- All Extended Uses2019-07-15[3D Studio, FBX , OBJ , Other ][3D Model, furnishings, table][https://www.turbosquid.com/Search/3d-models, ...[table, Kitchen, cooktable, Breakfast, Lunch, ...[https://www.turbosquid.com/Search/3D-Models/t...
27Cpu case fanA CPU fan.Low poly and mid poly includedBlend ...DevmanModelsFree- All Extended Uses2019-07-14[Other ][3D Model, technology, computer equipment, com...[https://www.turbosquid.com/Search/3d-models, ...[3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler][https://www.turbosquid.com/Search/3D-Models/3...
28CanisterLow poly fuel canister.MarkoffINFree- All Extended Uses2019-07-13[FBX ][3D Model, industrial, industrial container, f...[https://www.turbosquid.com/Search/3d-models, ...[Canister, vessel, vial, container, fuel, green][https://www.turbosquid.com/Search/3D-Models/c...
29Road spikesLow poly road obstacle with texture.MarkoffINFree- All Extended Uses2019-07-13[FBX ][3D Model, architecture, urban design, street ...[https://www.turbosquid.com/Search/3d-models, ...[Spikes, Road, Obstacle, Hazard][https://www.turbosquid.com/Search/3D-Models/s...
....................................
470Tama consoleTama Console by Gallotti & Radice | 3d model p...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, table, console table][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Gallotti-and-Radice, Carlo-Co...[https://www.turbosquid.com/Search/3D-Models/c...
471Tama crédenceTama Crédence by Gallotti & Radice | 3d model ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, sideboard][https://www.turbosquid.com/Search/3d-models, ...[Sideboards, Gallotti-and-Radice, Carlo-Colomb...[https://www.turbosquid.com/Search/3D-Models/s...
472Roly-poly chairRoly-Poly Chair by Driade | 3d model produced ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, furnishings, seating, chair, side c...[https://www.turbosquid.com/Search/3d-models, ...[Chairs, Driade, Faye-Toogood, Plastic, Contem...[https://www.turbosquid.com/Search/3D-Models/c...
473Calee table lampCalee Table Lamp by South Hill Home | 3d model...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, South-Hill-Home, Brass, Painted...[https://www.turbosquid.com/Search/3D-Models/t...
474Song coffee tablesSong Coffee Tables by Minotti | 3d model produ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, table, coffee table][https://www.turbosquid.com/Search/3d-models, ...[Coffee-tables, Minotti, Rodolfo-Dordoni, Natu...[https://www.turbosquid.com/Search/3D-Models/c...
475Neil table lampNeil Table Lamp by Ligne Roset | 3d model prod...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, -Ligne-Roset, Glas...[https://www.turbosquid.com/Search/3D-Models/t...
476Melusine table lampMelusine Table Lamp by Ligne Roset | 3d model ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Table-lights, Ligne-Roset, Peter-Maly, Solid-...[https://www.turbosquid.com/Search/3D-Models/t...
477Mategot trolleyMategot Trolley by Gubi | 3d model produced by...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, industrial, tools, cart][https://www.turbosquid.com/Search/3d-models, ...[Console-tables, Occasional-tables, Gubi, Math...[https://www.turbosquid.com/Search/3D-Models/c...
478Inciucio pendant lampInciucio Pendant Lamp by Gibas | 3d model prod...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Gibas, Painted-metal, Contemp...[https://www.turbosquid.com/Search/3D-Models/p...
479Riki trolleyRiki Trolley by Gallotti & Radice | 3d model p...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, kitchen cart][https://www.turbosquid.com/Search/3d-models, ...[Trays, Gallotti-and-Radice, Pierangelo-Gallot...[https://www.turbosquid.com/Search/3D-Models/t...
480Cancan floor lightCancan Floor Light by Ligne Roset | 3d model p...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Floor-lights, Ligne-Roset, Patrick-Zulauf, Co...[https://www.turbosquid.com/Search/3D-Models/f...
481Passe-passe coat rackPasse-Passe Coat Rack by Ligne Roset | 3d mode...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX , Other ][3D Model, furnishings, rack, clothes rack, co...[https://www.turbosquid.com/Search/3d-models, ...[Cloth-stands, Ligne-Roset, Philippe-Nigro, So...[https://www.turbosquid.com/Search/3D-Models/c...
482Destructuree pendant lampDestructuree Pendant Lamp by Ligne Roset | 3d ...DesignconnectedFree- Editorial Uses Only2019-03-18[FBX ][3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak...[https://www.turbosquid.com/Search/3D-Models/p...
483Sports bottle**********************************************...bomi1337Free- All Extended Uses2019-03-18[FBX , Other , OBJ , STL ][3D Model, sports, exercise equipment, sports ...[https://www.turbosquid.com/Search/3d-models, ...[bottle, metal, sport, sports, drink, hydro, v...[https://www.turbosquid.com/Search/3D-Models/b...
484Lego_bricksLego Bricks Basicanubhav462Free- Editorial Uses AllowedExtended Uses May Nee...2019-03-17[FBX ][3D Model, toys and games, toys, building toys...[https://www.turbosquid.com/Search/3d-models, ...[Lego, Bricks][https://www.turbosquid.com/Search/3D-Models/l...
485Kids chaircinema 4d model of simple kids table and chair...rayson278Free- All Extended Uses2019-03-17Unknown[3D Model, furnishings, seating, chair, childr...[https://www.turbosquid.com/Search/3d-models, ...[table, and, chair][https://www.turbosquid.com/Search/3D-Models/t...
486Antique oil lampA collection of antique oil lampsThis design i...DTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, oil, lamp][https://www.turbosquid.com/Search/3D-Models/l...
487Diwali oil lampDiwali Oil LampThis design is not animated. 80...DTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Diwali, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...
488Antique oil lampAntique Oil LampThis design is not animated. 4...DTG AmusementsFree- All Extended Uses2019-03-16[3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D...[3D Model, interior design, fixtures, lighting...[https://www.turbosquid.com/Search/3d-models, ...[Lamp, Oil, Lamp][https://www.turbosquid.com/Search/3D-Models/l...
489Casual couple lowpoly rigged (free sample)LowPoly Style Couple, casual man and woman. Cr...Denys AlmaralFree- All Extended Uses2019-03-16[FBX 2014][3D Model, characters, people, man, cartoon man][https://www.turbosquid.com/Search/3d-models, ...[people, rigged, character, lowpoly, style, wo...[https://www.turbosquid.com/Search/3D-Models/p...
490Simple poufSimple PoufDimensions: L 450 x W 450 x H 350 m...Desert NightFree- All Extended Uses2019-03-16Unknown[3D Model, furnishings, seating, chair, foot r...[https://www.turbosquid.com/Search/3d-models, ...[simple, pouf, chair, fabric, modern, 3d, model][https://www.turbosquid.com/Search/3D-Models/s...
491Classic water fountainModeled with Autodesk Maya 2016 using polygons...Marc MonsFree- All Extended Uses2019-03-15[OBJ 2016, FBX 2016][3D Model, architecture, site components, land...[https://www.turbosquid.com/Search/3d-models, ...[water, fountain, architecture, exterior, stre...[https://www.turbosquid.com/Search/3D-Models/w...
492Kitchen chef's knifeIt's a simple chef's knife with a wooden handl...sepandjFree- All Extended Uses2019-03-15[OBJ , Other , FBX , OpenFlight , IGES , 3D St...[3D Model, interior design, housewares, kitche...[https://www.turbosquid.com/Search/3d-models, ...[knife, kitchen, sharp, still, wood, brass, bl...[https://www.turbosquid.com/Search/3D-Models/k...
493Dirty steam punk knight for unityhumanoid rigged character for unity.this packa...GAMEASSFree- All Extended Uses2019-03-15Unknown[3D Model, characters, people, military people...[https://www.turbosquid.com/Search/3d-models, ...[knight, unity, humanoid, rigged, character, s...[https://www.turbosquid.com/Search/3D-Models/k...
494Shotgun (free)Free shotgun ready to use for your game, fully...maskedmoleFree- All Extended Uses2019-03-15[FBX ][3D Model, weaponry, weapons, firearms, shotgun][https://www.turbosquid.com/Search/3d-models, ...[shotgun, free, firearm][https://www.turbosquid.com/Search/3D-Models/s...
495Quin the mantis for unity remake'CREATURE FOR UNITY' REMAKED!QUIN the mantis R...GAMEASSFree- All Extended Uses2019-03-15Unknown[3D Model, characters, mythological creatures,...[https://www.turbosquid.com/Search/3d-models, ...[unity, RPG, monster, bug, creature, sci, fi, ...[https://www.turbosquid.com/Search/3D-Models/u...
496UrnThis is an older looking Medieval or Victorian...IridesiumFree- Editorial Uses Only2019-03-14[FBX , OBJ , STL , Other ][3D Model, interior design, housewares, genera...[https://www.turbosquid.com/Search/3d-models, ...[urn, ashes, tomb, bottle, jar, ancient, ossua...[https://www.turbosquid.com/Search/3D-Models/u...
497Armchair - fabric/wood materials| MODEL DESCRIPTION |-This is a model of a mod...matredoFree- All Extended Uses2019-03-14Unknown[3D Model, furnishings, seating, chair, lounge...[https://www.turbosquid.com/Search/3d-models, ...[chair, armchair, furniture, interior, design][https://www.turbosquid.com/Search/3D-Models/c...
498Low poly grass packPack Contains: 13 types of Grass(FBX),7 types ...Moi LoyFree- All Extended Uses2019-03-14[FBX ][3D Model, nature, plants, cartoon plant][https://www.turbosquid.com/Search/3d-models, ...[lowpoly, grass][https://www.turbosquid.com/Search/3D-Models/l...
499Piano benchThis is an older, worn, piano bench (or any ki...IridesiumFree- All Extended Uses2019-03-13[FBX , OBJ , STL , Other ][3D Model, furnishings, seating, bench, wooden...[https://www.turbosquid.com/Search/3d-models, ...[Piano, bench, grand, seat, stool, desk, side,...[https://www.turbosquid.com/Search/3D-Models/p...
\n", + "

500 rows × 11 columns

\n", + "
" + ], + "text/plain": [ + " name_model \\\n", + "0 Free base male anatomy \n", + "1 Minecraft grass block \n", + "2 Diving helmet \n", + "3 Dominoes \n", + "4 Prototyping polygons \n", + "5 Counter and bar stools \n", + "6 Cabin shop \n", + "7 Viper sniper rifle \n", + "8 Atom \n", + "9 Fan \n", + "10 Pouf stool \n", + "11 Indoor test \n", + "12 Apartment basic floor plan \n", + "13 Coffee cup \n", + "14 Man headsculpt \n", + "15 Blue low poly car \n", + "16 Bath house architecture test \n", + "17 Motorola moto g7 plus blue and red \n", + "18 Lighting \n", + "19 Office chair \n", + "20 Free garden urn planter \n", + "21 Table \n", + "22 Metal containers \n", + "23 Coffee machine \n", + "24 Sink \n", + "25 Building 002 \n", + "26 Table \n", + "27 Cpu case fan \n", + "28 Canister \n", + "29 Road spikes \n", + ".. ... \n", + "470 Tama console \n", + "471 Tama crédence \n", + "472 Roly-poly chair \n", + "473 Calee table lamp \n", + "474 Song coffee tables \n", + "475 Neil table lamp \n", + "476 Melusine table lamp \n", + "477 Mategot trolley \n", + "478 Inciucio pendant lamp \n", + "479 Riki trolley \n", + "480 Cancan floor light \n", + "481 Passe-passe coat rack \n", + "482 Destructuree pendant lamp \n", + "483 Sports bottle \n", + "484 Lego_bricks \n", + "485 Kids chair \n", + "486 Antique oil lamp \n", + "487 Diwali oil lamp \n", + "488 Antique oil lamp \n", + "489 Casual couple lowpoly rigged (free sample) \n", + "490 Simple pouf \n", + "491 Classic water fountain \n", + "492 Kitchen chef's knife \n", + "493 Dirty steam punk knight for unity \n", + "494 Shotgun (free) \n", + "495 Quin the mantis for unity remake \n", + "496 Urn \n", + "497 Armchair - fabric/wood materials \n", + "498 Low poly grass pack \n", + "499 Piano bench \n", + "\n", + " description owner \\\n", + "0 Free model. You can use for base anatomy/propo... niyoo \n", + "1 Render at Night \n", + "2 This is a helmet I made.CC0 License NotJerd \n", + "3 Models of 5 different dominoes.Polygons/Vertic... Render at Night \n", + "4 I was starting work on a new game in unity and... HyperChromatica \n", + "5 counter and bar stools Are the same specificat... ESalem \n", + "6 Small low poly shop cabin. MarkoffIN \n", + "7 Game ready model, low poly can used as a game ... Young_Wizard \n", + "8 3D model for the atom. The whole project was m... Abdo Ashraf \n", + "9 Vintage fan Akumax Maxime \n", + "10 This model was created for an art challenge an... folkvangr \n", + "11 Indoors test scene made with Blender 2.8.It co... folkvangr \n", + "12 This is a simple architecture test scene made ... folkvangr \n", + "13 - Ceramic coffee cup with plate -This model co... OemThr \n", + "14 Just a sculpting/texturing practice I did. Vertici \n", + "15 free 3d obj and Maya please give me. feedback,... Andres_R26 \n", + "16 This is a simple architecture test scene made ... folkvangr \n", + "17 Detailed High definition model Xiaomi Redmi 7A... ES_3D \n", + "18 w1050263 \n", + "19 **office chair** with vray material ready to p... Esraa abdelsalam2711 \n", + "20 * This Urn is a high quality polygonal model w... wave design \n", + "21 OBJ, FBX, DAE files of an unwrapped 3D object ... shara_d \n", + "22 Metal Containers3D Model Ready for Games. PBR ... Adrian Kulawik \n", + "23 Saved as 3ds max 2015 version file.As you work... w1050263 \n", + "24 #sink #Kitchen #tap #faucet #bibcock w1050263 \n", + "25 This is a simple house model. Except for the c... vini3dmodels \n", + "26 * Saved as 3ds max 2015 version file.Nowadays,... w1050263 \n", + "27 A CPU fan.Low poly and mid poly includedBlend ... DevmanModels \n", + "28 Low poly fuel canister. MarkoffIN \n", + "29 Low poly road obstacle with texture. MarkoffIN \n", + ".. ... ... \n", + "470 Tama Console by Gallotti & Radice | 3d model p... Designconnected \n", + "471 Tama Crédence by Gallotti & Radice | 3d model ... Designconnected \n", + "472 Roly-Poly Chair by Driade | 3d model produced ... Designconnected \n", + "473 Calee Table Lamp by South Hill Home | 3d model... Designconnected \n", + "474 Song Coffee Tables by Minotti | 3d model produ... Designconnected \n", + "475 Neil Table Lamp by Ligne Roset | 3d model prod... Designconnected \n", + "476 Melusine Table Lamp by Ligne Roset | 3d model ... Designconnected \n", + "477 Mategot Trolley by Gubi | 3d model produced by... Designconnected \n", + "478 Inciucio Pendant Lamp by Gibas | 3d model prod... Designconnected \n", + "479 Riki Trolley by Gallotti & Radice | 3d model p... Designconnected \n", + "480 Cancan Floor Light by Ligne Roset | 3d model p... Designconnected \n", + "481 Passe-Passe Coat Rack by Ligne Roset | 3d mode... Designconnected \n", + "482 Destructuree Pendant Lamp by Ligne Roset | 3d ... Designconnected \n", + "483 **********************************************... bomi1337 \n", + "484 Lego Bricks Basic anubhav462 \n", + "485 cinema 4d model of simple kids table and chair... rayson278 \n", + "486 A collection of antique oil lampsThis design i... DTG Amusements \n", + "487 Diwali Oil LampThis design is not animated. 80... DTG Amusements \n", + "488 Antique Oil LampThis design is not animated. 4... DTG Amusements \n", + "489 LowPoly Style Couple, casual man and woman. Cr... Denys Almaral \n", + "490 Simple PoufDimensions: L 450 x W 450 x H 350 m... Desert Night \n", + "491 Modeled with Autodesk Maya 2016 using polygons... Marc Mons \n", + "492 It's a simple chef's knife with a wooden handl... sepandj \n", + "493 humanoid rigged character for unity.this packa... GAMEASS \n", + "494 Free shotgun ready to use for your game, fully... maskedmole \n", + "495 'CREATURE FOR UNITY' REMAKED!QUIN the mantis R... GAMEASS \n", + "496 This is an older looking Medieval or Victorian... Iridesium \n", + "497 | MODEL DESCRIPTION |-This is a model of a mod... matredo \n", + "498 Pack Contains: 13 types of Grass(FBX),7 types ... Moi Loy \n", + "499 This is an older, worn, piano bench (or any ki... Iridesium \n", + "\n", + " price license published_date \\\n", + "0 Free - All Extended Uses 2019-07-21 \n", + "1 Free - Editorial Uses Only 2019-07-21 \n", + "2 Free - All Extended Uses 2019-07-20 \n", + "3 Free - All Extended Uses 2019-07-20 \n", + "4 Free - All Extended Uses 2019-07-20 \n", + "5 Free - All Extended Uses 2019-07-20 \n", + "6 Free - All Extended Uses 2019-07-20 \n", + "7 Free - All Extended Uses 2019-07-20 \n", + "8 Free - All Extended Uses 2019-07-20 \n", + "9 Free - All Extended Uses 2019-07-19 \n", + "10 Free - All Extended Uses 2019-07-19 \n", + "11 Free - All Extended Uses 2019-07-19 \n", + "12 Free - All Extended Uses 2019-07-19 \n", + "13 Free - All Extended Uses 2019-07-19 \n", + "14 Free - All Extended Uses 2019-07-19 \n", + "15 Free - All Extended Uses 2019-07-19 \n", + "16 Free - All Extended Uses 2019-07-18 \n", + "17 Free - Editorial Uses AllowedExtended Uses May Nee... 2019-07-18 \n", + "18 Free - All Extended Uses 2019-07-18 \n", + "19 Free - All Extended Uses 2019-07-17 \n", + "20 Free - All Extended Uses 2019-07-17 \n", + "21 Free - All Extended Uses 2019-07-14 \n", + "22 Free - All Extended Uses 2019-07-17 \n", + "23 Free - All Extended Uses 2019-07-17 \n", + "24 Free - All Extended Uses 2019-07-17 \n", + "25 Free - All Extended Uses 2019-07-15 \n", + "26 Free - All Extended Uses 2019-07-15 \n", + "27 Free - All Extended Uses 2019-07-14 \n", + "28 Free - All Extended Uses 2019-07-13 \n", + "29 Free - All Extended Uses 2019-07-13 \n", + ".. ... ... ... \n", + "470 Free - Editorial Uses Only 2019-03-18 \n", + "471 Free - Editorial Uses Only 2019-03-18 \n", + "472 Free - Editorial Uses Only 2019-03-18 \n", + "473 Free - Editorial Uses Only 2019-03-18 \n", + "474 Free - Editorial Uses Only 2019-03-18 \n", + "475 Free - Editorial Uses Only 2019-03-18 \n", + "476 Free - Editorial Uses Only 2019-03-18 \n", + "477 Free - Editorial Uses Only 2019-03-18 \n", + "478 Free - Editorial Uses Only 2019-03-18 \n", + "479 Free - Editorial Uses Only 2019-03-18 \n", + "480 Free - Editorial Uses Only 2019-03-18 \n", + "481 Free - Editorial Uses Only 2019-03-18 \n", + "482 Free - Editorial Uses Only 2019-03-18 \n", + "483 Free - All Extended Uses 2019-03-18 \n", + "484 Free - Editorial Uses AllowedExtended Uses May Nee... 2019-03-17 \n", + "485 Free - All Extended Uses 2019-03-17 \n", + "486 Free - All Extended Uses 2019-03-16 \n", + "487 Free - All Extended Uses 2019-03-16 \n", + "488 Free - All Extended Uses 2019-03-16 \n", + "489 Free - All Extended Uses 2019-03-16 \n", + "490 Free - All Extended Uses 2019-03-16 \n", + "491 Free - All Extended Uses 2019-03-15 \n", + "492 Free - All Extended Uses 2019-03-15 \n", + "493 Free - All Extended Uses 2019-03-15 \n", + "494 Free - All Extended Uses 2019-03-15 \n", + "495 Free - All Extended Uses 2019-03-15 \n", + "496 Free - Editorial Uses Only 2019-03-14 \n", + "497 Free - All Extended Uses 2019-03-14 \n", + "498 Free - All Extended Uses 2019-03-14 \n", + "499 Free - All Extended Uses 2019-03-13 \n", + "\n", + " formats_available \\\n", + "0 [OBJ ] \n", + "1 [OBJ ] \n", + "2 [OBJ ] \n", + "3 [OBJ ] \n", + "4 [FBX 1, 0\\n] \n", + "5 [3D Studio, FBX , OBJ ] \n", + "6 [FBX ] \n", + "7 [FBX , OBJ , Other ] \n", + "8 Unknown \n", + "9 [OBJ ] \n", + "10 Unknown \n", + "11 Unknown \n", + "12 Unknown \n", + "13 [OBJ , FBX , Collada ] \n", + "14 Unknown \n", + "15 [Other ] \n", + "16 Unknown \n", + "17 [3D Studio, 2011\\n, FBX 2011, OBJ 2011, VRML 2... \n", + "18 [3D Studio, OBJ , FBX , Other ] \n", + "19 [3D Studio, Collada , FBX , OBJ , Other ] \n", + "20 [OBJ , FBX , Collada ] \n", + "21 [FBX , Collada , OBJ ] \n", + "22 [OBJ 2019] \n", + "23 [OBJ , 3D Studio, FBX , Other ] \n", + "24 [3D Studio, OBJ , FBX , Other ] \n", + "25 [FBX 2016, OBJ 2016, Other 2016] \n", + "26 [3D Studio, FBX , OBJ , Other ] \n", + "27 [Other ] \n", + "28 [FBX ] \n", + "29 [FBX ] \n", + ".. ... \n", + "470 [FBX , Other ] \n", + "471 [FBX , Other ] \n", + "472 [FBX ] \n", + "473 [FBX , Other ] \n", + "474 [FBX , Other ] \n", + "475 [FBX , Other ] \n", + "476 [FBX , Other ] \n", + "477 [FBX , Other ] \n", + "478 [FBX ] \n", + "479 [FBX , Other ] \n", + "480 [FBX , Other ] \n", + "481 [FBX , Other ] \n", + "482 [FBX ] \n", + "483 [FBX , Other , OBJ , STL ] \n", + "484 [FBX ] \n", + "485 Unknown \n", + "486 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "487 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "488 [3D Studio, 2013\\n, AutoCAD drawing, 2013\\n, D... \n", + "489 [FBX 2014] \n", + "490 Unknown \n", + "491 [OBJ 2016, FBX 2016] \n", + "492 [OBJ , Other , FBX , OpenFlight , IGES , 3D St... \n", + "493 Unknown \n", + "494 [FBX ] \n", + "495 Unknown \n", + "496 [FBX , OBJ , STL , Other ] \n", + "497 Unknown \n", + "498 [FBX ] \n", + "499 [FBX , OBJ , STL , Other ] \n", + "\n", + " list_categories \\\n", + "0 [3D Model, characters, people, man] \n", + "1 [3D Model, nature, plants, grasses, ornamental... \n", + "2 [3D Model, sports, outdoor sports, scuba, divi... \n", + "3 [3D Model, toys and games, games, dominos] \n", + "4 [3D Model, symbols] \n", + "5 [3D Model, furnishings, cupboard, showcase] \n", + "6 [3D Model, architecture, building, commercial ... \n", + "7 [3D Model, weaponry, weapons, firearms, rifle,... \n", + "8 [3D Model, science, chemistry, atom] \n", + "9 [3D Model, interior design, housewares, fan, b... \n", + "10 Unknown \n", + "11 Unknown \n", + "12 Unknown \n", + "13 [3D Model, interior design, housewares, dining... \n", + "14 Unknown \n", + "15 Unknown \n", + "16 Unknown \n", + "17 [3D Model, technology, phone, cellphone, smart... \n", + "18 [3D Model, interior design, fixtures, lighting... \n", + "19 [3D Model, furnishings, seating, chair, office... \n", + "20 [3D Model, interior design, housewares, genera... \n", + "21 [3D Model, furnishings, table] \n", + "22 [3D Model, industrial, industrial container, c... \n", + "23 [3D Model, interior design, appliance, commerc... \n", + "24 [3D Model, interior design, fixtures, sink, ki... \n", + "25 [3D Model, architecture, building, residential... \n", + "26 [3D Model, furnishings, table] \n", + "27 [3D Model, technology, computer equipment, com... \n", + "28 [3D Model, industrial, industrial container, f... \n", + "29 [3D Model, architecture, urban design, street ... \n", + ".. ... \n", + "470 [3D Model, furnishings, table, console table] \n", + "471 [3D Model, furnishings, sideboard] \n", + "472 [3D Model, furnishings, seating, chair, side c... \n", + "473 [3D Model, interior design, fixtures, lighting... \n", + "474 [3D Model, furnishings, table, coffee table] \n", + "475 [3D Model, interior design, fixtures, lighting... \n", + "476 [3D Model, interior design, fixtures, lighting... \n", + "477 [3D Model, industrial, tools, cart] \n", + "478 [3D Model, interior design, fixtures, lighting... \n", + "479 [3D Model, furnishings, kitchen cart] \n", + "480 [3D Model, interior design, fixtures, lighting... \n", + "481 [3D Model, furnishings, rack, clothes rack, co... \n", + "482 [3D Model, interior design, fixtures, lighting... \n", + "483 [3D Model, sports, exercise equipment, sports ... \n", + "484 [3D Model, toys and games, toys, building toys... \n", + "485 [3D Model, furnishings, seating, chair, childr... \n", + "486 [3D Model, interior design, fixtures, lighting... \n", + "487 [3D Model, interior design, fixtures, lighting... \n", + "488 [3D Model, interior design, fixtures, lighting... \n", + "489 [3D Model, characters, people, man, cartoon man] \n", + "490 [3D Model, furnishings, seating, chair, foot r... \n", + "491 [3D Model, architecture, site components, land... \n", + "492 [3D Model, interior design, housewares, kitche... \n", + "493 [3D Model, characters, people, military people... \n", + "494 [3D Model, weaponry, weapons, firearms, shotgun] \n", + "495 [3D Model, characters, mythological creatures,... \n", + "496 [3D Model, interior design, housewares, genera... \n", + "497 [3D Model, furnishings, seating, chair, lounge... \n", + "498 [3D Model, nature, plants, cartoon plant] \n", + "499 [3D Model, furnishings, seating, bench, wooden... \n", + "\n", + " links_categories \\\n", + "0 [https://www.turbosquid.com/Search/3d-models, ... \n", + "1 [https://www.turbosquid.com/Search/3d-models, ... \n", + "2 [https://www.turbosquid.com/Search/3d-models, ... \n", + "3 [https://www.turbosquid.com/Search/3d-models, ... \n", + "4 [https://www.turbosquid.com/Search/3d-models, ... \n", + "5 [https://www.turbosquid.com/Search/3d-models, ... \n", + "6 [https://www.turbosquid.com/Search/3d-models, ... \n", + "7 [https://www.turbosquid.com/Search/3d-models, ... \n", + "8 [https://www.turbosquid.com/Search/3d-models, ... \n", + "9 [https://www.turbosquid.com/Search/3d-models, ... \n", + "10 Unknown \n", + "11 Unknown \n", + "12 Unknown \n", + "13 [https://www.turbosquid.com/Search/3d-models, ... \n", + "14 Unknown \n", + "15 Unknown \n", + "16 Unknown \n", + "17 [https://www.turbosquid.com/Search/3d-models, ... \n", + "18 [https://www.turbosquid.com/Search/3d-models, ... \n", + "19 [https://www.turbosquid.com/Search/3d-models, ... \n", + "20 [https://www.turbosquid.com/Search/3d-models, ... \n", + "21 [https://www.turbosquid.com/Search/3d-models, ... \n", + "22 [https://www.turbosquid.com/Search/3d-models, ... \n", + "23 [https://www.turbosquid.com/Search/3d-models, ... \n", + "24 [https://www.turbosquid.com/Search/3d-models, ... \n", + "25 [https://www.turbosquid.com/Search/3d-models, ... \n", + "26 [https://www.turbosquid.com/Search/3d-models, ... \n", + "27 [https://www.turbosquid.com/Search/3d-models, ... \n", + "28 [https://www.turbosquid.com/Search/3d-models, ... \n", + "29 [https://www.turbosquid.com/Search/3d-models, ... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3d-models, ... \n", + "471 [https://www.turbosquid.com/Search/3d-models, ... \n", + "472 [https://www.turbosquid.com/Search/3d-models, ... \n", + "473 [https://www.turbosquid.com/Search/3d-models, ... \n", + "474 [https://www.turbosquid.com/Search/3d-models, ... \n", + "475 [https://www.turbosquid.com/Search/3d-models, ... \n", + "476 [https://www.turbosquid.com/Search/3d-models, ... \n", + "477 [https://www.turbosquid.com/Search/3d-models, ... \n", + "478 [https://www.turbosquid.com/Search/3d-models, ... \n", + "479 [https://www.turbosquid.com/Search/3d-models, ... \n", + "480 [https://www.turbosquid.com/Search/3d-models, ... \n", + "481 [https://www.turbosquid.com/Search/3d-models, ... \n", + "482 [https://www.turbosquid.com/Search/3d-models, ... \n", + "483 [https://www.turbosquid.com/Search/3d-models, ... \n", + "484 [https://www.turbosquid.com/Search/3d-models, ... \n", + "485 [https://www.turbosquid.com/Search/3d-models, ... \n", + "486 [https://www.turbosquid.com/Search/3d-models, ... \n", + "487 [https://www.turbosquid.com/Search/3d-models, ... \n", + "488 [https://www.turbosquid.com/Search/3d-models, ... \n", + "489 [https://www.turbosquid.com/Search/3d-models, ... \n", + "490 [https://www.turbosquid.com/Search/3d-models, ... \n", + "491 [https://www.turbosquid.com/Search/3d-models, ... \n", + "492 [https://www.turbosquid.com/Search/3d-models, ... \n", + "493 [https://www.turbosquid.com/Search/3d-models, ... \n", + "494 [https://www.turbosquid.com/Search/3d-models, ... \n", + "495 [https://www.turbosquid.com/Search/3d-models, ... \n", + "496 [https://www.turbosquid.com/Search/3d-models, ... \n", + "497 [https://www.turbosquid.com/Search/3d-models, ... \n", + "498 [https://www.turbosquid.com/Search/3d-models, ... \n", + "499 [https://www.turbosquid.com/Search/3d-models, ... \n", + "\n", + " list_tags \\\n", + "0 [characters, man, male, human, zbrush, ztl, ob... \n", + "1 [minecraft, grass, block, cube] \n", + "2 [Helmet, Undersea] \n", + "3 [domino, dominoes, black, white, tile] \n", + "4 [primitives, prototyping, blender, unity, geom... \n", + "5 [counter, and, bar, stools, Are, same, specifi... \n", + "6 [House, shop, store, stall, depot, trade, cabin.] \n", + "7 [weapon, sci-fi, low-poly, game-ready, sniper-... \n", + "8 [atom, science, chemistry, chemical, scientifi... \n", + "9 [Fan, ventilateur] \n", + "10 [leather, furniture, seat, decor, stool, other] \n", + "11 [indoors, room, furniture, seat, wood, chair, ... \n", + "12 [flat, apartment, household, building, kitchen... \n", + "13 [coffee, dinner, breakfast, cup, plate, porcel... \n", + "14 [Head, man, male, human] \n", + "15 [low, poly, car, blue] \n", + "16 [column, architecture, marble, bedrock, roman,... \n", + "17 [3d, model, 3ds, max, Motorola, Moto, G7, Plus... \n", + "18 [#lighting, #light, bulb, #firelight] \n", + "19 [#chair, #office, #modern, #3dsmax, #3dmodelin... \n", + "20 [Urn, Planter, Vase, Garden, pot, decor, Decor... \n", + "21 [Table, Home, Decor, Kitchen, TableLegs, Unwra... \n", + "22 [metal, container, mars, kitbash, modular, pro... \n", + "23 [#coffee, #machine, #vending, machine] \n", + "24 [#sink, #Kitchen, #tap, #faucet, #bibcock] \n", + "25 [architecture, house, home, building, suburb, ... \n", + "26 [table, Kitchen, cooktable, Breakfast, Lunch, ... \n", + "27 [3d, cpu, fan, Fan, Cooler, fan, Cpu, cooler] \n", + "28 [Canister, vessel, vial, container, fuel, green] \n", + "29 [Spikes, Road, Obstacle, Hazard] \n", + ".. ... \n", + "470 [Console-tables, Gallotti-and-Radice, Carlo-Co... \n", + "471 [Sideboards, Gallotti-and-Radice, Carlo-Colomb... \n", + "472 [Chairs, Driade, Faye-Toogood, Plastic, Contem... \n", + "473 [Table-lights, South-Hill-Home, Brass, Painted... \n", + "474 [Coffee-tables, Minotti, Rodolfo-Dordoni, Natu... \n", + "475 [Table-lights, Ligne-Roset, -Ligne-Roset, Glas... \n", + "476 [Table-lights, Ligne-Roset, Peter-Maly, Solid-... \n", + "477 [Console-tables, Occasional-tables, Gubi, Math... \n", + "478 [Pendant-lights, Gibas, Painted-metal, Contemp... \n", + "479 [Trays, Gallotti-and-Radice, Pierangelo-Gallot... \n", + "480 [Floor-lights, Ligne-Roset, Patrick-Zulauf, Co... \n", + "481 [Cloth-stands, Ligne-Roset, Philippe-Nigro, So... \n", + "482 [Pendant-lights, Ligne-Roset, Kazuhiro-Yamanak... \n", + "483 [bottle, metal, sport, sports, drink, hydro, v... \n", + "484 [Lego, Bricks] \n", + "485 [table, and, chair] \n", + "486 [Lamp, oil, lamp] \n", + "487 [Lamp, Diwali, Oil, Lamp] \n", + "488 [Lamp, Oil, Lamp] \n", + "489 [people, rigged, character, lowpoly, style, wo... \n", + "490 [simple, pouf, chair, fabric, modern, 3d, model] \n", + "491 [water, fountain, architecture, exterior, stre... \n", + "492 [knife, kitchen, sharp, still, wood, brass, bl... \n", + "493 [knight, unity, humanoid, rigged, character, s... \n", + "494 [shotgun, free, firearm] \n", + "495 [unity, RPG, monster, bug, creature, sci, fi, ... \n", + "496 [urn, ashes, tomb, bottle, jar, ancient, ossua... \n", + "497 [chair, armchair, furniture, interior, design] \n", + "498 [lowpoly, grass] \n", + "499 [Piano, bench, grand, seat, stool, desk, side,... \n", + "\n", + " links_tags \n", + "0 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "1 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "2 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "3 [https://www.turbosquid.com/Search/3D-Models/d... \n", + "4 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "5 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "6 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "7 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "8 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "9 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "10 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "11 [https://www.turbosquid.com/Search/3D-Models/i... \n", + "12 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "13 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "14 [https://www.turbosquid.com/Search/3D-Models/h... \n", + "15 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "16 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "17 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "18 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "19 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "20 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "21 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "22 [https://www.turbosquid.com/Search/3D-Models/m... \n", + "23 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "24 [https://www.turbosquid.com/Search/3D-Models/%... \n", + "25 [https://www.turbosquid.com/Search/3D-Models/a... \n", + "26 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "27 [https://www.turbosquid.com/Search/3D-Models/3... \n", + "28 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "29 [https://www.turbosquid.com/Search/3D-Models/s... \n", + ".. ... \n", + "470 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "471 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "472 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "473 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "474 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "475 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "476 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "477 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "478 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "479 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "480 [https://www.turbosquid.com/Search/3D-Models/f... \n", + "481 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "482 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "483 [https://www.turbosquid.com/Search/3D-Models/b... \n", + "484 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "485 [https://www.turbosquid.com/Search/3D-Models/t... \n", + "486 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "487 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "488 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "489 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "490 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "491 [https://www.turbosquid.com/Search/3D-Models/w... \n", + "492 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "493 [https://www.turbosquid.com/Search/3D-Models/k... \n", + "494 [https://www.turbosquid.com/Search/3D-Models/s... \n", + "495 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "496 [https://www.turbosquid.com/Search/3D-Models/u... \n", + "497 [https://www.turbosquid.com/Search/3D-Models/c... \n", + "498 [https://www.turbosquid.com/Search/3D-Models/l... \n", + "499 [https://www.turbosquid.com/Search/3D-Models/p... \n", + "\n", + "[500 rows x 11 columns]" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dataset_scraping.fillna('No disponible')\n", + "change_to_unknown = lambda x: 'Unknown' if x == [] else x\n", + "for i in dataset_scraping.columns:\n", + " dataset_scraping[i] = dataset_scraping[i].apply(change_to_unknown)\n", + "dataset_scraping" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Guardamos el dataset limpio." + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [], + "source": [ + "dataset_scraping.to_csv('datase_scraping_clean.csv',index=False)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Análisis." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Ahora podemos obtener las categorias o etiquetas más frecuentes." + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Categorias más frecuentes en orden ascendente:\n", + "[('housewares', 40), ('weapons', 41), ('lamp', 43), ('architecture', 50), ('weaponry', 51), ('lighting', 51), ('fixtures', 53), ('furnishings', 75), ('interior design', 107), ('3D Model', 492)]\n" + ] + } + ], + "source": [ + "lista_categorias = dataset_scraping['list_categories']\n", + "lista_categorias = [lista_categorias.loc[[i]].values[0][0] for i in range(len(lista_categorias))]\n", + "lista_categorias_total = [categoria for lista in lista_categorias for categoria in lista]\n", + "set_categorias = set(lista_categorias_total)\n", + "dict_freq_categories = {k:lista_categorias_total.count(k) for k in set_categorias}\n", + "freq_categories_order = sorted(dict_freq_categories.items(), key=operator.itemgetter(1))\n", + "print('Categorias más frecuentes en orden ascendente:')\n", + "print(freq_categories_order[-10:])" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Categorias más frecuentes en orden ascendente:\n", + "[('poly', 26), ('furniture', 31), ('lowpoly', 32), ('Bedroom', 38), ('Painted-metal', 39), ('free', 39), ('game', 41), ('3d', 45), ('Contemporary-design', 52), ('Living', 61)]\n" + ] + } + ], + "source": [ + "lista_etiquetas = dataset_scraping['list_tags']\n", + "lista_etiquetas = [lista_etiquetas.loc[[i]].values[0][0] for i in range(len(lista_etiquetas))]\n", + "lista_etiquetas_total = [etiqueta for lista in lista_etiquetas for etiqueta in lista]\n", + "set_etiquetas = set(lista_etiquetas_total)\n", + "dict_freq_tags = {k:lista_etiquetas_total.count(k) for k in set_etiquetas}\n", + "freq_tags_order = sorted(dict_freq_tags.items(), key=operator.itemgetter(1))\n", + "print('Categorias más frecuentes en orden ascendente:')\n", + "print(freq_tags_order[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Buscar los \"dueños\" más frecuentes." + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "292" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "dueños = dataset_scraping['owner']\n", + "dueños = [dueños.loc[[i]].values[0][0] for i in range(len(dueños))]\n", + "len(set(dueños))" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Los dueños con más modelos en orden ascendente:\n", + "[('usman039', 4), ('tauan_bellintani', 5), ('w1050263', 5), ('renedominick1999', 5), ('Joshua Kolby', 5), ('desmundo', 8), ('DTG Amusements', 9), ('AdrienJ', 9), ('Brian31', 10), ('Designconnected', 63)]\n" + ] + } + ], + "source": [ + "dueños_dict = {k:dueños.count(k) for k in set(dueños)}\n", + "freq_dueños_order = sorted(dueños_dict.items(), key=operator.itemgetter(1))\n", + "print('Los dueños con más modelos en orden ascendente:')\n", + "print(freq_dueños_order[-10:])" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "La posibilidad de filtrar para encontrar información relevante sobre que dueño es el más activo con base en la fecha de publicación de sus modelos y el número de modelos es posible calcularla con base en el dataset limpio.\n", + "\n", + "Ahora bien como podemos ver tambien sería interesante analizar información sobre los modelos de pago que desgrciadamente no alcanzamos a obtener debido a la inmensa cantidad de modelos que hay en la página. Por ahora se han prácticado las habilidades de uso de APIs y web scraping." + ] + } + ], + "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.7.3" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}