Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reordered package for future development #4

Merged
merged 2 commits into from
Nov 24, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,5 @@ pyvenv.cfg
dist/
*.egg-info/
__pycache__/
lib64
share/
4 changes: 2 additions & 2 deletions examples/bluetooth_scan_network.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
"""Example usage of googledevices."""
import asyncio
import aiohttp
from googledevices.bluetooth import Bluetooth
from googledevices.api.bluetooth import Bluetooth
from googledevices.scan import NetworkScan
from googledevices.device_info import DeviceInfo
from googledevices.api.device_info import DeviceInfo

IPRANGE = '192.168.2.0/24'

Expand Down
2 changes: 1 addition & 1 deletion examples/bluetooth_scan_unit.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Example usage of googledevices."""
import asyncio
import aiohttp
from googledevices.bluetooth import Bluetooth
from googledevices.api.bluetooth import Bluetooth

IPADDRESS = '192.168.2.234'

Expand Down
2 changes: 1 addition & 1 deletion examples/get_alarms.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Example usage of googledevices."""
import asyncio
import aiohttp
from googledevices.alarms import Alarms
from googledevices.api.alarms import Alarms

IPADDRESS = '192.168.2.234'

Expand Down
2 changes: 1 addition & 1 deletion examples/get_device_info.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Example usage of googledevices."""
import asyncio
import aiohttp
from googledevices.device_info import DeviceInfo
from googledevices.api.device_info import DeviceInfo

IPADDRESS = '192.168.2.234'

Expand Down
2 changes: 1 addition & 1 deletion examples/reboot.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Example usage of googledevices."""
import asyncio
import aiohttp
from googledevices.device_settings import DeviceSettings
from googledevices.api.device_settings import DeviceSettings

IPADDRESS = '192.168.2.234'

Expand Down
1 change: 1 addition & 0 deletions googledevices/api/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Initialize the api."""
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion googledevices/scan.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
import socket
import ipaddress
import logging
from googledevices.device_info import DeviceInfo
from googledevices.api.device_info import DeviceInfo
from googledevices.utils.const import PORT

_LOGGER = logging.getLogger(__name__)
Expand Down