Skip to content
Snippets Groups Projects
Commit 4fc78fe9 authored by David Huss's avatar David Huss :speech_balloon:
Browse files

Fix module structure

parent 40ed9bb4
No related branches found
No related tags found
No related merge requests found
__version__ = '0.1.1'
\ No newline at end of file
__version__ = '0.1.2'
__all__ = ["bbbmeetings"]
from .bbbmeetings import BBBServers, BBBServer, Meetings, Attendees
\ No newline at end of file
......@@ -7,7 +7,7 @@ import requests
import xmltodict
from bbbmeetings.types import *
import bbbmeetings
import bbbmeetings as classes
def generate_checksum(call_name: str, query_string: str, secret: Secret) -> str:
"""
......@@ -68,7 +68,7 @@ def get_meetings(bbb_url: Url, secret: Secret) -> List['Meeting']:
for d in checked_dict["meetings"].values():
if isinstance(d, list):
for x in d:
meetings.append(bbbmeetings.Meeting.from_dict(x))
meetings.append(classes.Meeting.from_dict(x))
else:
meetings.append(bbbmeetings.Meeting.from_dict(d))
meetings.append(classes.Meeting.from_dict(d))
return meetings
\ No newline at end of file
[tool.poetry]
name = "bbbmeetings"
version = "0.1.1"
version = "0.1.2"
description = "A module for reading bbb meetings from bbb servers"
authors = ["David Huss <david.huss@hfbk-hamburg.de>"]
maintainers = ["David Huss <david.huss@hfbk-hamburg.de>"]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment