Skip to main content

Creates multiple instances of BlueStacks 5 with an independent system disk.

Project description

Creates multiple instances of BlueStacks 5 with an independent system disk.

Tested against Windows 10 / Python 3.11 / Anaconda

pip install bluestacks5newinstances

# Install BlueStacks 5
# Create the main emulator and at least one instance of it and run all created instances 


Args:
    newintancenametocreate_config (Union[str, None], optional): The configuration file for the new instance. If provided, it will override the default configuration (pie64_basis_modell, rvc64_basis_modell, nougat64_basis_modell, nougat32_basis_modell). Defaults to None.
    newintancenametocreate (Literal["Rvc64", "Pie64", "Nougat64", "Nougat32"], optional): The name of the new instance. Defaults to "Rvc64".
    newtype_fastboot (Literal["Normal", "ReadOnly"], optional): The type of fastboot for the new instance. Defaults to "Normal".
    newtype_root (Literal["Normal", "ReadOnly"], optional): The type of root for the new instance. Defaults to "Normal".
    newtype_data (Literal["Normal", "ReadOnly"], optional): The type of data for the new instance. Defaults to "Normal".
    numberofinstances (int, optional): The number of instances to create. Defaults to 1.

Returns:
    list: A list of lists containing the instance name and the adb port for each created instance.
Example:
    from bluestacks5newinstances import batch_create_bstacks_instances

    # don't change the uppercase letters, they are going to be replaced by the script
    newinstances_and_adbports = batch_create_bstacks_instances(
        newintancenametocreate_config=r'''bst.instance.Rvc64_NEWID.abi_list="x86,x64,arm,arm64"
    bst.instance.Rvc64_NEWID.adb_port="ADBPORTNEW"
    bst.instance.Rvc64_NEWID.ads_display_time=""
    bst.instance.Rvc64_NEWID.airplane_mode_active="0"
    bst.instance.Rvc64_NEWID.airplane_mode_active_time=""
    bst.instance.Rvc64_NEWID.android_google_ad_id=""
    bst.instance.Rvc64_NEWID.android_id="ANDROID_ID_NEW"
    bst.instance.Rvc64_NEWID.android_sound_while_tapping="0"
    bst.instance.Rvc64_NEWID.app_launch_count="0"
    bst.instance.Rvc64_NEWID.astc_decoding_mode="software"
    bst.instance.Rvc64_NEWID.autohide_notifications="0"
    bst.instance.Rvc64_NEWID.boot_duration="-1"
    bst.instance.Rvc64_NEWID.camera_device=""
    bst.instance.Rvc64_NEWID.cpus="4"
    bst.instance.Rvc64_NEWID.custom_resolution_selected="0"
    bst.instance.Rvc64_NEWID.device_carrier_code="se_72405"
    bst.instance.Rvc64_NEWID.device_country_code="076"
    bst.instance.Rvc64_NEWID.device_custom_brand=""
    bst.instance.Rvc64_NEWID.device_custom_manufacturer=""
    bst.instance.Rvc64_NEWID.device_custom_model=""
    bst.instance.Rvc64_NEWID.device_profile_code="sttu"
    bst.instance.Rvc64_NEWID.display_name="Rvc64_NEWID"
    bst.instance.Rvc64_NEWID.dpi="160"
    bst.instance.Rvc64_NEWID.eco_mode_max_fps="5"
    bst.instance.Rvc64_NEWID.enable_fps_display="0"
    bst.instance.Rvc64_NEWID.enable_fullscreen_all_apps="0"
    bst.instance.Rvc64_NEWID.enable_high_fps="0"
    bst.instance.Rvc64_NEWID.enable_logcat_redirection="0"
    bst.instance.Rvc64_NEWID.enable_notifications="0"
    bst.instance.Rvc64_NEWID.enable_root_access="0"
    bst.instance.Rvc64_NEWID.enable_vsync="0"
    bst.instance.Rvc64_NEWID.fb_height="1280"
    bst.instance.Rvc64_NEWID.fb_width="720"
    bst.instance.Rvc64_NEWID.first_boot="1"
    bst.instance.Rvc64_NEWID.game_controls_enabled="0"
    bst.instance.Rvc64_NEWID.gl_win_height="-1"
    bst.instance.Rvc64_NEWID.gl_win_screen=""
    bst.instance.Rvc64_NEWID.gl_win_x="0"
    bst.instance.Rvc64_NEWID.gl_win_y="0"
    bst.instance.Rvc64_NEWID.google_account_logins=""
    bst.instance.Rvc64_NEWID.google_login_popup_shown="0"
    bst.instance.Rvc64_NEWID.graphics_engine="aga"
    bst.instance.Rvc64_NEWID.graphics_renderer="gl"
    bst.instance.Rvc64_NEWID.grm_ignored_rules=""
    bst.instance.Rvc64_NEWID.launch_date=""
    bst.instance.Rvc64_NEWID.libc_mem_allocator="jem"
    bst.instance.Rvc64_NEWID.macro_win_height="-1"
    bst.instance.Rvc64_NEWID.macro_win_screen=""
    bst.instance.Rvc64_NEWID.macro_win_x="-1"
    bst.instance.Rvc64_NEWID.macro_win_y="-1"
    bst.instance.Rvc64_NEWID.max_fps="60"
    bst.instance.Rvc64_NEWID.pin_to_top="0"
    bst.instance.Rvc64_NEWID.ram="4096"
    bst.instance.Rvc64_NEWID.show_sidebar="1"
    bst.instance.Rvc64_NEWID.status.adb_port="5555"
    bst.instance.Rvc64_NEWID.status.ip_addr_prefix_len="24"
    bst.instance.Rvc64_NEWID.status.ip_gateway_addr="10.0.2.2"
    bst.instance.Rvc64_NEWID.status.ip_guest_addr="10.0.2.15"
    bst.instance.Rvc64_NEWID.status.session_id="0"
    bst.instance.Rvc64_NEWID.vulkan_supported="1"''',
        newintancenametocreate="Rvc64",
        newtype_fastboot="Normal",
        newtype_root="Normal",
        newtype_data="Normal",
        numberofinstances=3,
    )
    print(newinstances_and_adbports)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bluestacks5newinstances-0.10.tar.gz (11.8 kB view details)

Uploaded Source

Built Distribution

bluestacks5newinstances-0.10-py3-none-any.whl (13.2 kB view details)

Uploaded Python 3

File details

Details for the file bluestacks5newinstances-0.10.tar.gz.

File metadata

File hashes

Hashes for bluestacks5newinstances-0.10.tar.gz
Algorithm Hash digest
SHA256 5a6dd33b048aeb082161db32d7433a4250d19d8a28feb5c11a882ac20207793b
MD5 e26b77830fd36e6d26af11353419435a
BLAKE2b-256 de596d0bf43247aabffd8e592b18f9bd9b2af4266597ee01c3c4e46ca25d3996

See more details on using hashes here.

File details

Details for the file bluestacks5newinstances-0.10-py3-none-any.whl.

File metadata

File hashes

Hashes for bluestacks5newinstances-0.10-py3-none-any.whl
Algorithm Hash digest
SHA256 e18f955ec3e8c8aa72d4a82b05a8d5a2337ab6ca383d32e8f9e338982837c893
MD5 539656e95ab726d10c9a9cbd08918920
BLAKE2b-256 c761df5371a55767a78f2e72ab979c98e0b96e519101bef5efc20f4a36b14eb5

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page