2010 Shimadzu All Japan Indoor Tennis Championships

The 2010 Shimadzu All Japan Indoor Tennis Championships was a professional tennis tournament played on indoor carpet courts. It was part of the 2010 ATP Challenger Tour. It took place in Kyoto, Japan between 8 and 14 March 2010.

2010 Shimadzu All Japan Indoor Tennis Championships
DateMarch 8 March 14
Edition14th
LocationKyoto, Japan
Champions
Singles
Yuichi Sugita
Doubles
Martin Fischer / Philipp Oswald

ATP entrants

Seeds

Nationality Player Ranking* Seeding
 POL Michał Przysiężny 137 1
 AUT Martin Fischer 202 2
 JPN Tatsuma Ito 203 3
 UKR Sergei Bubka 209 4
 AUS Greg Jones 215 5
 GER Simon Stadler 217 6
 NZL Daniel King-Turner 227 7
 GER Andre Begemann 229 8
  • Rankings are as of March 1, 2010.

Other entrants

The following players received wildcards into the singles main draw:

The following players received entry from the qualifying draw:

Champions

Singles

Yuichi Sugita def. Matthew Ebden, 4–6, 6–4, 6–1

Doubles

Martin Fischer / Philipp Oswald def. Divij Sharan / Vishnu Vardhan, 6–1, 6–2

gollark: ```python#!/usr/bin/env python3from flask import Flask, jsonifyfrom wsgiref.simple_server import make_serverimport subprocessimport randomfrom mpd import MPDClientimport threadingimport timempd_client = MPDClient()mpd_client.connect("localhost", 6600)print("connected, mpd is", mpd_client.mpd_version)app = Flask(__name__)@app.route("/")def index(): return "Hello, World!"@app.route("/fortune/")def fortune(): return subprocess.run(["fortune"], stdout=subprocess.PIPE).stdoutcurrent_song = Nonedef mpd_loop(): print("mpd query loop started") while True: global current_song current_song = mpd_client.currentsong() current_song["status"] = mpd_client.status() time.sleep(0.2)threading.Thread(target=mpd_loop).start()@app.route("/current-song")def get_current_song(): return jsonify(current_song)with make_server('', 1337, app) as httpd: print("Serving HTTP...") httpd.serve_forever()```
gollark: It doesn't require classes. Hold on.
gollark: I saw `getunicode`, which seems python2-ish since python3 has better unicode handling.
gollark: Also, please use Flask and Python3.
gollark: Any good static-file server will ALREADY probably support the `Range` header.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.