Skip to content

(Not issue) Fix "audiomass-server.py" for Python 3 #79

@DeadLyBro

Description

@DeadLyBro

You can fix with this code:

import http.server
import socketserver
PORT = 5055
Handler = http.server.SimpleHTTPRequestHandler
httpd = socketserver.TCPServer(("", PORT), Handler)
print("serving at port", PORT)
httpd.serve_forever()

If not work you can use this:

py -3 -m http.server 5055

(Note: Make sure you are in the src folder.)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions