A small Python package for rotating the screen.
Project description
Platforms Supported
Windows is currently the only platform supported.
Installation
Clone the repo, download as a zip file, or use the following command...
pip install rotate-screen
Documentation
The package comes with some functions to get available displays in the form of <rotatescreen Display> objects. You can then use the <rotatescreen Display> object methods to change the orientation of the display.
Here are a few of the available package functions...
Function | Returns |
---|---|
rotatescreen.get_displays() |
Returns a list of <rotatescreen Display> objects for each available display. |
rotatescreen.get_secondary_displays() |
Returns a list of <rotatescreen Display> objects for every display apart from the primary display. |
rotatescreen.get_primary_display() |
Returns a <rotatescreen Display> object for the primary display. |
Here are the available methods (no return value) for a <rotatescreen Display> object...
Procedure | Arguments | Result |
---|---|---|
.rotate_to(pos) |
pos (int): Degrees to rotate the screen to. Must be one of 0, 90, 180, 270. | Rotates the screen to desired. |
.set_landscape() |
Rotates the screen to landscape. | |
.set_landscape_flipped() |
Rotates the screen to upside down landscape. | |
.set_portrait() |
Rotates the screen to portrait. | |
.set_portrait_flipped() |
Rotates the screen to upside down portrait. |
Here are the available attributes for a <rotatescreen Display> object...
Attribute | Returns |
---|---|
.current_orientation |
Returns (int) the current orientation of the display, will be one of 0, 90, 180, 270. |
.is_primary |
Returns (bool) if the display is the primary monitor. |
.info |
Returns (dict) monitor info. |
.device |
Returns monitor device info. |
.device_description |
Returns (str) visable name for display device. |
Example:
This is a simple example that implements the 'Ctrl+Alt+Arrow' keyboard shortcut for rotating the display. This is because some graphics cards don't come with this capability by default.
This example requires the keyboard module...
pip install keyboard
Here is the code! It adds hotkeys to rotate the primary display in the desired direction upon the user entering Ctrl, Alt and an arrow key. It then waits until the script is exited.
import rotatescreen
import keyboard
screen = rotatescreen.get_primary_display()
keyboard.add_hotkey('ctrl+alt+up', screen.set_landscape, suppress=True)
keyboard.add_hotkey('ctrl+alt+right', screen.set_portrait_flipped, suppress=True)
keyboard.add_hotkey('ctrl+alt+down', screen.set_landscape_flipped, suppress=True)
keyboard.add_hotkey('ctrl+alt+left', screen.set_portrait, suppress=True)
keyboard.wait()
Example:
This was a little joke script to show off some more of the modules functionality, due to the way windows rotates the display this is a pretty horrific looking, but entertaining. :)
import rotatescreen
import time
screen = rotatescreen.get_primary_display()
start_pos = screen.current_orientation
for i in range(1, 5):
pos = abs((start_pos - i*90) % 360)
screen.rotate_to(pos)
time.sleep(1.5)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file rotate-screen-0.1.5.tar.gz
.
File metadata
- Download URL: rotate-screen-0.1.5.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8c1cf9a4d06dc5b4af1e46f62bb48a7bcbaa8fe9a94925c63b54ecafe6cd9cfd |
|
MD5 | 3c8606f56e06551a452194d61f6703b8 |
|
BLAKE2b-256 | 9302fe45f0bc850729d71624bcee02b250f7bd13d96b7f4515578faa36f1c61a |
File details
Details for the file rotate_screen-0.1.5-py3-none-any.whl
.
File metadata
- Download URL: rotate_screen-0.1.5-py3-none-any.whl
- Upload date:
- Size: 6.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | acd477f6e51b18350efd6519ac7edb6ab7bc9070a8ce185d4d04e7aace16369a |
|
MD5 | 4e66dacb745c22118467431d9a4630bc |
|
BLAKE2b-256 | dbcafd462b126c56073702ba7c5b6b11746c9a8da6f3a4d40682b0cb6b25b1d1 |