File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Filetracker server API
2
2
3
- Filetracker server (starting from version 2.0 ) provides a simple HTTP API for
3
+ Filetracker server (starting from version 2.1 ) provides a simple HTTP API for
4
4
clients. Filetracker client is the primary consumer of this API, but its simplicity
5
5
allows to interact with the server using plain ` curl ` or Python ` requests ` .
6
6
7
- ## API reference
7
+ ## API reference (version 2)
8
+
9
+ ### ` GET /version `
10
+
11
+ Responds with the following JSON:
12
+
13
+ ``` json
14
+ {
15
+ "protocol_versions" : [2 ]
16
+ }
17
+ ```
8
18
9
19
### ` GET /files/{path} `
10
20
Original file line number Diff line number Diff line change 1
1
from setuptools import setup , find_packages
2
2
setup (
3
3
name = 'filetracker' ,
4
- version = '2.0 ' ,
4
+ version = '2.1rc1 ' ,
5
5
author = 'SIO2 Project Team' ,
6
6
author_email = '[email protected] ' ,
7
7
description = 'Filetracker caching file storage' ,
13
13
install_requires = [
14
14
'bsddb3' ,
15
15
'flup6' ,
16
- 'gunicorn[gevent]' ,
16
+ 'gunicorn' ,
17
+ 'gevent' ,
17
18
'progressbar2' ,
18
19
'requests' ,
19
20
'six' ,
You can’t perform that action at this time.
0 commit comments