Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8870763
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T17:49:07+00:00 2026-06-14T17:49:07+00:00

BACKGROUND: I have a REST API implemented in Java using Jersey. My API uses

  • 0

BACKGROUND:

I have a REST API implemented in Java using Jersey. My API uses four verbs: GET, POST, PUT, DELETE.
I find developing REST APIs in java very easy and straight forward.

eg here is an elaborate hello webservice (I say elaborate because there are easier ways, but this is more representative):

import javax.ws.rs.*;

@Path("/myresource")
public class MyResource{

   @GET
   @Path("name/{name}")
   @Produces({MediaType.APPLICATION_JSON, MediaType.APPLICATION_XML})
   public Response sayHello(@PathParam("name") String name){
       return Response.ok("Hello "+name).build();
   }
}

PROBLEM:

I am learning python. I want to convert my Java Jersey REST API into python.

Basically Jersey is Java’s implementation of REST (aka JAX-RS: Java API for RESTful Web Services). Does python have a reference implementation of REST? If not, is there any implementation out there that comes close and would be easy to use for someone coming from Java-Jersey?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T17:49:08+00:00Added an answer on June 14, 2026 at 5:49 pm

    You may want to check the previous similar question: Recommendations of Python REST (web services) framework?

    Python does not have a built-in REST framework, but I personally have had good experiences with Flask and Bottle.

    It’s very similar in use to Jersey (Bottle example):

    @route('/')
    @route('/hello/<name>')
    def greet(name='Stranger'):
        return template('Hello {{name}}, how are you?', name=name)
    

    Handling HTTP verbs:

    @app.route('/login', methods=['GET', 'POST'])
    def login():
        if request.method == 'POST':
            do_the_login()
        else:
            show_the_login_form()
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The background I'm developing a REST API for a C#.NET web application using WCF.
Goal Java client for Yahoo's HotJobs Resumé Search REST API . Background I'm used
Background: I have a Visual Studio solution consisting of a website + REST web-service
I have a REST web service class which i call HttpRequest using curl.I wrote
First a little bit of background: I have a REST service in WCF 4
Background: I have a JSF 2.0 application using MyFaces. Using this application, the users
We have a Rest API that requires client certificate authentication. The API is used
I have an application that uses AsyncTasks to make REST calls to a server.
Basically I have a background image which is loaded while the rest of the
I have implemented a client for a paginated REST service where I populate the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.