Spaces:
Runtime error
Runtime error
Create company_profile.py
Browse files- company_profile.py +175 -0
company_profile.py
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
company_profile = {
|
| 2 |
+
"Razorpay": {
|
| 3 |
+
"overview": {
|
| 4 |
+
"description": (
|
| 5 |
+
"Razorpay is India’s first full-stack financial solutions company, "
|
| 6 |
+
"focused on enhancing the payment experience for over 300 million consumers. "
|
| 7 |
+
"Founded in 2014 by IIT Roorkee alumni Harshil Mathur and Shashank Kumar, "
|
| 8 |
+
"the company aims to empower Indian businesses of all sizes to accept, process, "
|
| 9 |
+
"and disburse payments digitally with minimal effort."
|
| 10 |
+
),
|
| 11 |
+
"mission": (
|
| 12 |
+
"Razorpay aims to revolutionize money management for online businesses by providing "
|
| 13 |
+
"developer-friendly APIs, hassle-free integration, and access to a comprehensive suite "
|
| 14 |
+
"of financial products."
|
| 15 |
+
),
|
| 16 |
+
"vision": (
|
| 17 |
+
"To power the financial ecosystem for disruptors, enabling businesses to accept, process, "
|
| 18 |
+
"and disburse payments effortlessly while providing additional services like current accounts, "
|
| 19 |
+
"working capital loans, and payroll processing."
|
| 20 |
+
),
|
| 21 |
+
"headquarters": "Bengaluru, Karnataka, India",
|
| 22 |
+
"founded_year": 2014,
|
| 23 |
+
"industry": "Software Development",
|
| 24 |
+
"company_size": "1,001-5,000 employees",
|
| 25 |
+
"associated_members": 3676,
|
| 26 |
+
"employees": 800,
|
| 27 |
+
"investors": [
|
| 28 |
+
"Sequoia Capital",
|
| 29 |
+
"Tiger Global",
|
| 30 |
+
"Lone Pine Capital",
|
| 31 |
+
"TCV"
|
| 32 |
+
]
|
| 33 |
+
},
|
| 34 |
+
"growth_and_scale": {
|
| 35 |
+
"rapid_growth": (
|
| 36 |
+
"Razorpay has experienced significant growth since its inception, processing billions "
|
| 37 |
+
"of dollars in transactions annually."
|
| 38 |
+
),
|
| 39 |
+
"large_customer_base": (
|
| 40 |
+
"Razorpay serves over 7 million businesses across various industries."
|
| 41 |
+
),
|
| 42 |
+
"expanding_internationally": (
|
| 43 |
+
"Razorpay has expanded its operations beyond India, entering international markets to "
|
| 44 |
+
"cater to the growing demand for digital payment solutions."
|
| 45 |
+
)
|
| 46 |
+
},
|
| 47 |
+
"products_and_services": {
|
| 48 |
+
"RazorpayX": {
|
| 49 |
+
"description": "A suite of products offering comprehensive financial solutions for businesses.",
|
| 50 |
+
"key_features": [
|
| 51 |
+
"Current Accounts",
|
| 52 |
+
"Vendor Payments",
|
| 53 |
+
"Payroll Management",
|
| 54 |
+
"Escrow Accounts",
|
| 55 |
+
"Capital (Loans & Credit Products)",
|
| 56 |
+
"International Payments"
|
| 57 |
+
]
|
| 58 |
+
},
|
| 59 |
+
"payment_methods": [
|
| 60 |
+
"Credit Card",
|
| 61 |
+
"Debit Card",
|
| 62 |
+
"Net Banking",
|
| 63 |
+
"UPI",
|
| 64 |
+
"E-wallets (JioMoney, Mobikwik, Airtel Money, FreeCharge, Ola Money, PayZapp)"
|
| 65 |
+
],
|
| 66 |
+
"services": {
|
| 67 |
+
"payment_gateway": "Seamless transaction processing for websites and apps.",
|
| 68 |
+
"payment_links": "Easy money collection via personalized payment links.",
|
| 69 |
+
"payment_pages": "Customizable payment experiences for businesses.",
|
| 70 |
+
"payment_buttons": "Quick payment button setup for websites.",
|
| 71 |
+
"QR_codes": "Generate business-specific QR codes for payments.",
|
| 72 |
+
"instant_settlement": "Faster customer payments with instant settlement.",
|
| 73 |
+
"invoicing_tools": "Share invoices directly with customers.",
|
| 74 |
+
"smart_collect": "Automated payments via NEFT, RTGS, and IMPS.",
|
| 75 |
+
"pos_system": "Offline payments with Razorpay's Point of Sale system."
|
| 76 |
+
}
|
| 77 |
+
},
|
| 78 |
+
"technology_and_innovation": {
|
| 79 |
+
"api_first_approach": (
|
| 80 |
+
"Razorpay leverages a robust API infrastructure, allowing for easy integration with various "
|
| 81 |
+
"business applications and platforms."
|
| 82 |
+
),
|
| 83 |
+
"focus_on_innovation": (
|
| 84 |
+
"The company continuously invests in research and development to introduce new features, "
|
| 85 |
+
"improve existing products, and enhance the overall customer experience."
|
| 86 |
+
)
|
| 87 |
+
},
|
| 88 |
+
"awards_and_recognition": (
|
| 89 |
+
"Razorpay has received numerous awards and accolades for its innovative products, rapid growth, "
|
| 90 |
+
"and contribution to the Indian fintech ecosystem."
|
| 91 |
+
),
|
| 92 |
+
"regulatory_compliance": (
|
| 93 |
+
"Razorpay operates in compliance with all relevant regulations and guidelines issued by the "
|
| 94 |
+
"Reserve Bank of India (RBI) and other regulatory bodies."
|
| 95 |
+
),
|
| 96 |
+
"founders": [
|
| 97 |
+
{
|
| 98 |
+
"name": "Harshil Mathur",
|
| 99 |
+
"education": "IIT Roorkee",
|
| 100 |
+
"role": "Co-Founder & CEO"
|
| 101 |
+
},
|
| 102 |
+
{
|
| 103 |
+
"name": "Shashank Kumar",
|
| 104 |
+
"education": "IIT Roorkee",
|
| 105 |
+
"role": "Co-Founder & CTO"
|
| 106 |
+
}
|
| 107 |
+
],
|
| 108 |
+
"products": [
|
| 109 |
+
"Payment Gateway",
|
| 110 |
+
"Payment Links",
|
| 111 |
+
"Payment Pages",
|
| 112 |
+
"Subscriptions",
|
| 113 |
+
"Smart Collect",
|
| 114 |
+
"Route",
|
| 115 |
+
"Razorpay Capital",
|
| 116 |
+
"RazorpayX",
|
| 117 |
+
"Payroll",
|
| 118 |
+
"Thirdwatch"
|
| 119 |
+
],
|
| 120 |
+
"specialties": [
|
| 121 |
+
"Financial products",
|
| 122 |
+
"Payment processing",
|
| 123 |
+
"Payout processing",
|
| 124 |
+
"Banking services",
|
| 125 |
+
"Neobanking",
|
| 126 |
+
"Working Capital Loans",
|
| 127 |
+
"E-commerce Fraud Detection",
|
| 128 |
+
"Payroll processing"
|
| 129 |
+
],
|
| 130 |
+
"services": {
|
| 131 |
+
"payment_methods": [
|
| 132 |
+
"Credit Card",
|
| 133 |
+
"Debit Card",
|
| 134 |
+
"Net Banking",
|
| 135 |
+
"UPI",
|
| 136 |
+
"E-wallets (JioMoney, Mobikwik, Airtel Money, FreeCharge, Ola Money, PayZapp)"
|
| 137 |
+
],
|
| 138 |
+
"current_accounts": (
|
| 139 |
+
"RazorpayX provides businesses with fully-functional current accounts to manage their finances."
|
| 140 |
+
),
|
| 141 |
+
"working_capital_loans": (
|
| 142 |
+
"Razorpay offers working capital loans to help businesses manage their cash flow and growth."
|
| 143 |
+
),
|
| 144 |
+
"recurring_payments": (
|
| 145 |
+
"The platform supports recurring payments for businesses to automate their billing processes."
|
| 146 |
+
),
|
| 147 |
+
"dashboard": (
|
| 148 |
+
"Razorpay's dashboard enables businesses to manage payments, refunds, transfers, subscriptions, "
|
| 149 |
+
"invoices, and more."
|
| 150 |
+
),
|
| 151 |
+
"upi_app": "Razorpay TPAP Pro allows businesses to build their own UPI app."
|
| 152 |
+
},
|
| 153 |
+
"culture": {
|
| 154 |
+
"description": (
|
| 155 |
+
"Razorpay is recognized for its high-trust, high-performance culture. The team comprises spirited, "
|
| 156 |
+
"ambitious, and fun individuals who go to great lengths to nurture a family of coders, designers, "
|
| 157 |
+
"marketers, analysts, writers, and dreamers."
|
| 158 |
+
),
|
| 159 |
+
"workforce": "3600+ employees",
|
| 160 |
+
"core_values": [
|
| 161 |
+
"Innovation",
|
| 162 |
+
"Customer-Centricity",
|
| 163 |
+
"Trust",
|
| 164 |
+
"Collaboration"
|
| 165 |
+
]
|
| 166 |
+
},
|
| 167 |
+
"contact_details": {
|
| 168 |
+
"registered_office": (
|
| 169 |
+
"Razorpay Software Private Limited, 1st Floor, SJR Cyber, "
|
| 170 |
+
"22 Laskar Hosur Road, Adugodi, Bengaluru, 560030, Karnataka, India"
|
| 171 |
+
),
|
| 172 |
+
"cin": "U72200KA2013PTC097389"
|
| 173 |
+
}
|
| 174 |
+
}
|
| 175 |
+
}
|