├── .flake8 ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md ├── SUPPORT.md └── workflows │ ├── ci.yml │ ├── linter.yml │ └── pypi_upload.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── botcity └── core │ ├── __init__.py │ ├── _version.py │ ├── application │ ├── __init__.py │ ├── functions.py │ └── utils.py │ ├── bot.py │ ├── config.py │ ├── cv2find.py │ ├── input_utils.py │ ├── os_compat.py │ ├── tests │ ├── __init__.py │ └── test_import.py │ └── utils.py ├── docs-requirements.txt ├── docs ├── assets │ ├── favicon.ico │ └── logo.png ├── bot.md ├── index.md └── intro.md ├── examples ├── .DS_Store ├── contact │ ├── README.md │ ├── botcity_contact.py │ └── resources │ │ ├── contact.png │ │ ├── email.png │ │ ├── name.png │ │ ├── request.png │ │ └── test.png └── rpa-challenge │ ├── README.md │ └── input-forms │ ├── input_bot-content.py │ ├── input_bot.py │ ├── requirements.txt │ └── resources │ ├── address.png │ ├── company_name.png │ ├── email.png │ ├── first_name.png │ ├── last_name.png │ ├── phone.png │ ├── role.png │ ├── start.png │ └── submit.png ├── mkdocs.yml ├── requirements.txt ├── run_tests.py ├── setup.cfg ├── setup.py ├── test-requirements.txt └── versioneer.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | botcity/core/_version.py export-subst 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/linter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/workflows/linter.yml -------------------------------------------------------------------------------- /.github/workflows/pypi_upload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.github/workflows/pypi_upload.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/README.md -------------------------------------------------------------------------------- /botcity/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/__init__.py -------------------------------------------------------------------------------- /botcity/core/_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/_version.py -------------------------------------------------------------------------------- /botcity/core/application/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botcity/core/application/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/application/functions.py -------------------------------------------------------------------------------- /botcity/core/application/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/application/utils.py -------------------------------------------------------------------------------- /botcity/core/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/bot.py -------------------------------------------------------------------------------- /botcity/core/config.py: -------------------------------------------------------------------------------- 1 | 2 | DEFAULT_SLEEP_AFTER_ACTION = 300 3 | -------------------------------------------------------------------------------- /botcity/core/cv2find.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/cv2find.py -------------------------------------------------------------------------------- /botcity/core/input_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/input_utils.py -------------------------------------------------------------------------------- /botcity/core/os_compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/os_compat.py -------------------------------------------------------------------------------- /botcity/core/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /botcity/core/tests/test_import.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/tests/test_import.py -------------------------------------------------------------------------------- /botcity/core/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/botcity/core/utils.py -------------------------------------------------------------------------------- /docs-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/docs-requirements.txt -------------------------------------------------------------------------------- /docs/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/docs/assets/favicon.ico -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/bot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/docs/bot.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/docs/intro.md -------------------------------------------------------------------------------- /examples/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/.DS_Store -------------------------------------------------------------------------------- /examples/contact/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/README.md -------------------------------------------------------------------------------- /examples/contact/botcity_contact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/botcity_contact.py -------------------------------------------------------------------------------- /examples/contact/resources/contact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/resources/contact.png -------------------------------------------------------------------------------- /examples/contact/resources/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/resources/email.png -------------------------------------------------------------------------------- /examples/contact/resources/name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/resources/name.png -------------------------------------------------------------------------------- /examples/contact/resources/request.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/resources/request.png -------------------------------------------------------------------------------- /examples/contact/resources/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/contact/resources/test.png -------------------------------------------------------------------------------- /examples/rpa-challenge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/README.md -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/input_bot-content.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/input_bot-content.py -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/input_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/input_bot.py -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pandas 3 | openpyxl 4 | xlrd 5 | -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/address.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/address.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/company_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/company_name.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/email.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/email.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/first_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/first_name.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/last_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/last_name.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/phone.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/role.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/start.png -------------------------------------------------------------------------------- /examples/rpa-challenge/input-forms/resources/submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/examples/rpa-challenge/input-forms/resources/submit.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/run_tests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/setup.py -------------------------------------------------------------------------------- /test-requirements.txt: -------------------------------------------------------------------------------- 1 | pytest 2 | -------------------------------------------------------------------------------- /versioneer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/botcity-dev/botcity-framework-core-python/HEAD/versioneer.py --------------------------------------------------------------------------------