├── .gitignore ├── LICENSE ├── README.md ├── bin └── syncany ├── docs ├── README.md ├── calculate-directive.md ├── configuration-json.md ├── database-driver.md ├── directive.md ├── filter-directive.md ├── get-started.md └── grammar-structure.md ├── examples ├── demo │ ├── data │ │ ├── demo.json │ │ ├── orders.json │ │ └── sites.json │ ├── demo.json │ ├── demo.yaml │ └── json │ │ ├── database.json │ │ └── log.json ├── shopping │ ├── base │ │ ├── database.json │ │ └── log.json │ ├── coopartor_shop_daily.json │ ├── coopartor_terminal_daily.json │ ├── coupon_channel_users.json │ ├── delivery_order.json │ ├── delivery_order_goods.json │ ├── ebox_charge_daily.json │ ├── ebox_order_daily.json │ ├── execls │ │ └── delivery_order.json │ ├── operator_daily.json │ ├── operator_recharge_order.json │ ├── operator_terminal_daily.json │ ├── order_coupons.json │ ├── shop_daily.json │ ├── sql │ │ └── ebox_charge_daily.sql │ ├── terminal_daily.json │ ├── timeout_user_pay_daily.json │ └── user_coupons.json └── warehouse │ ├── base │ ├── database.json │ └── log.json │ ├── delivery_acceptance_rate.json │ ├── delivery_daily.json │ ├── driver_daily.json │ ├── execls │ └── delivery_acceptance_rate.json │ ├── site_delivery_timeout.json │ └── sql │ ├── delivery_acceptance_rate.sql │ ├── delivery_daily.sql │ └── driver_daily.sql ├── mkdocs.yml ├── setup.cfg ├── setup.py └── syncany ├── __init__.py ├── calculaters ├── __init__.py ├── builtin.py ├── calculater.py ├── convert_calculater.py ├── datetime_calculater.py ├── import_calculater.py ├── textline_calculater.py └── transform_calculater.py ├── database ├── __init__.py ├── beanstalk.py ├── clickhouse.py ├── csv.py ├── database.py ├── elasticsearch.py ├── excel.py ├── http.py ├── influxdb.py ├── json.py ├── memory.py ├── mongodb.py ├── mysql.py ├── oracle.py ├── postgresql.py ├── redis.py ├── sqlite.py ├── sqlserver.py └── textline.py ├── errors.py ├── filters ├── __init__.py ├── builtin.py └── filter.py ├── hook.py ├── loaders ├── __init__.py ├── cache.py ├── calculate_db.py ├── calculate_db_join.py ├── const.py ├── db.py ├── db_join.py ├── db_pull.py └── loader.py ├── logger.py ├── main.py ├── outputers ├── __init__.py ├── db.py ├── db_delete_insert.py ├── db_insert.py ├── db_update.py ├── db_update_delete_insert.py ├── db_update_insert.py └── outputer.py ├── taskers ├── __init__.py ├── config │ ├── __init__.py │ ├── file_reader.py │ ├── http_reader.py │ ├── json_parser.py │ ├── parser.py │ ├── reader.py │ └── yaml_parser.py ├── context.py ├── core │ ├── __init__.py │ ├── loader_creater.py │ ├── option.py │ ├── outputer_creater.py │ ├── states.py │ ├── valuer_compiler.py │ └── valuer_creater.py ├── iterator.py ├── manager.py └── tasker.py ├── utils.py └── valuers ├── __init__.py ├── aggregate.py ├── assign.py ├── cache.py ├── calculate.py ├── call.py ├── case.py ├── condition.py ├── const.py ├── data.py ├── db_join.py ├── db_load.py ├── function.py ├── generator.py ├── inherit.py ├── let.py ├── loop.py ├── make.py ├── match.py ├── partition.py ├── schema.py ├── state.py └── valuer.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/README.md -------------------------------------------------------------------------------- /bin/syncany: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/bin/syncany -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/calculate-directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/calculate-directive.md -------------------------------------------------------------------------------- /docs/configuration-json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/configuration-json.md -------------------------------------------------------------------------------- /docs/database-driver.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/database-driver.md -------------------------------------------------------------------------------- /docs/directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/directive.md -------------------------------------------------------------------------------- /docs/filter-directive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/filter-directive.md -------------------------------------------------------------------------------- /docs/get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/get-started.md -------------------------------------------------------------------------------- /docs/grammar-structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/docs/grammar-structure.md -------------------------------------------------------------------------------- /examples/demo/data/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/data/demo.json -------------------------------------------------------------------------------- /examples/demo/data/orders.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/data/orders.json -------------------------------------------------------------------------------- /examples/demo/data/sites.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/data/sites.json -------------------------------------------------------------------------------- /examples/demo/demo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/demo.json -------------------------------------------------------------------------------- /examples/demo/demo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/demo.yaml -------------------------------------------------------------------------------- /examples/demo/json/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/json/database.json -------------------------------------------------------------------------------- /examples/demo/json/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/demo/json/log.json -------------------------------------------------------------------------------- /examples/shopping/base/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/base/database.json -------------------------------------------------------------------------------- /examples/shopping/base/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/base/log.json -------------------------------------------------------------------------------- /examples/shopping/coopartor_shop_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/coopartor_shop_daily.json -------------------------------------------------------------------------------- /examples/shopping/coopartor_terminal_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/coopartor_terminal_daily.json -------------------------------------------------------------------------------- /examples/shopping/coupon_channel_users.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/coupon_channel_users.json -------------------------------------------------------------------------------- /examples/shopping/delivery_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/delivery_order.json -------------------------------------------------------------------------------- /examples/shopping/delivery_order_goods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/delivery_order_goods.json -------------------------------------------------------------------------------- /examples/shopping/ebox_charge_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/ebox_charge_daily.json -------------------------------------------------------------------------------- /examples/shopping/ebox_order_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/ebox_order_daily.json -------------------------------------------------------------------------------- /examples/shopping/execls/delivery_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/execls/delivery_order.json -------------------------------------------------------------------------------- /examples/shopping/operator_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/operator_daily.json -------------------------------------------------------------------------------- /examples/shopping/operator_recharge_order.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/operator_recharge_order.json -------------------------------------------------------------------------------- /examples/shopping/operator_terminal_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/operator_terminal_daily.json -------------------------------------------------------------------------------- /examples/shopping/order_coupons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/order_coupons.json -------------------------------------------------------------------------------- /examples/shopping/shop_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/shop_daily.json -------------------------------------------------------------------------------- /examples/shopping/sql/ebox_charge_daily.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/sql/ebox_charge_daily.sql -------------------------------------------------------------------------------- /examples/shopping/terminal_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/terminal_daily.json -------------------------------------------------------------------------------- /examples/shopping/timeout_user_pay_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/timeout_user_pay_daily.json -------------------------------------------------------------------------------- /examples/shopping/user_coupons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/shopping/user_coupons.json -------------------------------------------------------------------------------- /examples/warehouse/base/database.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/base/database.json -------------------------------------------------------------------------------- /examples/warehouse/base/log.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/base/log.json -------------------------------------------------------------------------------- /examples/warehouse/delivery_acceptance_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/delivery_acceptance_rate.json -------------------------------------------------------------------------------- /examples/warehouse/delivery_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/delivery_daily.json -------------------------------------------------------------------------------- /examples/warehouse/driver_daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/driver_daily.json -------------------------------------------------------------------------------- /examples/warehouse/execls/delivery_acceptance_rate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/execls/delivery_acceptance_rate.json -------------------------------------------------------------------------------- /examples/warehouse/site_delivery_timeout.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/site_delivery_timeout.json -------------------------------------------------------------------------------- /examples/warehouse/sql/delivery_acceptance_rate.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/sql/delivery_acceptance_rate.sql -------------------------------------------------------------------------------- /examples/warehouse/sql/delivery_daily.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/sql/delivery_daily.sql -------------------------------------------------------------------------------- /examples/warehouse/sql/driver_daily.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/examples/warehouse/sql/driver_daily.sql -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal=1 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/setup.py -------------------------------------------------------------------------------- /syncany/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/__init__.py -------------------------------------------------------------------------------- /syncany/calculaters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/__init__.py -------------------------------------------------------------------------------- /syncany/calculaters/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/builtin.py -------------------------------------------------------------------------------- /syncany/calculaters/calculater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/calculater.py -------------------------------------------------------------------------------- /syncany/calculaters/convert_calculater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/convert_calculater.py -------------------------------------------------------------------------------- /syncany/calculaters/datetime_calculater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/datetime_calculater.py -------------------------------------------------------------------------------- /syncany/calculaters/import_calculater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/import_calculater.py -------------------------------------------------------------------------------- /syncany/calculaters/textline_calculater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/textline_calculater.py -------------------------------------------------------------------------------- /syncany/calculaters/transform_calculater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/calculaters/transform_calculater.py -------------------------------------------------------------------------------- /syncany/database/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/__init__.py -------------------------------------------------------------------------------- /syncany/database/beanstalk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/beanstalk.py -------------------------------------------------------------------------------- /syncany/database/clickhouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/clickhouse.py -------------------------------------------------------------------------------- /syncany/database/csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/csv.py -------------------------------------------------------------------------------- /syncany/database/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/database.py -------------------------------------------------------------------------------- /syncany/database/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/elasticsearch.py -------------------------------------------------------------------------------- /syncany/database/excel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/excel.py -------------------------------------------------------------------------------- /syncany/database/http.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/http.py -------------------------------------------------------------------------------- /syncany/database/influxdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/influxdb.py -------------------------------------------------------------------------------- /syncany/database/json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/json.py -------------------------------------------------------------------------------- /syncany/database/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/memory.py -------------------------------------------------------------------------------- /syncany/database/mongodb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/mongodb.py -------------------------------------------------------------------------------- /syncany/database/mysql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/mysql.py -------------------------------------------------------------------------------- /syncany/database/oracle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/oracle.py -------------------------------------------------------------------------------- /syncany/database/postgresql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/postgresql.py -------------------------------------------------------------------------------- /syncany/database/redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/redis.py -------------------------------------------------------------------------------- /syncany/database/sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/sqlite.py -------------------------------------------------------------------------------- /syncany/database/sqlserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/sqlserver.py -------------------------------------------------------------------------------- /syncany/database/textline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/database/textline.py -------------------------------------------------------------------------------- /syncany/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/errors.py -------------------------------------------------------------------------------- /syncany/filters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/filters/__init__.py -------------------------------------------------------------------------------- /syncany/filters/builtin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/filters/builtin.py -------------------------------------------------------------------------------- /syncany/filters/filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/filters/filter.py -------------------------------------------------------------------------------- /syncany/hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/hook.py -------------------------------------------------------------------------------- /syncany/loaders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/__init__.py -------------------------------------------------------------------------------- /syncany/loaders/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/cache.py -------------------------------------------------------------------------------- /syncany/loaders/calculate_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/calculate_db.py -------------------------------------------------------------------------------- /syncany/loaders/calculate_db_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/calculate_db_join.py -------------------------------------------------------------------------------- /syncany/loaders/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/const.py -------------------------------------------------------------------------------- /syncany/loaders/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/db.py -------------------------------------------------------------------------------- /syncany/loaders/db_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/db_join.py -------------------------------------------------------------------------------- /syncany/loaders/db_pull.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/db_pull.py -------------------------------------------------------------------------------- /syncany/loaders/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/loaders/loader.py -------------------------------------------------------------------------------- /syncany/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/logger.py -------------------------------------------------------------------------------- /syncany/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/main.py -------------------------------------------------------------------------------- /syncany/outputers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/__init__.py -------------------------------------------------------------------------------- /syncany/outputers/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/db.py -------------------------------------------------------------------------------- /syncany/outputers/db_delete_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/db_delete_insert.py -------------------------------------------------------------------------------- /syncany/outputers/db_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/db_insert.py -------------------------------------------------------------------------------- /syncany/outputers/db_update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/db_update.py -------------------------------------------------------------------------------- /syncany/outputers/db_update_delete_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/db_update_delete_insert.py -------------------------------------------------------------------------------- /syncany/outputers/db_update_insert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/db_update_insert.py -------------------------------------------------------------------------------- /syncany/outputers/outputer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/outputers/outputer.py -------------------------------------------------------------------------------- /syncany/taskers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/__init__.py -------------------------------------------------------------------------------- /syncany/taskers/config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/__init__.py -------------------------------------------------------------------------------- /syncany/taskers/config/file_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/file_reader.py -------------------------------------------------------------------------------- /syncany/taskers/config/http_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/http_reader.py -------------------------------------------------------------------------------- /syncany/taskers/config/json_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/json_parser.py -------------------------------------------------------------------------------- /syncany/taskers/config/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/parser.py -------------------------------------------------------------------------------- /syncany/taskers/config/reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/reader.py -------------------------------------------------------------------------------- /syncany/taskers/config/yaml_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/config/yaml_parser.py -------------------------------------------------------------------------------- /syncany/taskers/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/context.py -------------------------------------------------------------------------------- /syncany/taskers/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/__init__.py -------------------------------------------------------------------------------- /syncany/taskers/core/loader_creater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/loader_creater.py -------------------------------------------------------------------------------- /syncany/taskers/core/option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/option.py -------------------------------------------------------------------------------- /syncany/taskers/core/outputer_creater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/outputer_creater.py -------------------------------------------------------------------------------- /syncany/taskers/core/states.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/states.py -------------------------------------------------------------------------------- /syncany/taskers/core/valuer_compiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/valuer_compiler.py -------------------------------------------------------------------------------- /syncany/taskers/core/valuer_creater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/core/valuer_creater.py -------------------------------------------------------------------------------- /syncany/taskers/iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/iterator.py -------------------------------------------------------------------------------- /syncany/taskers/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/manager.py -------------------------------------------------------------------------------- /syncany/taskers/tasker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/taskers/tasker.py -------------------------------------------------------------------------------- /syncany/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/utils.py -------------------------------------------------------------------------------- /syncany/valuers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/__init__.py -------------------------------------------------------------------------------- /syncany/valuers/aggregate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/aggregate.py -------------------------------------------------------------------------------- /syncany/valuers/assign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/assign.py -------------------------------------------------------------------------------- /syncany/valuers/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/cache.py -------------------------------------------------------------------------------- /syncany/valuers/calculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/calculate.py -------------------------------------------------------------------------------- /syncany/valuers/call.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/call.py -------------------------------------------------------------------------------- /syncany/valuers/case.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/case.py -------------------------------------------------------------------------------- /syncany/valuers/condition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/condition.py -------------------------------------------------------------------------------- /syncany/valuers/const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/const.py -------------------------------------------------------------------------------- /syncany/valuers/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/data.py -------------------------------------------------------------------------------- /syncany/valuers/db_join.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/db_join.py -------------------------------------------------------------------------------- /syncany/valuers/db_load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/db_load.py -------------------------------------------------------------------------------- /syncany/valuers/function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/function.py -------------------------------------------------------------------------------- /syncany/valuers/generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/generator.py -------------------------------------------------------------------------------- /syncany/valuers/inherit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/inherit.py -------------------------------------------------------------------------------- /syncany/valuers/let.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/let.py -------------------------------------------------------------------------------- /syncany/valuers/loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/loop.py -------------------------------------------------------------------------------- /syncany/valuers/make.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/make.py -------------------------------------------------------------------------------- /syncany/valuers/match.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/match.py -------------------------------------------------------------------------------- /syncany/valuers/partition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/partition.py -------------------------------------------------------------------------------- /syncany/valuers/schema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/schema.py -------------------------------------------------------------------------------- /syncany/valuers/state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/state.py -------------------------------------------------------------------------------- /syncany/valuers/valuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/snower/syncany/HEAD/syncany/valuers/valuer.py --------------------------------------------------------------------------------