├── .circleci └── config.yml ├── .gitignore ├── LICENSE.md ├── MANIFEST ├── README.rst ├── async2rewrite ├── __init__.py ├── __main__.py ├── main.py ├── tests │ ├── __init__.py │ ├── test_ext_changes.py │ ├── test_game_to_activity.py │ ├── test_property_changes.py │ ├── test_server_to_guild.py │ ├── test_snowflakes.py │ └── test_stateful_models.py └── transformers.py ├── logo.png ├── requirements.txt ├── sample_code.py ├── setup.cfg ├── setup.py ├── test-requirements.txt └── tox.ini /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/LICENSE.md -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/README.rst -------------------------------------------------------------------------------- /async2rewrite/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/__init__.py -------------------------------------------------------------------------------- /async2rewrite/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/__main__.py -------------------------------------------------------------------------------- /async2rewrite/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/main.py -------------------------------------------------------------------------------- /async2rewrite/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /async2rewrite/tests/test_ext_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/tests/test_ext_changes.py -------------------------------------------------------------------------------- /async2rewrite/tests/test_game_to_activity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/tests/test_game_to_activity.py -------------------------------------------------------------------------------- /async2rewrite/tests/test_property_changes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/tests/test_property_changes.py -------------------------------------------------------------------------------- /async2rewrite/tests/test_server_to_guild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/tests/test_server_to_guild.py -------------------------------------------------------------------------------- /async2rewrite/tests/test_snowflakes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/tests/test_snowflakes.py -------------------------------------------------------------------------------- /async2rewrite/tests/test_stateful_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/tests/test_stateful_models.py -------------------------------------------------------------------------------- /async2rewrite/transformers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/async2rewrite/transformers.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | astunparse-noparen>=1.5.6 -------------------------------------------------------------------------------- /sample_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/sample_code.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/test-requirements.txt -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergibbs2/async2rewrite/HEAD/tox.ini --------------------------------------------------------------------------------