Index: appengine/findit/libs/README.md |
diff --git a/appengine/findit/libs/README.md b/appengine/findit/libs/README.md |
new file mode 100644 |
index 0000000000000000000000000000000000000000..fa81f46dbfbd996fcba70fe8e292634ed99d919b |
--- /dev/null |
+++ b/appengine/findit/libs/README.md |
@@ -0,0 +1,12 @@ |
+# libs |
+ |
+This [libs](libs) module is for shared & standalone code that has no dependency |
+on AppEngine but just the standard python library. However, it should also be |
+AppEngine-compatible -- could run on AppEngine. |
wrengr
2016/11/10 21:20:35
Would be worth specifically mentioning the `os` mo
stgao
2016/11/14 23:30:51
Good idea!
Added an example.
|
+ |
+# How to use? |
+ |
+Create a symbolic link to [libs](libs), and ensure that the containing directory |
+of it is in sys.path or PYTHONPATH. |
+ |
+The usage would look like: `from libs import API_MODULE_NAME` |