Fastapi example. Navigation Menu Toggle navigation.

Fastapi example. Install FastAPI¶ The first step is to install FastAPI.
Fastapi example Get started using FastAPI today with this detailed tutorial. Usage: uvicorn main:app--reload Basic non-relational example Using Flet with FastAPI: thoughts and example Recently I've checked out the new feature on how to to run serve Flet Apps using FastAPI and i must say it's really nice and it can be a game In conclusion, this example demonstrates how to use the sqlalchemy-filterset library with FastAPI and SQLAlchemy. Stars. Sign in Now try to Execute the API, you will get the success status with 200 code . Don't worry if you're new to API programming – we'll start at the Tutorial - User Guide First Steps Path Parameters Path Parameters Table of contents Path parameters with types Data conversion The value of the path parameter item_id will be passed I was so excited when implemented Flet into FastAPI that immediately started thinking about making a "dashboard" example for showing some stats from an API. Insecure passwords may give attackers full Check the docs Now, if you check the docs, they will show all the additional metadata: Order of tags The order of each tag metadata dictionary also defines the order shown in the docs UI. If you declare the type of your path operation function Ready-to-use and customizable users management for FastAPI Warning Notice that SECRET should be changed to a strong passphrase. Code Issues Pull requests The API Application Development using Python FastAPI, including interactive API For example, using the asynchronous framework FastAPI, with its asynchronous capabilities, the concurrent processing ability of I/O-intensive tasks can be greatly enhanced. You can use this repository as an example of how to structure a Standalone API service implemented with Basic FastAPI building blocks # Let’s explore some of the building blocks of FastAPI, including path parameters, query parameters, and request bodies. . This is much simpler (less smart) than response_model_exclude_unset and response_model_exclude_defaults. The source code is available on the Github. FastAPI runs sync routes in the threadpool and blocking I/O operations won't stop the event loop from executing the tasks. 7+ based on standard Python type hints. Learn how to use FastAPI, a modern, high-performance web framework for building APIs with Python based on standard type hints. Fastapi Framework Overview Explore Fastapi, a The FastAPI "Hello World" sample application that you have been building up can interact with any of the "Hello World" API server samples from the Auth0 Developer Center. Use ORJSONResponse¶. Generate a base project with Poetry. Report Example: Basic Data Validation. ⏮️ ⏬ 🎻 🔗 🔬 🏑 examples, ️ 🗄 3️⃣. I’m not going for any fancy machine learning model FastAPI framework, high performance, easy to learn, fast to code, ready for production. Build Replay Functions. You signed out in Coming back to the previous code example, FastAPI will: Validate that there is an item_id in the path for GET and PUT requests. Video en español. run (app, host = "0. ormar - Ormar is an async ORM that uses Pydantic validation and can be used directly in FastAPI requests and responses so you Explore a practical Fastapi example using htmx for dynamic web applications. And then another background task generated at the path operation function will write a message using the email path parameter. With its intuitive and developer-friendly For example, to add a new entry to the database, we would send a POST request to the creation endpoint with the relevant details in the request body. To follow and try this example, you will need: Python 3. And your users would be able to FastAPI Example App This repository contains code for asynchronous example api using the Fast Api framework,Uvicorn server and Postgres Database to perform crud operations on notes. Let’s start with a simple FastAPI example: # src/main. Do you Example app to be deployed to AWS as an API Gateway / Lambda Stack - iwpnd/fastapi-aws-lambda-example The configuration you'll need is mostly information from Auth0, you'll need both the tentant domain and the API information. We use the @app. ASGI Servers for FastAPI (Uvicorn, Hypercorn, Gunicorn) Process Management I was so excited when implemented Flet into FastAPI that immediately started thinking about making a "dashboard" example for showing some stats from an API. Start by creating a new Fast-Api project and run the project locally. Skip to content Follow @fastapi on Twitter to stay updated For example, to declare a query This is a sample implementation for OpenID Connect with Python, FastAPI and Authlib. Do you FastAPI Examples This is an example of the Tortoise-ORM FastAPI integration Usage: uvicorn main:app--reload Basic non-relational example models. Create a templates object that you can reuse later. It helps developers build applications quickly and efficiently. The source FastAPI example Prerequisites. But we also need Learn the key features and benefits of FastAPI, a modern, fast, web framework for building APIs with Python 3. It is decorated with FastAPI Learn Tutorial - User Guide Dependencies Dependencies¶ FastAPI has a very powerful but intuitive Dependency Injection system. Async/await support: FastAPI supports asynchronous programming, allowing FastAPI and Pydantic - Intro Simple Hero API with FastAPI¶ Let's start by building a simple hero web API with FastAPI. Reload to refresh your session. With FastAPI and Pydantic, you can easily validate Notice that with webhooks you are actually not declaring a path (like /items/), the text you pass there is just an identifier of the webhook (the name of the event), for example in Contribute to hyperdxio/fastapi-opentelemetry-example development by creating an account on GitHub. The CLI automatically detects your FastAPI instance, Usage with FastAPI¶ Example¶. env file by The FastAPI app target should be listed with a "UP" state. FastAPI Limiter: Adds rate limiting to FastAPI routes. Example Restful API using FastAPI connected to a MSSQL Database using pyodbc - esundberg/FastAPI-pyodbc-mssql-example Contribute to aekespong/Basic-SQLModel-and-FastAPI-example development by creating an account on GitHub. Install FastAPI, SQLAlchemy and other We instantiate a FastAPI app object, which is a Python class that provides all the functionality for your API. Your Email (I will never This repository is a template to bootstrap a FastAPI service using PostgreSQL. Skip to content Declare Request Example Data Extra Data Types Cookie Parameters Header $ mkdir fastapi_sample_project $ cd fastapi_sample_project Next, create a virtual environment to isolate your project dependencies: $ python -m venv venv $ source To create a FastAPI example project, start by setting up your environment and installing FastAPI. txt file after the response is sent. txt main. py from tortoise import fields, models OpenTelemetry FastAPI Instrumentation This library provides automatic and manual instrumentation of FastAPI web frameworks, instrumenting http requests served by A popular example would be likening API to a waiter, whereby you tell the waiter your order from a menu of choices, and the waiter will communicate that to the kitchen (a “system”) that prepares your order and the waiter will return FastAPI framework, high performance, easy to learn, fast to code, ready for production To learn the basics of HTTPS, from a consumer perspective, check https://howhttps. 0. Readme Activity. com/gothinkster/realworld with awesome FastAPI - nsidnev/fastapi-realworld-example-app Contribute to astral-sh/uv-fastapi-example development by creating an account on GitHub. save() for FastAPI CORS: Handles Cross-Origin Resource Sharing (CORS) for FastAPI applications. To access the functions simply <table_name>. Add a description, image, and links to the example-fastapi topic page so that developers can more easily learn about it. . Application factory Application factory creates container, wires it with the endpoints module, This book will show you how FastAPI, a high-performance web framework for building RESTful APIs in Python, allows you to build robust web APIs that are simple and In this example: We define a FastAPI instance. You Build dynamic, secure APIs with FastAPI: Features DB integration, real-time WebSocket, streaming, and efficient request handling with middleware, powered by Starlette and Pydantic. Declare a Request parameter in the path operation that will return a template. Validate that the item_id is of type int for GET Neo4j and FastAPI Tutorial FastAPI is a fantastic library for building APIs with Python. 0") Example of FastAPI bigger application Topics python docker-compose rest-api postgresql fastapi Resources Readme Activity Stars 87 stars Watchers 1 watching Forks 15 forks Report FastAPI Learn Tutorial - User Guide Extra Data Types Up to now, you have been using common data types, like: int float str bool But you can also use more complex data types. Let's say you want to validate user input for a blog post. Read: It involves In this FastAPI example project from Github, you will build a simple CRUD API using FastAPI. It is designed to be very simple to use, and to make scionoftech / FastAPI-Full-Stack-Samples. Or gradually migrate a Django application using the same database. So that even though the function returns more data, the response will only include the fields declared in the response FastAPI example¶ This example shows how to use Dependency Injector with FastAPI. This tutorial is not in the order of official tutorials, but in the Using Jinja2Templates Import Jinja2Templates. Declare Request Example Data Extra Data Types Cookie Parameters Header Parameters Cookie Parameter Models Header parameters, attributes, and all the FastAPI parts you can use in your applications. This is an example of a Python FastAPI Web Service that interacts with Oracle Database. You switched accounts on another tab When you create a FastAPI application, there is a webhooks attribute that you can use to define webhooks, the same way you would define path operations, for example with File Description data/coltrane. Each case in this tutorial can run independently, provided that the dependency package is installed. If you don't, use any other method to create a virtual environment and install Python 3. To run your FastAPI application, you can utilize the FastAPI CLI, which simplifies the process of serving your application. It was designed to be fast, easy to use, and FastAPI framework, high performance, easy to learn, fast to code, ready for production. py import uvicorn from fastapi import FastAPI app = FastAPI if __name__ == "__main__": uvicorn. If there was a query in the request, it will be written to the log in a background task. 0️⃣. But if you FastAPI Learn Tutorial - User Guide Security Simple OAuth2 with Password and Bearer Now let's build from the previous chapter and add the missing parts to have a complete security flow. Watchers. - StackPuz/Example-File-Upload-FastAPI Skip to content Navigation Menu Toggle navigation Sign in Product GitHub Simple example of an endpoint using Python, Fastapi, and sqlite Resources Readme Activity Stars 1 star Watchers 1 watching Forks 1 fork Report repository Releases No You signed in with another tab or window. By adding the @api_router. Explore a practical Fastapi example app on GitHub, showcasing key features and implementation details for developers. 0") Under the hood, FastAPI can effectively handle both async and sync I/O operations. We will create a simple REST API that returns a list of items from a In this example we're using a Fake DB! from typing import Dict, Union from aioredis import Redis from fastapi import FastAPI, Depends, HTTPException from fastapi_framework import FastAPI framework, high performance, easy to learn, fast to code, ready for production Automatic conversion Header has a little extra functionality on top of what Path, Query and Cookie FastAPI framework, high performance, easy to learn, fast to code, ready for production The following arguments are supported: allowed_hosts - A list of domain names that should be Example app to be deployed to AWS as an API Gateway / Lambda Stack - iwpnd/fastapi-aws-lambda-example Skip to content Navigation Menu Toggle navigation Sign An example FastAPI server that streams messages from Autogen using OpenAI API format Resources Readme License MIT license Activity Custom properties Stars 6 stars Watchers 3 watching Forks 3 forks Releases 0 Python In this example, the messages will be written to the log. py. This can serve as a good starting point for small to medium projects. Coming back to the previous code example, FastAPI will: Validate that FastAPI Example; ORM - An async ORM. A request body is data sent Explore the FastAPI framework and discover how you can use it to create APIs in Python. In this FastAPI showcase project with SQLAlchemy, Alembic, Pydantic, Docker, Email verifications - filiurskyi/fastapi-example The example shows how to Building a React CRUD App with a FastAPI and using MySQL as a database. FastAPI is one of . From the documentation: FastAPI is a modern, fast (high-performance), web framework for building FastAPI + Django experiment. It shows the structure of an application that uses this library, including the creation of a FastAPI application, models, A Production-Ready FastAPI Configuration Example; 3. In FastAPI, endpoints are FastAPI is a modern, fast (high-performance), web framework for building APIs with Python, while React is a popular JavaScript library for building user interfaces. It shows the structure of an application that uses this library, including the I have a fastapi endpoint for which I am trying to set the example value: The fastapi doc seems to indicate that you can add examples to request parameters but I cannot FastAPI Examples¶ This is an example of the Tortoise-ORM FastAPI integration. Historically, async work in Python has been nontrivial FastAPI framework, high performance, easy to learn, fast to code, ready for production The Hero class is very similar to a Pydantic model (in fact, underneath, it actually is a Pydantic model). Skip to Declare Request Example Data Extra Data Types Cookie Parameters Header Parameters FastApi Example # beginners. Navigation Menu Toggle navigation. So, you would be able to, for example, share the same data from a Django application in a database with a FastAPI application. - StackPuz/Example-CRUD-React-18-FastAPI When building an API, validating user input is critical for maintaining data integrity and providing a great user experience. Creating a very basic UI using Streamlit. In this example, we create a minimalist REST API describing trees by their name, average size and discovery year. It is a modern alternative to Flask and a more lightweight option than Django. For example, if you are squeezing performance, you can install and use orjson and set the response to be ORJSONResponse. Это простой в понимании, легковесный веб-фреймворк изначально созданный для создания API. For example, even though users would go after items in alphabetical order, it is shown before them, because we added their FastAPI Learning Example 1. Learn how to enhance your Fastapi projects effectively. If that is not the Security Security - First Steps Get Current User Simple OAuth2 with Password and Bearer OAuth2 with Password (and hashing), Bearer with JWT tokens Middleware CORS (Cross Backend logic implementation for https://github. When you need to send data from a client (let's say, a browser) to your API, you send it as a request body. Restack AI SDK. 4. In the example FastAPI App with Tags In many cases your FastAPI app will be bigger, and you will probably use tags to separate different groups of path operations. If you want to learn We want FastAPI to keep filtering the data using the response model. Thank you for following along this tutorial! We hope you learned something new about FastAPI and how to use it with VS Code. 6+ based on standard Python type hints. This Let's say you want to POST JSON to one of your FastAPI endpoints and return some response. The parameter that defines this is default_response_class. These "type hints" or annotations are a special syntax that allow declaring the This project is an example of how SvelteKit, FastAPI, and MongoDB can be dockerized and ran via docker compose. Example Example from fastapi import APIRouter, FastAPI, WebSocket app = FastAPI router = APIRouter @router. Then, you The instructions below assume you have pyenv installed. The example will use FastAPI framework, high performance, easy to learn, fast to code, ready for production. Forks. python docker-compose rest-api postgresql fastapi Resources. Skip to content. 1 watching. Insecure passwords may give attackers full In this tutorial, we will explore how to implement pagination in FastAPI using a MongoDB database. A sample project showing how to build a scalable, maintainable, modular FastAPI with a heavy emphasis on testing. Note that, as of right now, this is not perfect. Skip to content ormar Quick Start This example assumes that you already have a database created. py FastAPI app models. FastAPI + SQLAlchemy example¶ This example shows how to use Dependency Injector with FastAPI and SQLAlchemy. works/. Line 1: We import FastAPI, which is a Python class that provides all the functionality for the API. In this example, curl is used to post JSON to the FastAPI endpoint. The function above is a more complex example of controllers in a FastAPI Backend Application. ; If the route is Configuration passed to Pydantic to define if the response data should exclude fields set to None. get("/", status_code=200) decorator to the root function, we define a basic GET FastAPI is a high-performing web framework for building APIs with Python 3. This allows you to modify and adapt them to your project's requirements A small example with vue-admin-template & FastAPI - fanqie03/vue-admin-fastapi-example vue-admin-template和FastAPI前后端分离的小例子。 Skip to content FastAPI Example Project Intro Intro Table of contents Introduction Features Database Database Database - Intro Migrations Connections and AsyncIO DML Auth Auth Intro Introduction This Example: Building an end-to-end machine learning Pipeline with PyCaret and deploying with FastAPI In this section, we will quickly build a machine learning pipeline and Welcome to the world of FastAPI, a sleek and high-performance web framework for constructing Python APIs. & 👈 🎻 🔗 Pydantic 🏷 🔌 🗄 👆 🛠️, & ⤴️ ⚫️ ⚙️ 🩺 🎚. Path parameters # Path A simple async ORM with fastapi in mind and pydantic validation. 87 stars. Install Python 3. Skip to content Follow Testing: extended example Extended FastAPI app file Extended testing file FastAPI Learn Tutorial - User Guide Request Body¶. Если вы здесь, то вероятно уже знаете, что такое FastAPI. FastAPI framework, high performance, easy to learn, fast to code, ready for production. Python + FastAPI example app with NVIDIA Nemotron LLM model. Line 3: We create an instance of FastAPI Example Project Intro Intro Table of contents Introduction Features Database Database Database - Intro Migrations Connections and AsyncIO DML Auth Auth Auth - Intro Table of FastAPI framework, high performance, easy to learn, fast to code, ready for production The files will be uploaded as "form data". txt text from the John Coltrane Wikipedia page data/index. And you will FastAPI Example Project. You signed in with another tab or window. json sentence embeddings of text from coltrane. 11. Curate this topic Add this topic to your repo To FastAPI FastAPI is an open-source Python web framework to create APIs. Well, to use FastApi, we need to install some To run your FastAPI application, you can utilize the FastAPI CLI, which simplifies the process of serving your application. Example screenshot: Grafana Dashboard For this example we will select the "Time Series" visualization. FastAPI is the framework to create the web API. Topics python nvidia fastapi nemotron Resources Readme Activity Custom properties Stars 1 star Watchers In conclusion, this example demonstrates how to use the sqlalchemy-filterset library with FastAPI and SQLAlchemy. Let's take this application Example of eventsourcing with FastAPI. Series Content 📖 After running the Read more about it in the FastAPI docs for WebSockets. Install FastAPI¶ The first step is to install FastAPI. Skip to content Follow For example, even though users would go after items in alphabetical order, it FastAPI Learning Example 1. For example, you could have a section for FastAPI Learn Tutorial - User Guide Query Parameters and String Validations FastAPI allows you to declare additional information and validation for your parameters. post decorator to Some course providers sponsor FastAPI , this ensures the continued and healthy development of FastAPI and its ecosystem. Skip to main content. 🎻 🔗 🚫 🤙 ️ 🏑 example 🐩. 10+; fastapi and uvicorn (pip install fastapi uvicorn);; and of course this library. This example demonstrates a usage of the FastAPI, SQLAlchemy, and Dependency Injector. Follow the steps to create a minimal API, receive JSON data, use pydantic, and more. Integrating Streamlit & FastAPI. Contribute to thestorefront/fastapi_example development by creating an account on GitHub. We create a Pydantic model Item that describes the data structure of the request body. This tutorial is not in the order of official tutorials, but in the Let’s break down our Hello World! code:. This process is straightforward and can be accomplished with a few simple FastAPI framework, high performance, easy to learn, fast to code, ready for production - fastapi/fastapi. So, in a URL like: the path would be: While building an API, the "path" is the main way to separate "concerns" and "resources". You FastAPI framework, high performance, easy to learn, fast to code, ready for production. The example application is a REST API that searches for funny GIFs on the Giphy. Integrating FastAPI with 🕐 👆 🚮 🖼 🔘 Pydantic 🏷, ⚙️ schema_extra ⚖️ Field(example="something") 👈 🖼 🚮 🎻 🔗 👈 Pydantic 🏷. The command line program fastapi is known as FastAPI and SQLAlchemy DDD (Domain Driven Development) Example - NEONKID/fastapi-ddd-example. Contribute to jordaneremieff/django-fastapi-example development by creating an account on GitHub. To use the FastAPI app, you can use the 'Try it out' buttons on http Strawberry GraphQL is a powerful and modern GraphQL framework for Python that allows developers to easily create robust and scalable APIs. And it shows their true commitment to FastAPI and its community Ready-to-use and customizable users management for FastAPI Warning Notice that SECRET should be changed to a strong passphrase. You can define a Pydantic model to ensure the data is in the expected format. , but with FastApi instead of Flask. You signed out in another tab or window. 7+. 15 forks. Thanks to Example of FastAPI bigger application Topics. Use the Example project created by fastapi-mvc from fastapi-mvc/copier-project template - fastapi-mvc/example FastAPI is a modern, fast (high-performance), web framework for building APIs with Python 3. When creating a FastAPI class instance or an APIRouter you can specify which response class to use by default. Star 214. websocket The example demonstrates how to implement file uploads in FastAPI. FastAPI Learn Python Types Intro Python has support for optional "type hints" (also called "type annotations"). Now, from a developer's perspective, here are several things to keep in mind while thinking about HTTPS: In this blog post, we will set up a simple FastAPI application from scratch. "Path" here refers to the last part of the URL starting from the first /. This app reads its configuration information from a . 2. It uses Authorization Code Flow; Cookie to store ID token Let’s start with a simple FastAPI example: # src/main. 4 There is a Makefile Serve the function from the module using FastAPI. This is an example project using the structure proposed in this blog post. 3️⃣ ⚓️ 🔛 🗝 ⏬ 🎻 🔗 👈 🚫 ️ examples. Type safety: FastAPI enforces type safety using Python type hints, which helps catch bugs and errors at development time rather than runtime. py For example, using the asynchronous framework FastAPI, with its asynchronous capabilities, the concurrent processing ability of I/O-intensive tasks can be greatly enhanced. Skip to content Follow @fastapi on Twitter to stay updated Subscribe to the For example, you could Holds the db table as a . Contribute to pyeventsourcing/example-fastapi development by creating an account on GitHub. Follow the steps to create a simple API with routes, parameters, models, dependency injection, In this blog post, we will set up a simple FastAPI application from scratch. Hello everyone, in this post I'm going to show you a small example with FastApi. The Response will be {“GFG Example”: “FastAPI”} as shown below : and like this if you want to FastAPI framework, high performance, easy to learn, fast to code, ready for production. The completed code project from this tutorial can be found on FastAPI is a modern, high-performance web framework for building APIs with Python, based on standard Python type hints. Running FastAPI in Production. We will leverage the power of FastAPI framework, high performance, easy to learn, fast to code, ready for production Skip to content Follow @fastapi on Twitter to stay updated Subscribe to the FastAPI and friends newsletter 🎉 You can nowFastAPI 🍰 sponsor FastAPI Resources Full Stack FastAPI Template Templates, while typically come with a specific setup, are designed to be flexible and customizable. Accompanying Article Read the fullhere If you are working with FastAPI you don't have to worry about that, because that "first" function will be your path operation function, and FastAPI will know how to do the right thing. Import the Response class (sub 📘 This FastAPI-based project and its documentation represent my interpretation of Clean Architecture and Command Query Responsibility Segregation (CQRS) principles with subtle We’ll use SQLAlchemy as the ORM for this example. py file, and each file let you interact with db without SQL instead of functions just like ORM did. hxmmmec xehej cbggz zkhy aagb nemofi kgfnh uhjju wvq uch
{"Title":"What is the best girl name?","Description":"Wheel of girl names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}