Download apidoc Free Java Code

Description

RESTful web API Documentation Generator.

Source Files

The download file apidoc-master.zip has the following entries.


.coveragerc//from   w  ww.  j a v a  2 s  .co  m
.gitignore
.travis.yml
AUTHORS.rst
CHANGES.rst
CONTRIBUTING.rst
LICENSE
MANIFEST.in
README.rst
apidoc/__init__.py
apidoc/command/__init__.py
apidoc/command/analyse.py
apidoc/command/base.py
apidoc/command/logging.yml
apidoc/command/render.py
apidoc/command/watch.py
apidoc/datas/schemas/config.yml
apidoc/datas/schemas/source.yml
apidoc/factory/__init__.py
apidoc/factory/config.py
apidoc/factory/source/__init__.py
apidoc/factory/source/category.py
apidoc/factory/source/configuration.py
apidoc/factory/source/element.py
apidoc/factory/source/method.py
apidoc/factory/source/object.py
apidoc/factory/source/parameter.py
apidoc/factory/source/responseCode.py
apidoc/factory/source/root.py
apidoc/factory/source/rootDto.py
apidoc/factory/source/type.py
apidoc/factory/source/version.py
apidoc/factory/template.py
apidoc/lib/__init__.py
apidoc/lib/fswatcher/__init__.py
apidoc/lib/fswatcher/callbackHandler.py
apidoc/lib/fswatcher/event.py
apidoc/lib/fswatcher/observer.py
apidoc/lib/util/__init__.py
apidoc/lib/util/cast.py
apidoc/lib/util/decorator.py
apidoc/lib/util/enum.py
apidoc/lib/util/serialize.py
apidoc/object/__init__.py
apidoc/object/config.py
apidoc/object/source_dto.py
apidoc/object/source_raw.py
apidoc/object/source_sample.py
apidoc/service/__init__.py
apidoc/service/config.py
apidoc/service/extender.py
apidoc/service/merger.py
apidoc/service/parser.py
apidoc/service/source.py
apidoc/service/template.py
apidoc/service/validator.py
apidoc/template/default.html
apidoc/template/helper/code.html
apidoc/template/helper/diff.html
apidoc/template/helper/util.html
apidoc/template/layout/content-only.html
apidoc/template/layout/default.html
apidoc/template/partial/help.html
apidoc/template/partial/method_category.html
apidoc/template/partial/method_diff.html
apidoc/template/partial/method_sample.html
apidoc/template/partial/navigation.html
apidoc/template/partial/type_category.html
apidoc/template/partial/type_diff.html
apidoc/template/partial/type_sample.html
apidoc/template/resource/css/font-embedded.css
apidoc/template/resource/css/font.css
apidoc/template/resource/font/apidoc.eot
apidoc/template/resource/font/apidoc.ttf
apidoc/template/resource/font/apidoc.woff
apidoc/template/resource/font/source-code-pro.eot
apidoc/template/resource/font/source-code-pro.ttf
apidoc/template/resource/font/source-code-pro.woff
apidoc/template/resource/src/js/apidoc.js
apidoc/template/resource/src/less/apidoc.less
apidoc/template/resource/src/less/code-color.less
apidoc/template/resource/src/less/code.less
apidoc/template/resource/src/less/footer.less
apidoc/template/resource/src/less/help.less
apidoc/template/resource/src/less/icon.less
apidoc/template/resource/src/less/item-header.less
apidoc/template/resource/src/less/item-wrapper.less
apidoc/template/resource/src/less/item.less
apidoc/template/resource/src/less/nav.less
apidoc/template/resource/src/less/scrollbar.less
apidoc/template/resource/src/less/variables.less
docs/Makefile
docs/source/_static/screenshot_sample.png
docs/source/conf.py
docs/source/config.rst
docs/source/contributing.rst
docs/source/index.rst
docs/source/quickstart.rst
docs/source/source.rst
docs/source/usage.rst
example/config/config.yml
example/config/sources/simple.yml
example/config/template/my.html
example/demo/source.yml
example/extends/extends.yml
example/extends/extends2.yml
example/paypal/config.yml
example/paypal/sources/v1.0/authentication.yml
example/paypal/sources/v1.0/common.yml
example/paypal/sources/v1.0/identity.yml
example/paypal/sources/v1.0/payment.yml
example/paypal/sources/v1.0/refund.yml
example/paypal/sources/v1.0/sale.yml
example/paypal/sources/v1.0/vault.yml
example/source_full/full.yml
example/source_multiple/one.yml
example/source_multiple/two.yml
example/source_simple/simple.yml
setup.py
setup_cmd/__init__.py
tests/__init__.py
tests/features/environment.py
tests/features/parse_config.feature
tests/features/parse_source.feature
tests/features/source_body.feature
tests/features/source_extends.feature
tests/features/source_request_headers.feature
tests/features/source_request_parameters.feature
tests/features/source_response_codes.feature
tests/features/source_type.feature
tests/features/source_uri.feature
tests/features/steps/config.py
tests/features/steps/source.py
tests/unit/__init__.py
tests/unit/factory/__init__.py
tests/unit/factory/source/__init__.py
tests/unit/factory/source/test_category.py
tests/unit/factory/source/test_configuration.py
tests/unit/factory/source/test_element.py
tests/unit/factory/source/test_method.py
tests/unit/factory/source/test_object.py
tests/unit/factory/source/test_parameter.py
tests/unit/factory/source/test_responseCode.py
tests/unit/factory/source/test_root.py
tests/unit/factory/source/test_rootDto.py
tests/unit/factory/source/test_source.py
tests/unit/factory/source/test_type.py
tests/unit/factory/source/test_version.py
tests/unit/factory/test_config.py
tests/unit/factory/test_template.py
tests/unit/lib/__init__.py
tests/unit/lib/test_enum.py
tests/unit/lib/test_fswatcher.py
tests/unit/lib/test_serialize.py
tests/unit/object/__init__.py
tests/unit/object/test_source.py
tests/unit/object/test_source_dto.py
tests/unit/object/test_source_raw.py
tests/unit/object/test_source_sample.py
tests/unit/service/__init__.py
tests/unit/service/test_config.py
tests/unit/service/test_extender.py
tests/unit/service/test_merger.py
tests/unit/service/test_parser.py
tests/unit/service/test_source.py
tests/unit/service/test_template.py
tests/unit/service/test_validator.py

Download

Click the following link to download apidoc-master.zip.

apidoc-master.zip




















Home »
  Javascript Free Code Download »
    Network »




AJAX
Client
Network
RESTful
Server
URL
URL Shortener
WebSocket