первый код

This commit is contained in:
Anastasiya 2024-02-23 20:24:59 +05:00
commit 6b45d6273f
7 changed files with 72 additions and 0 deletions

3
.idea/.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
# Default ignored files
/shelf/
/workspace.xml

View File

@ -0,0 +1,6 @@
<component name="InspectionProjectProfileManager">
<settings>
<option name="USE_PROJECT_PROFILE" value="false" />
<version value="1.0" />
</settings>
</component>

7
.idea/misc.xml Normal file
View File

@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="Black">
<option name="sdkName" value="Python 3.12 (polka)" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12 (polka)" project-jdk-type="Python SDK" />
</project>

8
.idea/modules.xml Normal file
View File

@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/.idea/polka.iml" filepath="$PROJECT_DIR$/.idea/polka.iml" />
</modules>
</component>
</project>

10
.idea/polka.iml Normal file
View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="PYTHON_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/venv" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

6
.idea/vcs.xml Normal file
View File

@ -0,0 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="VcsDirectoryMappings">
<mapping directory="$PROJECT_DIR$" vcs="Git" />
</component>
</project>

32
main.py Normal file
View File

@ -0,0 +1,32 @@
import requests
import time
from datetime import datetime
def main():
while True:
current_time = datetime.now().strftime("%H:%M")
if "21:00" <= current_time < "09:00":
url = "http://192.168.89.21/api/radio?receive=3&comand_id=9&comand=2&metrika=0"
elif "09:00" <= current_time < "21:00":
url = "http://192.168.89.21/api/radio?receive=3&comand_id=9&comand=1&metrika=0"
else:
# If the current time doesn't fall within the defined ranges, sleep for a minute and then check again
time.sleep(60)
continue
try:
response = requests.get(url)
if response.status_code == 200:
print(f"Результат запроса ({current_time}):", response.text)
else:
print(f"Ошибка при запросе ({current_time}). Код состояния:", response.status_code)
except requests.RequestException as e:
print(f"Ошибка при выполнении запроса ({current_time}):", e)
# После выполнения запроса ожидаем минуту перед повторной проверкой времени
time.sleep(60)
if __name__ == "__main__":
main()