質問編集履歴

1

ディレクトリの構成を追加しました。

2019/07/19 07:12

投稿

tomy-c
tomy-c

スコア179

test CHANGED
File without changes
test CHANGED
@@ -305,3 +305,107 @@
305
305
  ```
306
306
 
307
307
  ※pyinstaller側は圧倒的にpathが不足している
308
+
309
+ ### 補足情報
310
+
311
+ プロジェクトの構成は以下のようになっています
312
+
313
+ ```
314
+
315
+ ├─.vscode #VSCodeのデバッグ用設定とかが入っている
316
+
317
+ ├─build #pyinstaller 実行時のビルド
318
+
319
+ ├─dist #pyinstaller 実行時の実行ファイル格納場所
320
+
321
+ └─lib #pipで入手したgoogle-cloud-translateクライアントライブラリ格納場所(作った)
322
+
323
+ ├─bin
324
+
325
+ ├─cachetools
326
+
327
+ ├─cachetools-3.1.1.dist-info
328
+
329
+ ├─certifi
330
+
331
+ ├─certifi-2019.6.16.dist-info
332
+
333
+ ├─chardet
334
+
335
+ ├─chardet-3.0.4.dist-info
336
+
337
+ ├─google
338
+
339
+ │ ├─auth
340
+
341
+ │ ├─cloud
342
+
343
+ │ │ ├─translate_v2
344
+
345
+ │ │ └─translate_v3beta1
346
+
347
+ │ ├─logging
348
+
349
+ │ ├─longrunning
350
+
351
+ │ ├─oauth2
352
+
353
+ │ ├─protobuf
354
+
355
+ │ ├─rpc
356
+
357
+ │ └─type
358
+
359
+ ├─googleapis_common_protos-1.6.0-py3.7.egg-info
360
+
361
+ ├─google_api_core-1.14.0.dist-info
362
+
363
+ ├─google_auth-1.6.3.dist-info
364
+
365
+ ├─google_cloud_core-1.0.2.dist-info
366
+
367
+ ├─google_cloud_translate-1.6.0.dist-info
368
+
369
+ ├─grpc
370
+
371
+ ├─grpcio-1.22.0.dist-info
372
+
373
+ ├─idna
374
+
375
+ ├─idna-2.8.dist-info
376
+
377
+ ├─pkg_resources
378
+
379
+ ├─protobuf-3.9.0.dist-info
380
+
381
+ ├─pyasn1
382
+
383
+ ├─pyasn1-0.4.5.dist-info
384
+
385
+ ├─pyasn1_modules
386
+
387
+ ├─pyasn1_modules-0.2.5.dist-info
388
+
389
+ ├─pytz
390
+
391
+ ├─pytz-2019.1.dist-info
392
+
393
+ ├─requests
394
+
395
+ ├─requests-2.22.0.dist-info
396
+
397
+ ├─rsa
398
+
399
+ ├─rsa-4.0.dist-info
400
+
401
+ ├─setuptools
402
+
403
+ ├─setuptools-41.0.1.dist-info
404
+
405
+ ├─six-1.12.0.dist-info
406
+
407
+ ├─urllib3
408
+
409
+ └─urllib3-1.25.3.dist-info
410
+
411
+ ```