diff --git a/starter_code/.ipynb_checkpoints/queries-checkpoint.ipynb b/starter_code/.ipynb_checkpoints/queries-checkpoint.ipynb new file mode 100644 index 0000000..6eee69f --- /dev/null +++ b/starter_code/.ipynb_checkpoints/queries-checkpoint.ipynb @@ -0,0 +1,330 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from pymongo import MongoClient\n", + "client=MongoClient()\n", + "db=client.companies" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Answers\n", + "### 1. All the companies that it's name match 'Babelgum'. Retrieve only their `name` field." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 2. All the companies that have more than 5000 employees. Limit the search to 20 companies and sort them by **number of employees**." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 3. All the companies founded between 2000 and 2005, both years included. Retrieve only the `name` and `founded_year` fileds." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 4. All the companies that had a Valuation Amount of more than 100.000.000 and have been founded before 2010. Retrieve only the `name` and `ipo` fields." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 5. All the companies that have less than 1000 employees and have been founded before 2005. Order them by the number of employees and limit the search to 10 companies." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 6. All the companies that don't include the `partners` field." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 7. All the companies that have a null type of value on the `category_code` field." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 8. All the companies that have at least 100 employees but less than 1000. Retrieve only the `name` and `number of employees` fields." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 9. Order all the companies by their IPO price descendently." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 10. Retrieve the 10 companies with more employees, order by the `number of employees`" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 11. All the companies founded on the second semester of the year. Limit your search to 1000 companies." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 12. All the companies that have been 'deadpooled' after the third year." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 13. All the companies founded before 2000 that have and acquisition amount of more than 10.000.000" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 14. All the companies that have been acquired after 2015, order by the acquisition amount, and retrieve only their `name` and `acquisiton` field." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + " " + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 15. Order the companies by their `founded year`, retrieving only their `name` and `founded year`." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 16. All the companies that have been founded on the first seven days of the month, including the seventh. Sort them by their `aquisition price` descendently. Limit the search to 10 documents." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 17. All the companies on the 'web' `category` that have more than 4000 employees. Sort them by the amount of employees in ascendant order." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 18. All the companies which their acquisition amount is more than 10.000.000, and currency are 'EUR'.\n" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 19. All the companies that have been acquired on the first trimester of the year. Limit the search to 10 companies, and retrieve only their `name` and `acquisition` fields." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### 20. All the companies that have been founded between 2000 and 2010, but have not been acquired before 2011." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.7.4" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} diff --git a/starter_code/queries.ipynb b/starter_code/queries.ipynb index 6eee69f..0896de1 100644 --- a/starter_code/queries.ipynb +++ b/starter_code/queries.ipynb @@ -9,13 +9,53 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 82, "metadata": {}, "outputs": [], "source": [ + "\n", + "from sqlalchemy import create_engine \n", + "import pymysql\n", + "import os\n", + "import pandas as pd\n", + "\n", + "\n", "from pymongo import MongoClient\n", - "client=MongoClient()\n", - "db=client.companies" + "client=MongoClient(\"mongodb+srv://Ever77x:Nico2014*@cluster0.nh47y.mongodb.net/myFirstDatabase?retryWrites=true&w=majority\")\n", + "db=client.db_companies\n", + "collection_companies = db.companies\n" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['Probando',\n", + " 'db_companies',\n", + " 'sakila',\n", + " 'sample_airbnb',\n", + " 'sample_analytics',\n", + " 'sample_geospatial',\n", + " 'sample_mflix',\n", + " 'sample_restaurants',\n", + " 'sample_supplies',\n", + " 'sample_training',\n", + " 'sample_weatherdata',\n", + " 'admin',\n", + " 'local']" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "client.list_database_names()" ] }, { @@ -28,10 +68,56 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 47, "metadata": {}, - "outputs": [], - "source": [] + "outputs": [ + { + "data": { + "text/html": [ + "
| \n", + " | name | \n", + "
|---|---|
| 0 | \n", + "Babelgum | \n", + "
| \n", + " | _id | \n", + "name | \n", + "permalink | \n", + "crunchbase_url | \n", + "homepage_url | \n", + "blog_url | \n", + "blog_feed_url | \n", + "twitter_username | \n", + "category_code | \n", + "number_of_employees | \n", + "... | \n", + "investments | \n", + "acquisition | \n", + "acquisitions | \n", + "offices | \n", + "milestones | \n", + "ipo | \n", + "video_embeds | \n", + "screenshots | \n", + "external_links | \n", + "partners | \n", + "
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | \n", + "52cdef7d4bab8bd67529941a | \n", + "Siemens | \n", + "siemens | \n", + "http://www.crunchbase.com/company/siemens | \n", + "http://www.siemens.com | \n", + "\n", + " | \n", + " | Siemens | \n", + "hardware | \n", + "405000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[{'price_amount': 418000000, 'price_currency_c... | \n", + "[{'description': '', 'address1': 'Wittelsbache... | \n", + "[{'id': 35852, 'description': 'Siemens Receive... | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[{'embed_code': '<iframe width=\"420\" height=\"3... | \n", + "[{'available_sizes': [[[150, 92], 'assets/imag... | \n", + "[] | \n", + "[] | \n", + "
| 1 | \n", + "52cdef7c4bab8bd67529856a | \n", + "IBM | \n", + "ibm | \n", + "http://www.crunchbase.com/company/ibm | \n", + "http://www.ibm.com | \n", + "\n", + " | \n", + " | IBM | \n", + "software | \n", + "388000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'c', 'source... | \n", + "None | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': 'Corporate Headquarters', 'ad... | \n", + "[{'id': 10471, 'description': 'IBM Completes A... | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[{'embed_code': '<embed src=\"http://blip.tv/pl... | \n", + "[{'available_sizes': [[[150, 93], 'assets/imag... | \n", + "[{'external_url': 'http://mashpedia.com/IBM', ... | \n", + "[] | \n", + "
| 2 | \n", + "52cdef7d4bab8bd675299d33 | \n", + "Toyota | \n", + "toyota | \n", + "http://www.crunchbase.com/company/toyota | \n", + "http://www.toyota-global.com | \n", + "\n", + " | \n", + " | Toyota | \n", + "enterprise | \n", + "320000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'a', 'source... | \n", + "None | \n", + "[] | \n", + "[{'description': 'HQ', 'address1': 'Toyota Mot... | \n", + "[] | \n", + "None | \n", + "[{'embed_code': '<iframe width=\"430\" height=\"3... | \n", + "[{'available_sizes': [[[150, 84], 'assets/imag... | \n", + "[] | \n", + "[] | \n", + "
| 3 | \n", + "52cdef7c4bab8bd675297e89 | \n", + "PayPal | \n", + "paypal | \n", + "http://www.crunchbase.com/company/paypal | \n", + "http://www.paypal.com | \n", + "\n", + " | \n", + " | paypal | \n", + "finance | \n", + "300000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'c', 'source... | \n", + "{'price_amount': 1500000000, 'price_currency_c... | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': '', 'address1': '2145 E Hamil... | \n", + "[{'id': 11916, 'description': 'Reserve Bank Of... | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 120], 'assets/ima... | \n", + "[{'external_url': 'http://www.sociableblog.com... | \n", + "[] | \n", + "
| 4 | \n", + "52cdef7e4bab8bd67529b0fe | \n", + "Nippon Telegraph and Telephone Corporation | \n", + "nippon-telegraph-and-telephone-corporation | \n", + "http://www.crunchbase.com/company/nippon-teleg... | \n", + "http://www.ntt.co.jp/index_e.html | \n", + "\n", + " | \n", + " | \n", + " | None | \n", + "227000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'e', 'source... | \n", + "None | \n", + "[] | \n", + "[{'description': 'NTT', 'address1': '3-1, Otem... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 42], 'assets/imag... | \n", + "[] | \n", + "[] | \n", + "
| 5 | \n", + "52cdef7d4bab8bd675298aa4 | \n", + "Samsung Electronics | \n", + "samsung-electronics | \n", + "http://www.crunchbase.com/company/samsung-elec... | \n", + "http://www.samsung.com/us | \n", + "http://www.samsungvillage.com/ | \n", + "\n", + " | samsungtweets | \n", + "hardware | \n", + "221726 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'b', 'source... | \n", + "None | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': 'HQ - South Korea', 'address1... | \n", + "[{'id': 11908, 'description': 'Samsung Ships 3... | \n", + "None | \n", + "[{'embed_code': '<iframe src=\"http://blip.tv/p... | \n", + "[{'available_sizes': [[[94, 150], 'assets/imag... | \n", + "[{'external_url': 'http://mashpedia.com/Samsun... | \n", + "[] | \n", + "
| 6 | \n", + "52cdef7d4bab8bd675298b99 | \n", + "Accenture | \n", + "accenture | \n", + "http://www.crunchbase.com/company/accenture | \n", + "http://www.accenture.com | \n", + "http://www.accenture.com/Global/Accenture_Blogs/ | \n", + "http://feeds.accenture.com/Accenture_High_Perf... | \n", + "accenture | \n", + "consulting | \n", + "205000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'unattribute... | \n", + "None | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': '', 'address1': '1615 Murray ... | \n", + "[{'id': 1824, 'description': 'Nokia and Accent... | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[] | \n", + "[{'available_sizes': [[[150, 136], 'assets/ima... | \n", + "[{'external_url': 'http://www.accenture.com/Gl... | \n", + "[] | \n", + "
| 7 | \n", + "52cdef7e4bab8bd67529a657 | \n", + "Tata Consultancy Services | \n", + "tata-consultancy-services | \n", + "http://www.crunchbase.com/company/tata-consult... | \n", + "http://www.tcs.com | \n", + "\n", + " | http://www.tcs.com/rss_feeds/Pages/feed.aspx?f=p | \n", + "TCS_News | \n", + "consulting | \n", + "200300 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'description': 'World Headquarters', 'addres... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "
| 8 | \n", + "52cdef7e4bab8bd67529aa51 | \n", + "Flextronics International | \n", + "flextronics-international | \n", + "http://www.crunchbase.com/company/flextronics-... | \n", + "http://www.flextronics.com | \n", + "http://www.flextronicsblog.com/ | \n", + "\n", + " | flextronics | \n", + "None | \n", + "200000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'unattribute... | \n", + "None | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': 'US HQ', 'address1': '6201 Am... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 107], 'assets/ima... | \n", + "[] | \n", + "[] | \n", + "
| 9 | \n", + "52cdef7d4bab8bd675299156 | \n", + "Safeway | \n", + "safeway | \n", + "http://www.crunchbase.com/company/safeway | \n", + "http://www.safeway.com | \n", + "\n", + " | \n", + " | \n", + " | other | \n", + "186000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'description': 'HQ', 'address1': '5918 Stone... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 123], 'assets/ima... | \n", + "[] | \n", + "[] | \n", + "
| 10 | \n", + "52cdef7c4bab8bd675297e6f | \n", + "Sony | \n", + "sony | \n", + "http://www.crunchbase.com/company/sony | \n", + "http://www.sony.com | \n", + "http://blog.sony.com/ | \n", + "http://blog.sony.com/ | \n", + "Sony | \n", + "hardware | \n", + "180500 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[{'price_amount': 260000000, 'price_currency_c... | \n", + "[{'description': 'HQ', 'address1': '16530 Via ... | \n", + "[{'id': 18773, 'description': 'Sony Will Buy O... | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[] | \n", + "[{'available_sizes': [[[150, 107], 'assets/ima... | \n", + "[{'external_url': 'http://www.entechgadget.com... | \n", + "[] | \n", + "
| 11 | \n", + "52cdef7c4bab8bd675298517 | \n", + "LG | \n", + "lg | \n", + "http://www.crunchbase.com/company/lg | \n", + "http://www.lg.com | \n", + "http://lgusblog.com/ | \n", + "\n", + " | LGUS | \n", + "hardware | \n", + "177000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'unattribute... | \n", + "None | \n", + "[] | \n", + "[{'description': 'Headquarters', 'address1': '... | \n", + "[] | \n", + "None | \n", + "[{'embed_code': '<iframe src=\"http://blip.tv/p... | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "
| 12 | \n", + "52cdef7d4bab8bd675299d31 | \n", + "Ford | \n", + "ford | \n", + "http://www.crunchbase.com/company/ford | \n", + "http://www.ford.com | \n", + "\n", + " | \n", + " | FordService | \n", + "automotive | \n", + "171000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[{'price_amount': 9000000, 'price_currency_cod... | \n", + "[{'description': '', 'address1': 'One American... | \n", + "[] | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "
| 13 | \n", + "52cdef7d4bab8bd675298b28 | \n", + "Boeing | \n", + "boeing | \n", + "http://www.crunchbase.com/company/boeing | \n", + "http://www.boeing.com | \n", + "\n", + " | \n", + " | boeingairplanes | \n", + "other | \n", + "160000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': 'Corporate Headquarters', 'ad... | \n", + "[{'id': 44355, 'description': '\r\n", + "Boeing To Rep... | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 94], 'assets/imag... | \n", + "[{'external_url': 'http://jobs-boeing.com/', '... | \n", + "[] | \n", + "
| 14 | \n", + "52cdef7e4bab8bd67529bb5c | \n", + "Digital Equipment Corporation | \n", + "digital-equipment-corporation | \n", + "http://www.crunchbase.com/company/digital-equi... | \n", + "\n", + " | \n", + " | \n", + " | \n", + " | None | \n", + "140000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'description': 'HQ', 'address1': '', 'addres... | \n", + "[{'id': 12279, 'description': 'Ken Olsen, co-f... | \n", + "None | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "
| 15 | \n", + "52cdef7c4bab8bd675297fc2 | \n", + "Nokia | \n", + "nokia | \n", + "http://www.crunchbase.com/company/nokia | \n", + "http://nokia.com | \n", + "\n", + " | \n", + " | nokia | \n", + "mobile | \n", + "125000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'b', 'source... | \n", + "None | \n", + "[{'price_amount': 96800000, 'price_currency_co... | \n", + "[{'description': 'headquarter', 'address1': 'K... | \n", + "[{'id': 9161, 'description': 'Nokia, AT&T Putt... | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[{'embed_code': '<embed src=\"http://blip.tv/pl... | \n", + "[{'available_sizes': [[[150, 131], 'assets/ima... | \n", + "[{'external_url': 'http://en.wikipedia.org/wik... | \n", + "[] | \n", + "
| 16 | \n", + "52cdef7d4bab8bd675299839 | \n", + "MItsubishi Electric | \n", + "mitsubishi-electric | \n", + "http://www.crunchbase.com/company/mitsubishi-e... | \n", + "http://global.mitsubishielectric.com | \n", + "\n", + " | \n", + " | \n", + " | hardware | \n", + "107000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'description': 'HQ', 'address1': 'Tokyo Buil... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 145], 'assets/ima... | \n", + "[] | \n", + "[] | \n", + "
| 17 | \n", + "52cdef7d4bab8bd675299bc3 | \n", + "MItsubishi Electric | \n", + "mitsubishi-electric | \n", + "http://www.crunchbase.com/company/mitsubishi-e... | \n", + "http://global.mitsubishielectric.com | \n", + "\n", + " | \n", + " | \n", + " | hardware | \n", + "107000 | \n", + "... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'description': 'HQ', 'address1': 'Tokyo Buil... | \n", + "[] | \n", + "None | \n", + "[] | \n", + "[{'available_sizes': [[[150, 145], 'assets/ima... | \n", + "[] | \n", + "[] | \n", + "
| 18 | \n", + "52cdef7c4bab8bd6752987ad | \n", + "Comcast | \n", + "comcast | \n", + "http://www.crunchbase.com/company/comcast | \n", + "http://comcast.com | \n", + "\n", + " | \n", + " | XFINITYDeals | \n", + "games_video | \n", + "100000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'a', 'source... | \n", + "None | \n", + "[{'price_amount': 150000000, 'price_currency_c... | \n", + "[{'description': 'One Comcast Center', 'addres... | \n", + "[{'id': 24946, 'description': 'Comcast buys Mi... | \n", + "{'valuation_amount': None, 'valuation_currency... | \n", + "[{'embed_code': '<embed src=\"http://blip.tv/pl... | \n", + "[{'available_sizes': [[[150, 94], 'assets/imag... | \n", + "[] | \n", + "[] | \n", + "
| 19 | \n", + "52cdef7d4bab8bd675298d67 | \n", + "Bertelsmann | \n", + "bertelsmann | \n", + "http://www.crunchbase.com/company/bertelsmann | \n", + "http://www.bertelsmann.com | \n", + "\n", + " | \n", + " | None | \n", + "other | \n", + "100000 | \n", + "... | \n", + "[{'funding_round': {'round_code': 'b', 'source... | \n", + "None | \n", + "[{'price_amount': None, 'price_currency_code':... | \n", + "[{'description': 'Corporate Headquarters', 'ad... | \n", + "[{'id': 20443, 'description': 'A Step Forward?... | \n", + "None | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "[] | \n", + "
20 rows × 42 columns
\n", + "