forked from nodebox/nodebox-pyobjc
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmacboot.py
More file actions
134 lines (99 loc) · 1.89 KB
/
macboot.py
File metadata and controls
134 lines (99 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# Startup file for the NodeBox OS X application
# PyObjC requires the startup file to be in the root folder.
# This just imports everything from the nodebox.gui.mac module
# and works from there
import os
import operator
import warnings
import io
import json
import optparse
import importlib
# import _multibytecodec
import sqlite3
import zipfile
import tarfile
import gzip
import hashlib
import base64
import re
import pickle
import pydoc
# pattern lib
import csv
import functools
import itertools
import codecs
import calendar
import types
import feedparser
import encodings
import requests
# for the libraries
import bs4
# moved to Library
import numpy
import charset_normalizer
try:
import planar
except:
pass
# wn
import httpx
import tomllib
import anyio
import certifi
import httpcore
import idna
import sniffio
import h11
# nltk
import regex
# PIL / Pillow support
import PIL
import PIL.Image
import PIL.ImageFilter
import PIL.ImageChops
import PIL.ImageEnhance
import PIL.ImageOps
import PIL.ImageDraw
import PIL.ImageStat
# import cairo
import objc
import Foundation
import AppKit
import Quartz
import Quartz.QuartzCore
import AVFoundation
import AVKit
import LaunchServices
import WebKit
import CoreLocation
import PyObjCTools
import PyObjCTools.AppHelper
import PyObjCTools.Signals
PyObjCTools.Signals.dumpStackOnFatalSignal()
import PyObjCTools.Debugging
PyObjCTools.Debugging.installVerboseExceptionHandler()
import nodebox
import nodebox.geo
import nodebox.graphics
import nodebox.gui
import nodebox.gui.mac
# pattern
# import xml.etree
# import xml.etree.cElementTree
# Do not import these here; they are in the app and are imported by scripts
# If you import here, 10.6 breaks
# import scipy
# import matplotlib
# import cairo
# Twyg is in Library
# import twyg
# py3 stuff
punicode = str
pstr = bytes
py3 = True
punichr = chr
long = int
PyObjCTools.AppHelper.runEventLoop()