scratchattach 3.0.0b1__py3-none-any.whl → 3.0.0b2__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. scratchattach/__init__.py +37 -0
  2. scratchattach/__main__.py +93 -0
  3. {scratchattach-3.0.0b1.dist-info → scratchattach-3.0.0b2.dist-info}/METADATA +1 -1
  4. scratchattach-3.0.0b2.dist-info/RECORD +81 -0
  5. scratchattach-3.0.0b2.dist-info/top_level.txt +1 -0
  6. scratchattach-3.0.0b1.dist-info/RECORD +0 -79
  7. scratchattach-3.0.0b1.dist-info/top_level.txt +0 -7
  8. {cli → scratchattach/cli}/__about__.py +0 -0
  9. {cli → scratchattach/cli}/__init__.py +0 -0
  10. {cli → scratchattach/cli}/cmd/__init__.py +0 -0
  11. {cli → scratchattach/cli}/cmd/group.py +0 -0
  12. {cli → scratchattach/cli}/cmd/login.py +0 -0
  13. {cli → scratchattach/cli}/cmd/profile.py +0 -0
  14. {cli → scratchattach/cli}/cmd/sessions.py +0 -0
  15. {cli → scratchattach/cli}/context.py +0 -0
  16. {cli → scratchattach/cli}/db.py +0 -0
  17. {cli → scratchattach/cli}/namespace.py +0 -0
  18. {cloud → scratchattach/cloud}/__init__.py +0 -0
  19. {cloud → scratchattach/cloud}/_base.py +0 -0
  20. {cloud → scratchattach/cloud}/cloud.py +0 -0
  21. {editor → scratchattach/editor}/__init__.py +0 -0
  22. {editor → scratchattach/editor}/asset.py +0 -0
  23. {editor → scratchattach/editor}/backpack_json.py +0 -0
  24. {editor → scratchattach/editor}/base.py +0 -0
  25. {editor → scratchattach/editor}/block.py +0 -0
  26. {editor → scratchattach/editor}/blockshape.py +0 -0
  27. {editor → scratchattach/editor}/build_defaulting.py +0 -0
  28. {editor → scratchattach/editor}/code_translation/__init__.py +0 -0
  29. {editor → scratchattach/editor}/code_translation/parse.py +0 -0
  30. {editor → scratchattach/editor}/comment.py +0 -0
  31. {editor → scratchattach/editor}/commons.py +0 -0
  32. {editor → scratchattach/editor}/extension.py +0 -0
  33. {editor → scratchattach/editor}/field.py +0 -0
  34. {editor → scratchattach/editor}/inputs.py +0 -0
  35. {editor → scratchattach/editor}/meta.py +0 -0
  36. {editor → scratchattach/editor}/monitor.py +0 -0
  37. {editor → scratchattach/editor}/mutation.py +0 -0
  38. {editor → scratchattach/editor}/pallete.py +0 -0
  39. {editor → scratchattach/editor}/prim.py +0 -0
  40. {editor → scratchattach/editor}/project.py +0 -0
  41. {editor → scratchattach/editor}/sprite.py +0 -0
  42. {editor → scratchattach/editor}/twconfig.py +0 -0
  43. {editor → scratchattach/editor}/vlb.py +0 -0
  44. {eventhandlers → scratchattach/eventhandlers}/__init__.py +0 -0
  45. {eventhandlers → scratchattach/eventhandlers}/_base.py +0 -0
  46. {eventhandlers → scratchattach/eventhandlers}/cloud_events.py +0 -0
  47. {eventhandlers → scratchattach/eventhandlers}/cloud_recorder.py +0 -0
  48. {eventhandlers → scratchattach/eventhandlers}/cloud_requests.py +0 -0
  49. {eventhandlers → scratchattach/eventhandlers}/cloud_server.py +0 -0
  50. {eventhandlers → scratchattach/eventhandlers}/cloud_storage.py +0 -0
  51. {eventhandlers → scratchattach/eventhandlers}/combine.py +0 -0
  52. {eventhandlers → scratchattach/eventhandlers}/filterbot.py +0 -0
  53. {eventhandlers → scratchattach/eventhandlers}/message_events.py +0 -0
  54. {other → scratchattach/other}/__init__.py +0 -0
  55. {other → scratchattach/other}/other_apis.py +0 -0
  56. {other → scratchattach/other}/project_json_capabilities.py +0 -0
  57. {site → scratchattach/site}/__init__.py +0 -0
  58. {site → scratchattach/site}/_base.py +0 -0
  59. {site → scratchattach/site}/activity.py +0 -0
  60. {site → scratchattach/site}/alert.py +0 -0
  61. {site → scratchattach/site}/backpack_asset.py +0 -0
  62. {site → scratchattach/site}/browser_cookie3_stub.py +0 -0
  63. {site → scratchattach/site}/browser_cookies.py +0 -0
  64. {site → scratchattach/site}/classroom.py +0 -0
  65. {site → scratchattach/site}/cloud_activity.py +0 -0
  66. {site → scratchattach/site}/comment.py +0 -0
  67. {site → scratchattach/site}/forum.py +0 -0
  68. {site → scratchattach/site}/placeholder.py +0 -0
  69. {site → scratchattach/site}/project.py +0 -0
  70. {site → scratchattach/site}/session.py +0 -0
  71. {site → scratchattach/site}/studio.py +0 -0
  72. {site → scratchattach/site}/typed_dicts.py +0 -0
  73. {site → scratchattach/site}/user.py +0 -0
  74. {utils → scratchattach/utils}/__init__.py +0 -0
  75. {utils → scratchattach/utils}/commons.py +0 -0
  76. {utils → scratchattach/utils}/encoder.py +0 -0
  77. {utils → scratchattach/utils}/enums.py +0 -0
  78. {utils → scratchattach/utils}/exceptions.py +0 -0
  79. {utils → scratchattach/utils}/optional_async.py +0 -0
  80. {utils → scratchattach/utils}/requests.py +0 -0
  81. {scratchattach-3.0.0b1.dist-info → scratchattach-3.0.0b2.dist-info}/WHEEL +0 -0
  82. {scratchattach-3.0.0b1.dist-info → scratchattach-3.0.0b2.dist-info}/entry_points.txt +0 -0
  83. {scratchattach-3.0.0b1.dist-info → scratchattach-3.0.0b2.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,37 @@
1
+ from .cloud.cloud import ScratchCloud, TwCloud, get_cloud, get_scratch_cloud, get_tw_cloud
2
+ from .cloud._base import BaseCloud, AnyCloud
3
+
4
+ from .eventhandlers.cloud_server import init_cloud_server
5
+ from .eventhandlers._base import BaseEventHandler
6
+ from .eventhandlers.filterbot import Filterbot, HardFilter, SoftFilter, SpamFilter
7
+ from .eventhandlers.cloud_storage import Database
8
+ from .eventhandlers.combine import MultiEventHandler
9
+
10
+ from .other.other_apis import *
11
+ # from .other.project_json_capabilities import ProjectBody, get_empty_project_pb, get_pb_from_dict, read_sb3_file, download_asset
12
+ from .utils.encoder import Encoding
13
+ from .utils.enums import Languages, TTSVoices
14
+ from .utils.exceptions import (
15
+ LoginDataWarning,
16
+ GetAuthenticationWarning,
17
+ StudioAuthenticationWarning,
18
+ ClassroomAuthenticationWarning,
19
+ ProjectAuthenticationWarning,
20
+ UserAuthenticationWarning)
21
+
22
+ from .site.activity import Activity, ActivityTypes
23
+ from .site.backpack_asset import BackpackAsset
24
+ from .site.comment import Comment, CommentSource
25
+ from .site.cloud_activity import CloudActivity
26
+ from .site.forum import ForumPost, ForumTopic, get_topic, get_topic_list, youtube_link_to_scratch
27
+ from .site.project import Project, get_project, search_projects, explore_projects
28
+ from .site.session import Session, login, login_by_id, login_by_session_string, login_by_io, login_by_file, \
29
+ login_from_browser
30
+ from .site.studio import Studio, get_studio, search_studios, explore_studios
31
+ from .site.classroom import Classroom, get_classroom
32
+ from .site.user import User, get_user, Rank
33
+ from .site._base import BaseSiteComponent
34
+ from .site.browser_cookies import Browser, ANY, FIREFOX, CHROME, CHROMIUM, VIVALDI, EDGE, EDGE_DEV, SAFARI
35
+ from .site.placeholder import PlaceholderProject, get_placeholder_project, create_placeholder_project
36
+
37
+ from . import editor
@@ -0,0 +1,93 @@
1
+ """
2
+ Scratchattach CLI. Most source code is in the `cli` directory
3
+ """
4
+
5
+ import argparse
6
+
7
+ from scratchattach import cli
8
+ from scratchattach.cli import db, cmd
9
+ from scratchattach.cli.context import ctx, console
10
+
11
+ import rich.traceback
12
+
13
+ rich.traceback.install()
14
+
15
+
16
+ # noinspection PyUnusedLocal
17
+ def main():
18
+ parser = argparse.ArgumentParser(
19
+ prog="scratch",
20
+ description="Scratchattach CLI",
21
+ epilog=f"Running scratchattach CLI version {cli.VERSION}",
22
+ )
23
+
24
+ # Using walrus operator & ifs for artificial indentation
25
+ if commands := parser.add_subparsers(dest="command"):
26
+ commands.add_parser("profile", help="View your profile")
27
+ commands.add_parser("sessions", help="View session list")
28
+ if login := commands.add_parser("login", help="Login to Scratch"):
29
+ login.add_argument("--sessid", dest="sessid", nargs="?", default=False, const=True,
30
+ help="Login by session ID")
31
+ if group := commands.add_parser("group", help="View current session group"):
32
+ if group_commands := group.add_subparsers(dest="group_command"):
33
+ group_commands.add_parser("list", help="List all session groups")
34
+ group_commands.add_parser("add", help="Add sessions to group")
35
+ group_commands.add_parser("remove", help="Remove sessions from a group")
36
+ group_commands.add_parser("delete", help="Delete current group")
37
+ if group_copy := group_commands.add_parser("copy", help="Copy current group with a new name"):
38
+ group_copy.add_argument("group_name", help="New group name")
39
+ if group_rename := group_commands.add_parser("rename", help="Rename current group"):
40
+ group_rename.add_argument("group_name", help="New group name")
41
+ if group_new := group_commands.add_parser("new", help="Create a new group"):
42
+ group_new.add_argument("group_name")
43
+ if group_switch := group_commands.add_parser("switch", help="Change the current group"):
44
+ group_switch.add_argument("group_name")
45
+
46
+ parser.add_argument("-U", "--username", dest="username", help="Name of user to look at")
47
+ parser.add_argument("-P", "--project", dest="project_id", help="ID of project to look at")
48
+ parser.add_argument("-S", "--studio", dest="studio_id", help="ID of studio to look at")
49
+ parser.add_argument("-L", "--session_name", dest="session_name",
50
+ help="Name of (registered) session/login to look at")
51
+
52
+ args = parser.parse_args(namespace=cli.ArgSpace())
53
+ cli.ctx.args = args
54
+ cli.ctx.parser = parser
55
+
56
+ match args.command:
57
+ case "sessions":
58
+ cmd.sessions()
59
+ case "login":
60
+ cmd.login()
61
+ case "group":
62
+ cmd.group()
63
+ case "profile":
64
+ cmd.profile()
65
+ case None:
66
+ if args.username:
67
+ user = ctx.session.connect_user(args.username)
68
+ console.print(cli.try_get_img(user.icon, (30, 30)))
69
+ console.print(user)
70
+ return
71
+ if args.studio_id:
72
+ studio = ctx.session.connect_studio(args.studio_id)
73
+ console.print(cli.try_get_img(studio.thumbnail, (34, 20)))
74
+ console.print(studio)
75
+ return
76
+ if args.project_id:
77
+ project = ctx.session.connect_project(args.project_id)
78
+ console.print(cli.try_get_img(project.thumbnail, (30, 23)))
79
+ console.print(project)
80
+ return
81
+ if args.session_name:
82
+ if sess := ctx.db_get_sess(args.session_name):
83
+ console.print(sess)
84
+ else:
85
+ raise ValueError(f"No session logged in called {args.session_name!r} "
86
+ f"- try using `scratch sessions` to see available sessions")
87
+ return
88
+
89
+ parser.print_help()
90
+
91
+
92
+ if __name__ == '__main__':
93
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: scratchattach
3
- Version: 3.0.0b1
3
+ Version: 3.0.0b2
4
4
  Summary: A Scratch API Wrapper
5
5
  Author: TimMcCool
6
6
  License-Expression: MIT
@@ -0,0 +1,81 @@
1
+ scratchattach/__init__.py,sha256=K26DsJHYlj7atN0WVQOmtN7d1rNAnmLcO3ljA1UD1lc,1849
2
+ scratchattach/__main__.py,sha256=K520LnmXe5WAlr8UZQE1Owrm8BDncy19QQ5GJ75V9FM,4054
3
+ scratchattach/cli/__about__.py,sha256=rWWgBXhOQakEGEip4jZgZsmGHkIU08m01PRgPUfmHdg,17
4
+ scratchattach/cli/__init__.py,sha256=WAJmqnZi5RoJGlx3fngQAi9APNf84QlicncbsPRwhkg,700
5
+ scratchattach/cli/context.py,sha256=7m9i-J2j36MN8uPJm8ydjMFKWZjJQAyu5NBluL8eQUE,4950
6
+ scratchattach/cli/db.py,sha256=sV-AwyYc8WeHalpadAV1vD0HXkEmZrcvhLGJA0q0TD0,1920
7
+ scratchattach/cli/namespace.py,sha256=qWH1QI9ot-5Y1ahpY9JHw8HTGnlFwHRKLoKxvxFqk5A,445
8
+ scratchattach/cli/cmd/__init__.py,sha256=KiNP3GVwCf-NE_yzYgDvza3hR3Sr1B0-wqu5Xaxi_g4,110
9
+ scratchattach/cli/cmd/group.py,sha256=j8jqy2N4KEChe6cUus5MczoqGKDzjOIgG2mBmxVmb-A,4144
10
+ scratchattach/cli/cmd/login.py,sha256=BnPUCUDG58gNly76OZdBT22oxaZY50b_VHnQWx2p40I,1914
11
+ scratchattach/cli/cmd/profile.py,sha256=jT-JoJhFCtzbyskdQpi8_ckVzrVqDghlh-zEEEchFDI,172
12
+ scratchattach/cli/cmd/sessions.py,sha256=JzBx6BTjddqU-UGZz4CtYpBKb9CC7lbpXLk19Pz7Zoo,116
13
+ scratchattach/cloud/__init__.py,sha256=MN7s4grQcciqUO7TiFjTbU2sC69m6XXlwOHNRbN3FKo,41
14
+ scratchattach/cloud/_base.py,sha256=tXVWPsL9Ybvu2H0zQ5R9GexgeHAarEv4GS16foD3_qw,19251
15
+ scratchattach/cloud/cloud.py,sha256=zq0Z-N2EF2uUxpJ0uZlITY2DeKkjb3TxwK_etci-xCM,8470
16
+ scratchattach/editor/__init__.py,sha256=pdq-dg7fa4cj6eksu5yzUe27DGY6CLKVUtCSrbYCsM8,807
17
+ scratchattach/editor/asset.py,sha256=Ut_Em2rzlzswi2aDTvyRZWvF5JKLY8IAmoLMOQLBpjQ,8148
18
+ scratchattach/editor/backpack_json.py,sha256=zhNRKDmlA9Oz-IixjLRnSwVG6JfKURs31KhQPjJu_bs,3880
19
+ scratchattach/editor/base.py,sha256=MUQ4zqw-IaFZDH9o_F9k7F3mptymR67E8ITkaMfnD5M,5311
20
+ scratchattach/editor/block.py,sha256=2UKKQbrDdsI6dbswo2swvIr7jXiXA114TCtXDO9DSFw,19085
21
+ scratchattach/editor/blockshape.py,sha256=Q8CAWsBc2O5VqcGhUxbJoW1RRfy7kBxz1AporkExBi8,25318
22
+ scratchattach/editor/build_defaulting.py,sha256=rRDSXpIugWENYs6X50A_a3BJfWJuzEtwW1bv9IAyo-M,1421
23
+ scratchattach/editor/comment.py,sha256=G_eFxeaC_vKbCFpDfw4oZxIReUBoBUaCA5q35O-AW6Y,2403
24
+ scratchattach/editor/commons.py,sha256=0mm30KjAenl_V2BXbkdirFN62SraYfGUariXB-TXNlU,3583
25
+ scratchattach/editor/extension.py,sha256=PFVl5SrS66M4Md98I_dsfeL9BLeWwvyWezmhnTRseIQ,1541
26
+ scratchattach/editor/field.py,sha256=_AmBwrb5TeG_CRm312I69T2xXlzuKYeudpygPyA4698,2994
27
+ scratchattach/editor/inputs.py,sha256=bmCLsxgGimkESbKEnhsnw_ZSRpBDsWRIcEoYPFMx9Zs,4505
28
+ scratchattach/editor/meta.py,sha256=QCHk5DKvYAw7F5Gg4OIJNcB7PhK8u5YgfDmGQPWobTs,3330
29
+ scratchattach/editor/monitor.py,sha256=A30XadTjw_G0KsTnwo3YEI31nkplc1DnO8AirjmB3zc,5921
30
+ scratchattach/editor/mutation.py,sha256=o2msH-s6UxFZ-LuYF1BlR4CBm-ulKTVpStux54cxnDk,12246
31
+ scratchattach/editor/pallete.py,sha256=OY76grzJLUWsAKi2x-mipEXv5f-9I-s9UjoLZ3FmtBM,2299
32
+ scratchattach/editor/prim.py,sha256=v74mkdLwsXAKPy_KPesugv-xCxA6YcGU6_v7Zvc2YEY,5919
33
+ scratchattach/editor/project.py,sha256=tWf9kULlJjMCV1t5AofIDFqGylBYQ31vpjDMJ3jM3_Q,12884
34
+ scratchattach/editor/sprite.py,sha256=M_rrkErJswH9stKvrywrkaoNEwgRBbF7-Si17W-0vTs,21205
35
+ scratchattach/editor/twconfig.py,sha256=iE6ylAsZzniAfhL09GkZSFn1XacYtCQPzRCUSPIBzDA,3324
36
+ scratchattach/editor/vlb.py,sha256=Fl2gGwZyYh54uOhQ7XITfCgCpJTQB2P8wy47PKY3Qyk,4151
37
+ scratchattach/editor/code_translation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
+ scratchattach/editor/code_translation/parse.py,sha256=FjuHVg_tNzkGcGSNwgH6MzAHcf5YCvaEUSYukyJkwbk,4932
39
+ scratchattach/eventhandlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
40
+ scratchattach/eventhandlers/_base.py,sha256=97vFbuhSoJeYb-jrEWDdbZWQ7e_54CY3ktrq8d_-w8g,3142
41
+ scratchattach/eventhandlers/cloud_events.py,sha256=LDENLVopVwKDVrcfkR1spKzT45ET-EKqBdtCzXoaS5g,5228
42
+ scratchattach/eventhandlers/cloud_recorder.py,sha256=dvob4-aKLxE9WFqvCNv28M_r3r3OEkET6rwmu5yl4jk,795
43
+ scratchattach/eventhandlers/cloud_requests.py,sha256=CQsA6wzW6C0xJYtw6g0X8x5DY5EHkDE1tAOMVigzhzA,25113
44
+ scratchattach/eventhandlers/cloud_server.py,sha256=j2Iiuxsp9xOLeZ6S7iT7Yto8u599O57kRUZLMMIxjQ0,12431
45
+ scratchattach/eventhandlers/cloud_storage.py,sha256=YYcvRjhIuOboWVemMKFEtUhrd6UeUFO_BlbAIH7oaeQ,4609
46
+ scratchattach/eventhandlers/combine.py,sha256=YiWI6WI1BySioXpfYaMv8noBM14EjZa7dtsJsMTshEU,894
47
+ scratchattach/eventhandlers/filterbot.py,sha256=V5dQErz_yFpSioh5VxUDaBW8L9ny1uMviTt7x-KFC1k,7612
48
+ scratchattach/eventhandlers/message_events.py,sha256=KvznXAeNGk1WWCxd7PI95yovX-58TyCBNDdXbrYgb8Q,1776
49
+ scratchattach/other/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
50
+ scratchattach/other/other_apis.py,sha256=yZ06rCZmJLSZZdfv1V_VgRBq5dUxS31YHkpsdOxAezw,17509
51
+ scratchattach/other/project_json_capabilities.py,sha256=07t1iMgWm4Qd06jHyQ3vK7tROguvc2RQCo78enrdSlA,22646
52
+ scratchattach/site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
53
+ scratchattach/site/_base.py,sha256=D2SOp2aFiDP0hG7-xP8kK1pmoAz5TOi7_iWt6Ulpsbg,3283
54
+ scratchattach/site/activity.py,sha256=g5fg97xHUAKOkaZ4VzKl3hVpICZhv1mpDCO6LlmkoTU,17871
55
+ scratchattach/site/alert.py,sha256=V6asmcWy4tcQgWhG95rpqXP0KeUy7VQU9wD9AMhCqds,9324
56
+ scratchattach/site/backpack_asset.py,sha256=__VZomGDJkbgWj2ridQQArMMLWoSMv8dpO7PPpvPgBU,3322
57
+ scratchattach/site/browser_cookie3_stub.py,sha256=codk0knOP5C0YThaRazvqsqX7X7WnrD2UwFd1nFG7mg,1422
58
+ scratchattach/site/browser_cookies.py,sha256=uQyjJJ4HCu46R4tPWCcTUqDMXSXhQ4KQUobqCSxScSA,1864
59
+ scratchattach/site/classroom.py,sha256=lpHh2OkHeFzGUaFbf9PWIrosYOBo2cRrfc6fsex2w44,18139
60
+ scratchattach/site/cloud_activity.py,sha256=vMQy2k3jzPbOa3_TiH23B9dTk4BQA_z0q_Ab6TFkeV8,5397
61
+ scratchattach/site/comment.py,sha256=kUZxbjChs8K66vShz-Q1y1s72yJ44hFXJUYLsSb9rUs,9449
62
+ scratchattach/site/forum.py,sha256=-XLi3UJOwDt0Ye8CqP4c-sSxOkPSe5fPVa9b7MOm64k,16553
63
+ scratchattach/site/placeholder.py,sha256=BTOroGKA3lpgKPJXFeveEuMdcNkOIddpbNTrV-48s-o,5446
64
+ scratchattach/site/project.py,sha256=Zc5TN4PEGC1fTze_rkU7_-Y1YDuSXrkHaJGD3eeLgqU,34750
65
+ scratchattach/site/session.py,sha256=kd4IKaMXmtWGJJnFV3wOoLAF2S_012zHkdGcMZgUFxs,54451
66
+ scratchattach/site/studio.py,sha256=sAqFJDjhxf-9NynLB7mrCgzxq8td1oqa1zTW9MP1yTM,26195
67
+ scratchattach/site/typed_dicts.py,sha256=Hq65u56OSLdcoQ0F0A_CxZ8WBY5d_0VuJmUEMd8KmpU,3611
68
+ scratchattach/site/user.py,sha256=P2nsSGo-Z1QlXzAQxstOOq-E4QGN9HVA4dIQaJd1YFY,47404
69
+ scratchattach/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ scratchattach/utils/commons.py,sha256=DpBTxRC2XeKURW5YJwAT6teAfYG7221GxClTaZ0-yQE,8465
71
+ scratchattach/utils/encoder.py,sha256=1lOXBbqo2JGMdns6Q5WGhAB9p7Q8trduBk-SZgmcEKw,2559
72
+ scratchattach/utils/enums.py,sha256=5HhXidczUYYVwHf6jfJcMA80jK4V0imaltLEu5epIF8,11127
73
+ scratchattach/utils/exceptions.py,sha256=T1nBbbkTZVkZU7uNaqBqSbNTGtOaOnTVLRRqUTatTis,7556
74
+ scratchattach/utils/optional_async.py,sha256=zTCFt6tpSvlcwns1RgAACKplA1SSFyVWAcDRS8kLLjE,4721
75
+ scratchattach/utils/requests.py,sha256=Brl94PCyblaQopanXyyQZ8ZoaWuFrK3NqUTZWW22gpY,9608
76
+ scratchattach-3.0.0b2.dist-info/licenses/LICENSE,sha256=1PRKLhZU4wYt5M-C9f7q0W3go3u_ojnZMNOdR3g3J-E,1080
77
+ scratchattach-3.0.0b2.dist-info/METADATA,sha256=NanxaLAiqzD7fyD2O9oMWxqkLsfdg-439oGR5Qhd3xo,5633
78
+ scratchattach-3.0.0b2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
79
+ scratchattach-3.0.0b2.dist-info/entry_points.txt,sha256=vNXuP05TQKEoIzmzmUzS7zbtSZx0p3JmeUW3QhNdYfg,56
80
+ scratchattach-3.0.0b2.dist-info/top_level.txt,sha256=gIwCwW39ohXn0JlnvSzAjV7VtL3qPlRnHiRqBbxsEUE,14
81
+ scratchattach-3.0.0b2.dist-info/RECORD,,
@@ -0,0 +1 @@
1
+ scratchattach
@@ -1,79 +0,0 @@
1
- cli/__about__.py,sha256=rWWgBXhOQakEGEip4jZgZsmGHkIU08m01PRgPUfmHdg,17
2
- cli/__init__.py,sha256=WAJmqnZi5RoJGlx3fngQAi9APNf84QlicncbsPRwhkg,700
3
- cli/context.py,sha256=7m9i-J2j36MN8uPJm8ydjMFKWZjJQAyu5NBluL8eQUE,4950
4
- cli/db.py,sha256=sV-AwyYc8WeHalpadAV1vD0HXkEmZrcvhLGJA0q0TD0,1920
5
- cli/namespace.py,sha256=qWH1QI9ot-5Y1ahpY9JHw8HTGnlFwHRKLoKxvxFqk5A,445
6
- cli/cmd/__init__.py,sha256=KiNP3GVwCf-NE_yzYgDvza3hR3Sr1B0-wqu5Xaxi_g4,110
7
- cli/cmd/group.py,sha256=j8jqy2N4KEChe6cUus5MczoqGKDzjOIgG2mBmxVmb-A,4144
8
- cli/cmd/login.py,sha256=BnPUCUDG58gNly76OZdBT22oxaZY50b_VHnQWx2p40I,1914
9
- cli/cmd/profile.py,sha256=jT-JoJhFCtzbyskdQpi8_ckVzrVqDghlh-zEEEchFDI,172
10
- cli/cmd/sessions.py,sha256=JzBx6BTjddqU-UGZz4CtYpBKb9CC7lbpXLk19Pz7Zoo,116
11
- cloud/__init__.py,sha256=MN7s4grQcciqUO7TiFjTbU2sC69m6XXlwOHNRbN3FKo,41
12
- cloud/_base.py,sha256=tXVWPsL9Ybvu2H0zQ5R9GexgeHAarEv4GS16foD3_qw,19251
13
- cloud/cloud.py,sha256=zq0Z-N2EF2uUxpJ0uZlITY2DeKkjb3TxwK_etci-xCM,8470
14
- editor/__init__.py,sha256=pdq-dg7fa4cj6eksu5yzUe27DGY6CLKVUtCSrbYCsM8,807
15
- editor/asset.py,sha256=Ut_Em2rzlzswi2aDTvyRZWvF5JKLY8IAmoLMOQLBpjQ,8148
16
- editor/backpack_json.py,sha256=zhNRKDmlA9Oz-IixjLRnSwVG6JfKURs31KhQPjJu_bs,3880
17
- editor/base.py,sha256=MUQ4zqw-IaFZDH9o_F9k7F3mptymR67E8ITkaMfnD5M,5311
18
- editor/block.py,sha256=2UKKQbrDdsI6dbswo2swvIr7jXiXA114TCtXDO9DSFw,19085
19
- editor/blockshape.py,sha256=Q8CAWsBc2O5VqcGhUxbJoW1RRfy7kBxz1AporkExBi8,25318
20
- editor/build_defaulting.py,sha256=rRDSXpIugWENYs6X50A_a3BJfWJuzEtwW1bv9IAyo-M,1421
21
- editor/comment.py,sha256=G_eFxeaC_vKbCFpDfw4oZxIReUBoBUaCA5q35O-AW6Y,2403
22
- editor/commons.py,sha256=0mm30KjAenl_V2BXbkdirFN62SraYfGUariXB-TXNlU,3583
23
- editor/extension.py,sha256=PFVl5SrS66M4Md98I_dsfeL9BLeWwvyWezmhnTRseIQ,1541
24
- editor/field.py,sha256=_AmBwrb5TeG_CRm312I69T2xXlzuKYeudpygPyA4698,2994
25
- editor/inputs.py,sha256=bmCLsxgGimkESbKEnhsnw_ZSRpBDsWRIcEoYPFMx9Zs,4505
26
- editor/meta.py,sha256=QCHk5DKvYAw7F5Gg4OIJNcB7PhK8u5YgfDmGQPWobTs,3330
27
- editor/monitor.py,sha256=A30XadTjw_G0KsTnwo3YEI31nkplc1DnO8AirjmB3zc,5921
28
- editor/mutation.py,sha256=o2msH-s6UxFZ-LuYF1BlR4CBm-ulKTVpStux54cxnDk,12246
29
- editor/pallete.py,sha256=OY76grzJLUWsAKi2x-mipEXv5f-9I-s9UjoLZ3FmtBM,2299
30
- editor/prim.py,sha256=v74mkdLwsXAKPy_KPesugv-xCxA6YcGU6_v7Zvc2YEY,5919
31
- editor/project.py,sha256=tWf9kULlJjMCV1t5AofIDFqGylBYQ31vpjDMJ3jM3_Q,12884
32
- editor/sprite.py,sha256=M_rrkErJswH9stKvrywrkaoNEwgRBbF7-Si17W-0vTs,21205
33
- editor/twconfig.py,sha256=iE6ylAsZzniAfhL09GkZSFn1XacYtCQPzRCUSPIBzDA,3324
34
- editor/vlb.py,sha256=Fl2gGwZyYh54uOhQ7XITfCgCpJTQB2P8wy47PKY3Qyk,4151
35
- editor/code_translation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
36
- editor/code_translation/parse.py,sha256=FjuHVg_tNzkGcGSNwgH6MzAHcf5YCvaEUSYukyJkwbk,4932
37
- eventhandlers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- eventhandlers/_base.py,sha256=97vFbuhSoJeYb-jrEWDdbZWQ7e_54CY3ktrq8d_-w8g,3142
39
- eventhandlers/cloud_events.py,sha256=LDENLVopVwKDVrcfkR1spKzT45ET-EKqBdtCzXoaS5g,5228
40
- eventhandlers/cloud_recorder.py,sha256=dvob4-aKLxE9WFqvCNv28M_r3r3OEkET6rwmu5yl4jk,795
41
- eventhandlers/cloud_requests.py,sha256=CQsA6wzW6C0xJYtw6g0X8x5DY5EHkDE1tAOMVigzhzA,25113
42
- eventhandlers/cloud_server.py,sha256=j2Iiuxsp9xOLeZ6S7iT7Yto8u599O57kRUZLMMIxjQ0,12431
43
- eventhandlers/cloud_storage.py,sha256=YYcvRjhIuOboWVemMKFEtUhrd6UeUFO_BlbAIH7oaeQ,4609
44
- eventhandlers/combine.py,sha256=YiWI6WI1BySioXpfYaMv8noBM14EjZa7dtsJsMTshEU,894
45
- eventhandlers/filterbot.py,sha256=V5dQErz_yFpSioh5VxUDaBW8L9ny1uMviTt7x-KFC1k,7612
46
- eventhandlers/message_events.py,sha256=KvznXAeNGk1WWCxd7PI95yovX-58TyCBNDdXbrYgb8Q,1776
47
- other/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
48
- other/other_apis.py,sha256=yZ06rCZmJLSZZdfv1V_VgRBq5dUxS31YHkpsdOxAezw,17509
49
- other/project_json_capabilities.py,sha256=07t1iMgWm4Qd06jHyQ3vK7tROguvc2RQCo78enrdSlA,22646
50
- scratchattach-3.0.0b1.dist-info/licenses/LICENSE,sha256=1PRKLhZU4wYt5M-C9f7q0W3go3u_ojnZMNOdR3g3J-E,1080
51
- site/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
52
- site/_base.py,sha256=D2SOp2aFiDP0hG7-xP8kK1pmoAz5TOi7_iWt6Ulpsbg,3283
53
- site/activity.py,sha256=g5fg97xHUAKOkaZ4VzKl3hVpICZhv1mpDCO6LlmkoTU,17871
54
- site/alert.py,sha256=V6asmcWy4tcQgWhG95rpqXP0KeUy7VQU9wD9AMhCqds,9324
55
- site/backpack_asset.py,sha256=__VZomGDJkbgWj2ridQQArMMLWoSMv8dpO7PPpvPgBU,3322
56
- site/browser_cookie3_stub.py,sha256=codk0knOP5C0YThaRazvqsqX7X7WnrD2UwFd1nFG7mg,1422
57
- site/browser_cookies.py,sha256=uQyjJJ4HCu46R4tPWCcTUqDMXSXhQ4KQUobqCSxScSA,1864
58
- site/classroom.py,sha256=lpHh2OkHeFzGUaFbf9PWIrosYOBo2cRrfc6fsex2w44,18139
59
- site/cloud_activity.py,sha256=vMQy2k3jzPbOa3_TiH23B9dTk4BQA_z0q_Ab6TFkeV8,5397
60
- site/comment.py,sha256=kUZxbjChs8K66vShz-Q1y1s72yJ44hFXJUYLsSb9rUs,9449
61
- site/forum.py,sha256=-XLi3UJOwDt0Ye8CqP4c-sSxOkPSe5fPVa9b7MOm64k,16553
62
- site/placeholder.py,sha256=BTOroGKA3lpgKPJXFeveEuMdcNkOIddpbNTrV-48s-o,5446
63
- site/project.py,sha256=Zc5TN4PEGC1fTze_rkU7_-Y1YDuSXrkHaJGD3eeLgqU,34750
64
- site/session.py,sha256=kd4IKaMXmtWGJJnFV3wOoLAF2S_012zHkdGcMZgUFxs,54451
65
- site/studio.py,sha256=sAqFJDjhxf-9NynLB7mrCgzxq8td1oqa1zTW9MP1yTM,26195
66
- site/typed_dicts.py,sha256=Hq65u56OSLdcoQ0F0A_CxZ8WBY5d_0VuJmUEMd8KmpU,3611
67
- site/user.py,sha256=P2nsSGo-Z1QlXzAQxstOOq-E4QGN9HVA4dIQaJd1YFY,47404
68
- utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
- utils/commons.py,sha256=DpBTxRC2XeKURW5YJwAT6teAfYG7221GxClTaZ0-yQE,8465
70
- utils/encoder.py,sha256=1lOXBbqo2JGMdns6Q5WGhAB9p7Q8trduBk-SZgmcEKw,2559
71
- utils/enums.py,sha256=5HhXidczUYYVwHf6jfJcMA80jK4V0imaltLEu5epIF8,11127
72
- utils/exceptions.py,sha256=T1nBbbkTZVkZU7uNaqBqSbNTGtOaOnTVLRRqUTatTis,7556
73
- utils/optional_async.py,sha256=zTCFt6tpSvlcwns1RgAACKplA1SSFyVWAcDRS8kLLjE,4721
74
- utils/requests.py,sha256=Brl94PCyblaQopanXyyQZ8ZoaWuFrK3NqUTZWW22gpY,9608
75
- scratchattach-3.0.0b1.dist-info/METADATA,sha256=JnNVUZxbXAuGUH0mn9nE4Cuu17ko-wNNy1OLdPMPSWU,5633
76
- scratchattach-3.0.0b1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
77
- scratchattach-3.0.0b1.dist-info/entry_points.txt,sha256=vNXuP05TQKEoIzmzmUzS7zbtSZx0p3JmeUW3QhNdYfg,56
78
- scratchattach-3.0.0b1.dist-info/top_level.txt,sha256=PFfH9Sb4fMOY99H0Xiuuc8nEGjAT_-anhTaORDZBd7A,48
79
- scratchattach-3.0.0b1.dist-info/RECORD,,
@@ -1,7 +0,0 @@
1
- cli
2
- cloud
3
- editor
4
- eventhandlers
5
- other
6
- site
7
- utils
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes