Commit 3736fd32 authored by yogesh.m's avatar yogesh.m

update

parent bf344fed
......@@ -49,7 +49,7 @@
<recent name="D:\opcua-cloning" />
</key>
</component>
<component name="RunManager" selected="Python.opcua-transmitter (1)">
<component name="RunManager" selected="Python.main">
<configuration name="asyncua_server (1)" type="PythonConfigurationType" factoryName="Python" temporary="true" nameIsGenerated="true">
<module name="opcua-cloning" />
<option name="INTERPRETER_OPTIONS" value="" />
......
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
No preview for this file type
No preview for this file type
......@@ -154,6 +154,7 @@ imports:
&#8226; <a href="#genericpath">genericpath</a>
&#8226; <a href="#heapq">heapq</a>
&#8226; <a href="#io">io</a>
&#8226; <a href="#json">json</a>
&#8226; <a href="#keyword">keyword</a>
&#8226; <a href="#linecache">linecache</a>
&#8226; <a href="#locale">locale</a>
......@@ -175,6 +176,7 @@ imports:
&#8226; <a href="#sre_constants">sre_constants</a>
&#8226; <a href="#sre_parse">sre_parse</a>
&#8226; <a href="#stat">stat</a>
&#8226; <a href="#sys">sys</a>
&#8226; <a href="#threading">threading</a>
&#8226; <a href="#tkinter">tkinter</a>
&#8226; <a href="#token">token</a>
......@@ -4212,6 +4214,7 @@ imports:
&#8226; <a href="#json">json</a>
&#8226; <a href="#pickle">pickle</a>
&#8226; <a href="#socket">socket</a>
&#8226; <a href="#struct">struct</a>
&#8226; <a href="#threading">threading</a>
</div>
......@@ -11334,8 +11337,8 @@ imports:
<a href="#asyncio">asyncio</a>
&#8226; <a href="#asyncua">asyncua</a>
&#8226; <a href="#json">json</a>
&#8226; <a href="#pickle">pickle</a>
&#8226; <a href="#socket">socket</a>
&#8226; <a href="#struct">struct</a>
&#8226; <a href="#time">time</a>
</div>
......@@ -12030,6 +12033,7 @@ imported by:
&#8226; <a href="#json.decoder">json.decoder</a>
&#8226; <a href="#json.encoder">json.encoder</a>
&#8226; <a href="#json.scanner">json.scanner</a>
&#8226; <a href="#main.py">main.py</a>
</div>
......@@ -13664,7 +13668,6 @@ imports:
imported by:
<a href="#asyncua.server.address_space">asyncua.server.address_space</a>
&#8226; <a href="#asyncua_server">asyncua_server</a>
&#8226; <a href="#hash_sender">hash_sender</a>
&#8226; <a href="#logging">logging</a>
&#8226; <a href="#multiprocessing.reduction">multiprocessing.reduction</a>
&#8226; <a href="#shelve">shelve</a>
......@@ -15338,6 +15341,7 @@ imported by:
&#8226; <a href="#asyncua.server.internal_server">asyncua.server.internal_server</a>
&#8226; <a href="#asyncua.ua.ua_binary">asyncua.ua.ua_binary</a>
&#8226; <a href="#asyncua.ua.uaprotocol_hand">asyncua.ua.uaprotocol_hand</a>
&#8226; <a href="#asyncua_server">asyncua_server</a>
&#8226; <a href="#base64">base64</a>
&#8226; <a href="#ctypes">ctypes</a>
&#8226; <a href="#dateutil.tz.tz">dateutil.tz.tz</a>
......@@ -15345,6 +15349,7 @@ imported by:
&#8226; <a href="#dbm">dbm</a>
&#8226; <a href="#gettext">gettext</a>
&#8226; <a href="#gzip">gzip</a>
&#8226; <a href="#hash_sender">hash_sender</a>
&#8226; <a href="#multiprocessing.connection">multiprocessing.connection</a>
&#8226; <a href="#multiprocessing.forkserver">multiprocessing.forkserver</a>
&#8226; <a href="#multiprocessing.shared_memory">multiprocessing.shared_memory</a>
......@@ -15492,6 +15497,7 @@ imported by:
&#8226; <a href="#linecache">linecache</a>
&#8226; <a href="#locale">locale</a>
&#8226; <a href="#logging">logging</a>
&#8226; <a href="#main.py">main.py</a>
&#8226; <a href="#mimetypes">mimetypes</a>
&#8226; <a href="#multiprocessing">multiprocessing</a>
&#8226; <a href="#multiprocessing.connection">multiprocessing.connection</a>
......
......@@ -20,7 +20,6 @@ platforms = {
if(os.path.isfile(platforms[sys.platform])):
file = open(platforms[sys.platform],"r+")
cache_data = json.loads(file.read())
print(cache_data)
class App(tk.Frame):
def __init__(self, master=None):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment