Skip to content

Commit 9a0add7

Browse files
Web personal
1 parent 8e3f1ee commit 9a0add7

File tree

9,383 files changed

+1214813
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

9,383 files changed

+1214813
-0
lines changed

webpersonal/.env

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
DEBUG = True
2+
#DATABASE_URL='postgresql://api_caja:api_caja@localhost:5432/api_caja'
3+
DATABASE_URL='postgresql://postgres:brian@localhost:5432/webpersonal'
4+
ALLOWED_HOSTS = '192.168.1.22','127.0.0.1'
5+
EMAIL_HOST = 'smtp.gmail.com'
6+
EMAIL_USER = '[email protected]'
7+
EMAIL_PASSWORD = '9780Bitcoin'
8+
EMAIL_PORT = 587
9+
EMAIL_TLS = True
10+
EMAIL_BACKEND= 'django.core.mail.backends.smtp.EmailBackend'
11+
EMAIL_ALERTS = ''
12+
SECRET_KEY = 'vri7**n=k*t==uo7zvns3qaq6sd45$rp+9e+gjn(u=oym!!q@k'
13+
#http://209.145.56.253:81/
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pip
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
This is the MIT license: http://www.opensource.org/licenses/mit-license.php
2+
3+
Copyright (c) Alex Grönholm
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of this
6+
software and associated documentation files (the "Software"), to deal in the Software
7+
without restriction, including without limitation the rights to use, copy, modify, merge,
8+
publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons
9+
to whom the Software is furnished to do so, subject to the following conditions:
10+
11+
The above copyright notice and this permission notice shall be included in all copies or
12+
substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
15+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
16+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE
17+
FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18+
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
19+
DEALINGS IN THE SOFTWARE.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,140 @@
1+
Metadata-Version: 2.1
2+
Name: APScheduler
3+
Version: 3.7.0
4+
Summary: In-process task scheduler with Cron-like capabilities
5+
Home-page: https://github.com/agronholm/apscheduler
6+
Author: Alex Grönholm
7+
Author-email: [email protected]
8+
License: MIT
9+
Keywords: scheduling cron
10+
Platform: UNKNOWN
11+
Classifier: Development Status :: 5 - Production/Stable
12+
Classifier: Intended Audience :: Developers
13+
Classifier: License :: OSI Approved :: MIT License
14+
Classifier: Programming Language :: Python
15+
Classifier: Programming Language :: Python :: 2.7
16+
Classifier: Programming Language :: Python :: 3
17+
Classifier: Programming Language :: Python :: 3.5
18+
Classifier: Programming Language :: Python :: 3.6
19+
Classifier: Programming Language :: Python :: 3.7
20+
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, <4
21+
Requires-Dist: setuptools (>=0.7)
22+
Requires-Dist: six (>=1.4.0)
23+
Requires-Dist: pytz
24+
Requires-Dist: tzlocal (~=2.0)
25+
Requires-Dist: funcsigs ; python_version < "3.5"
26+
Requires-Dist: futures ; python_version == "2.7"
27+
Provides-Extra: asyncio
28+
Requires-Dist: trollius ; (python_version == "2.7") and extra == 'asyncio'
29+
Provides-Extra: doc
30+
Requires-Dist: sphinx ; extra == 'doc'
31+
Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
32+
Provides-Extra: gevent
33+
Requires-Dist: gevent ; extra == 'gevent'
34+
Provides-Extra: mongodb
35+
Requires-Dist: pymongo (>=3.0) ; extra == 'mongodb'
36+
Provides-Extra: redis
37+
Requires-Dist: redis (>=3.0) ; extra == 'redis'
38+
Provides-Extra: rethinkdb
39+
Requires-Dist: rethinkdb (>=2.4.0) ; extra == 'rethinkdb'
40+
Provides-Extra: sqlalchemy
41+
Requires-Dist: sqlalchemy (>=0.8) ; extra == 'sqlalchemy'
42+
Provides-Extra: testing
43+
Requires-Dist: pytest (<6) ; extra == 'testing'
44+
Requires-Dist: pytest-cov ; extra == 'testing'
45+
Requires-Dist: pytest-tornado5 ; extra == 'testing'
46+
Requires-Dist: mock ; (python_version == "2.7") and extra == 'testing'
47+
Requires-Dist: pytest-asyncio (<0.6) ; (python_version == "3.4") and extra == 'testing'
48+
Requires-Dist: pytest-asyncio ; (python_version >= "3.5") and extra == 'testing'
49+
Provides-Extra: tornado
50+
Requires-Dist: tornado (>=4.3) ; extra == 'tornado'
51+
Provides-Extra: twisted
52+
Requires-Dist: twisted ; extra == 'twisted'
53+
Provides-Extra: zookeeper
54+
Requires-Dist: kazoo ; extra == 'zookeeper'
55+
56+
.. image:: https://travis-ci.com/agronholm/apscheduler.svg?branch=master
57+
:target: https://travis-ci.com/agronholm/apscheduler
58+
:alt: Build Status
59+
.. image:: https://coveralls.io/repos/github/agronholm/apscheduler/badge.svg?branch=master
60+
:target: https://coveralls.io/github/agronholm/apscheduler?branch=master
61+
:alt: Code Coverage
62+
63+
Advanced Python Scheduler (APScheduler) is a Python library that lets you schedule your Python code
64+
to be executed later, either just once or periodically. You can add new jobs or remove old ones on
65+
the fly as you please. If you store your jobs in a database, they will also survive scheduler
66+
restarts and maintain their state. When the scheduler is restarted, it will then run all the jobs
67+
it should have run while it was offline [#f1]_.
68+
69+
Among other things, APScheduler can be used as a cross-platform, application specific replacement
70+
to platform specific schedulers, such as the cron daemon or the Windows task scheduler. Please
71+
note, however, that APScheduler is **not** a daemon or service itself, nor does it come with any
72+
command line tools. It is primarily meant to be run inside existing applications. That said,
73+
APScheduler does provide some building blocks for you to build a scheduler service or to run a
74+
dedicated scheduler process.
75+
76+
APScheduler has three built-in scheduling systems you can use:
77+
78+
* Cron-style scheduling (with optional start/end times)
79+
* Interval-based execution (runs jobs on even intervals, with optional start/end times)
80+
* One-off delayed execution (runs jobs once, on a set date/time)
81+
82+
You can mix and match scheduling systems and the backends where the jobs are stored any way you
83+
like. Supported backends for storing jobs include:
84+
85+
* Memory
86+
* `SQLAlchemy <http://www.sqlalchemy.org/>`_ (any RDBMS supported by SQLAlchemy works)
87+
* `MongoDB <http://www.mongodb.org/>`_
88+
* `Redis <http://redis.io/>`_
89+
* `RethinkDB <https://www.rethinkdb.com/>`_
90+
* `ZooKeeper <https://zookeeper.apache.org/>`_
91+
92+
APScheduler also integrates with several common Python frameworks, like:
93+
94+
* `asyncio <http://docs.python.org/3.4/library/asyncio.html>`_ (:pep:`3156`)
95+
* `gevent <http://www.gevent.org/>`_
96+
* `Tornado <http://www.tornadoweb.org/>`_
97+
* `Twisted <http://twistedmatrix.com/>`_
98+
* `Qt <http://qt-project.org/>`_ (using either
99+
`PyQt <http://www.riverbankcomputing.com/software/pyqt/intro>`_ ,
100+
`PySide2 <https://wiki.qt.io/Qt_for_Python>`_ or
101+
`PySide <http://qt-project.org/wiki/PySide>`_)
102+
103+
There are third party solutions for integrating APScheduler with other frameworks:
104+
105+
* `Django <https://github.com/jarekwg/django-apscheduler>`_
106+
* `Flask <https://github.com/viniciuschiele/flask-apscheduler>`_
107+
108+
109+
.. [#f1] The cutoff period for this is also configurable.
110+
111+
112+
Documentation
113+
-------------
114+
115+
Documentation can be found `here <http://readthedocs.org/docs/apscheduler/en/latest/>`_.
116+
117+
118+
Source
119+
------
120+
121+
The source can be browsed at `Github <https://github.com/agronholm/apscheduler>`_.
122+
123+
124+
Reporting bugs
125+
--------------
126+
127+
A `bug tracker <https://github.com/agronholm/apscheduler/issues>`_ is provided by Github.
128+
129+
130+
Getting help
131+
------------
132+
133+
If you have problems or other questions, you can either:
134+
135+
* Ask in the `apscheduler <https://gitter.im/apscheduler/Lobby>`_ room on Gitter
136+
* Ask on the `APScheduler Google group <http://groups.google.com/group/apscheduler>`_, or
137+
* Ask on `StackOverflow <http://stackoverflow.com/questions/tagged/apscheduler>`_ and tag your
138+
question with the ``apscheduler`` tag
139+
140+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,84 @@
1+
APScheduler-3.7.0.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
2+
APScheduler-3.7.0.dist-info/LICENSE.txt,sha256=YWP3mH37ONa8MgzitwsvArhivEESZRbVUu8c1DJH51g,1130
3+
APScheduler-3.7.0.dist-info/METADATA,sha256=nv0HEv4xOwQh-OD13duoBbl8yiRqrg2egM15MAbpoRk,5685
4+
APScheduler-3.7.0.dist-info/RECORD,,
5+
APScheduler-3.7.0.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6+
APScheduler-3.7.0.dist-info/WHEEL,sha256=Z-nyYpwrcSqxfdux5Mbn_DQ525iP7J2DG3JgGvOYyTQ,110
7+
APScheduler-3.7.0.dist-info/entry_points.txt,sha256=7RgkYN_OYyCUQtIGhj-UNcelnIjsNm7nC9rogdMQh3U,1148
8+
APScheduler-3.7.0.dist-info/top_level.txt,sha256=O3oMCWxG-AHkecUoO6Ze7-yYjWrttL95uHO8-RFdYvE,12
9+
apscheduler/__init__.py,sha256=qFEK2ysRBcLiYmm3deyJJ1avUOugaM_nCGHMD42WMBw,380
10+
apscheduler/__pycache__/__init__.cpython-39.pyc,,
11+
apscheduler/__pycache__/events.cpython-39.pyc,,
12+
apscheduler/__pycache__/job.cpython-39.pyc,,
13+
apscheduler/__pycache__/util.cpython-39.pyc,,
14+
apscheduler/events.py,sha256=KRMTDQUS6d2uVnrQvPoz3ZPV5V9XKsCAZLsgx913FFo,3593
15+
apscheduler/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16+
apscheduler/executors/__pycache__/__init__.cpython-39.pyc,,
17+
apscheduler/executors/__pycache__/asyncio.cpython-39.pyc,,
18+
apscheduler/executors/__pycache__/base.cpython-39.pyc,,
19+
apscheduler/executors/__pycache__/base_py3.cpython-39.pyc,,
20+
apscheduler/executors/__pycache__/debug.cpython-39.pyc,,
21+
apscheduler/executors/__pycache__/gevent.cpython-39.pyc,,
22+
apscheduler/executors/__pycache__/pool.cpython-39.pyc,,
23+
apscheduler/executors/__pycache__/tornado.cpython-39.pyc,,
24+
apscheduler/executors/__pycache__/twisted.cpython-39.pyc,,
25+
apscheduler/executors/asyncio.py,sha256=ji5f6Qm2uGhov-3w52CXHZi8jc5U_gS56lisQylKTBQ,2087
26+
apscheduler/executors/base.py,sha256=hogiMc_t-huw6BMod0HEeY2FhRNmAAUyNNuBHvIX31M,5336
27+
apscheduler/executors/base_py3.py,sha256=8WOpTeX1NA-spdbEQ1oJMh5T2O_t2UdsaSnAh-iEWe0,1831
28+
apscheduler/executors/debug.py,sha256=15_ogSBzl8RRCfBYDnkIV2uMH8cLk1KImYmBa_NVGpc,573
29+
apscheduler/executors/gevent.py,sha256=aulrNmoefyBgrOkH9awRhFiXIDnSCnZ4U0o0_JXIXgc,777
30+
apscheduler/executors/pool.py,sha256=6FEUTMl3WCRKebTqwCvpl7B2L9y0GYH16ULs4y_VNJg,2107
31+
apscheduler/executors/tornado.py,sha256=DU75VaQ9R6nBuy8lbPUvDKUgsuJcZqwAvURC5vg3r6w,1780
32+
apscheduler/executors/twisted.py,sha256=bRoU0C4BoVcS6_BjKD5wfUs0IJpGkmLsRAcMH2rJJss,778
33+
apscheduler/job.py,sha256=JCRERBpfWLuomPiNNHX-jrluEwfHkdscEmz4i0Y8rao,11216
34+
apscheduler/jobstores/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
35+
apscheduler/jobstores/__pycache__/__init__.cpython-39.pyc,,
36+
apscheduler/jobstores/__pycache__/base.cpython-39.pyc,,
37+
apscheduler/jobstores/__pycache__/memory.cpython-39.pyc,,
38+
apscheduler/jobstores/__pycache__/mongodb.cpython-39.pyc,,
39+
apscheduler/jobstores/__pycache__/redis.cpython-39.pyc,,
40+
apscheduler/jobstores/__pycache__/rethinkdb.cpython-39.pyc,,
41+
apscheduler/jobstores/__pycache__/sqlalchemy.cpython-39.pyc,,
42+
apscheduler/jobstores/__pycache__/zookeeper.cpython-39.pyc,,
43+
apscheduler/jobstores/base.py,sha256=DXzSW9XscueHZHMvy1qFiG-vYqUl_MMv0n0uBSZWXGo,4523
44+
apscheduler/jobstores/memory.py,sha256=ZxWiKsqfsCHFvac-6X9BztuhnuSxlOYi1dhT6g-pjQo,3655
45+
apscheduler/jobstores/mongodb.py,sha256=JI6t3PanXsxHjj6fzxMdzcZBy5ytV84ZPU_WWB5zEA4,5335
46+
apscheduler/jobstores/redis.py,sha256=kjQDIzPXz-Yq976U9HK3aMkcCI_QRLKgTADQWKewtik,5483
47+
apscheduler/jobstores/rethinkdb.py,sha256=k1rSLYJqejuhQxJY3pXwHAQYcpZ1QFJsoQ8n0oEu5MM,5863
48+
apscheduler/jobstores/sqlalchemy.py,sha256=alfkAEIzwSJKbYYXGc4G8DTeBsLdGhtac8ebjYvoVT0,6134
49+
apscheduler/jobstores/zookeeper.py,sha256=avGLXaJGjHD0F7uG6rLJ2gg_TXNqXDEM4PqOu56f-Xg,6363
50+
apscheduler/schedulers/__init__.py,sha256=jM63xA_K7GSToBenhsz-SCcqfhk1pdEVb6ajwoO5Kqg,406
51+
apscheduler/schedulers/__pycache__/__init__.cpython-39.pyc,,
52+
apscheduler/schedulers/__pycache__/asyncio.cpython-39.pyc,,
53+
apscheduler/schedulers/__pycache__/background.cpython-39.pyc,,
54+
apscheduler/schedulers/__pycache__/base.cpython-39.pyc,,
55+
apscheduler/schedulers/__pycache__/blocking.cpython-39.pyc,,
56+
apscheduler/schedulers/__pycache__/gevent.cpython-39.pyc,,
57+
apscheduler/schedulers/__pycache__/qt.cpython-39.pyc,,
58+
apscheduler/schedulers/__pycache__/tornado.cpython-39.pyc,,
59+
apscheduler/schedulers/__pycache__/twisted.cpython-39.pyc,,
60+
apscheduler/schedulers/asyncio.py,sha256=BuSE8re61ytQtUNRw197iJdhOepaIexr3-WYEDAjhR0,2230
61+
apscheduler/schedulers/background.py,sha256=751p-f5Di6pY4x6UXlZggpxQ5k2ObJ_Q5wSeWmKHS8o,1566
62+
apscheduler/schedulers/base.py,sha256=gvC0rjzSljDPxn0iGu-DyCy-9Fh48NJoY4-VeoZzDZo,43237
63+
apscheduler/schedulers/blocking.py,sha256=8nubfJ4PoUnAkEY6WRQG4COzG4SxGyW9PjuVPhDAbsk,985
64+
apscheduler/schedulers/gevent.py,sha256=csPBvV75FGcboXXsdex6fCD7J54QgBddYNdWj62ZO9g,1031
65+
apscheduler/schedulers/qt.py,sha256=vH2ZHL0PkFTcnHfnsU_tnI3u7bVQ81yy2v_is-575jQ,1463
66+
apscheduler/schedulers/tornado.py,sha256=D9Vaq3Ee9EFiXa1jDy9tedI048gR_YT_LAFUWqO_uEw,1926
67+
apscheduler/schedulers/twisted.py,sha256=D5EBjjMRtMBxy0_aAURcULAI8Ky2IvCTr9tK9sO1rYk,1844
68+
apscheduler/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69+
apscheduler/triggers/__pycache__/__init__.cpython-39.pyc,,
70+
apscheduler/triggers/__pycache__/base.cpython-39.pyc,,
71+
apscheduler/triggers/__pycache__/combining.cpython-39.pyc,,
72+
apscheduler/triggers/__pycache__/date.cpython-39.pyc,,
73+
apscheduler/triggers/__pycache__/interval.cpython-39.pyc,,
74+
apscheduler/triggers/base.py,sha256=BvBJdOnIeVClXPXeInzYK25cN64jAc4a9IiEQucSiVk,1355
75+
apscheduler/triggers/combining.py,sha256=klaSoBp1kyrPX5D3gBpNTlsGKjks5QeKPW5JN_MVs30,3449
76+
apscheduler/triggers/cron/__init__.py,sha256=XVdyymFsnXQMw57gpU1M0vmJo5oGdQ_t8BAkhEFNMFA,9236
77+
apscheduler/triggers/cron/__pycache__/__init__.cpython-39.pyc,,
78+
apscheduler/triggers/cron/__pycache__/expressions.cpython-39.pyc,,
79+
apscheduler/triggers/cron/__pycache__/fields.cpython-39.pyc,,
80+
apscheduler/triggers/cron/expressions.py,sha256=hu1kq0mKvivIw7U0D0Nnrbuk3q01dCuhZ7SHRPw6qhI,9184
81+
apscheduler/triggers/cron/fields.py,sha256=NWPClh1NgSOpTlJ3sm1TXM_ViC2qJGKWkd_vg0xsw7o,3510
82+
apscheduler/triggers/date.py,sha256=RrfB1PNO9G9e91p1BOf-y_TseVHQQR-KJPhNdPpAHcU,1705
83+
apscheduler/triggers/interval.py,sha256=M4y6APgeP9DEh_XKHbFcaUKFk7wAb0-XoSO50bR4qXc,4369
84+
apscheduler/util.py,sha256=3gKKUbW2fyEa5LkYCGHnaWSk2jqj_HreQbE4SrJiDxc,14087

webpersonal/env/Lib/site-packages/APScheduler-3.7.0.dist-info/REQUESTED

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Wheel-Version: 1.0
2+
Generator: bdist_wheel (0.36.2)
3+
Root-Is-Purelib: true
4+
Tag: py2-none-any
5+
Tag: py3-none-any
6+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
[apscheduler.executors]
2+
asyncio = apscheduler.executors.asyncio:AsyncIOExecutor [asyncio]
3+
debug = apscheduler.executors.debug:DebugExecutor
4+
gevent = apscheduler.executors.gevent:GeventExecutor [gevent]
5+
processpool = apscheduler.executors.pool:ProcessPoolExecutor
6+
threadpool = apscheduler.executors.pool:ThreadPoolExecutor
7+
tornado = apscheduler.executors.tornado:TornadoExecutor [tornado]
8+
twisted = apscheduler.executors.twisted:TwistedExecutor [twisted]
9+
10+
[apscheduler.jobstores]
11+
memory = apscheduler.jobstores.memory:MemoryJobStore
12+
mongodb = apscheduler.jobstores.mongodb:MongoDBJobStore [mongodb]
13+
redis = apscheduler.jobstores.redis:RedisJobStore [redis]
14+
rethinkdb = apscheduler.jobstores.rethinkdb:RethinkDBJobStore [rethinkdb]
15+
sqlalchemy = apscheduler.jobstores.sqlalchemy:SQLAlchemyJobStore [sqlalchemy]
16+
zookeeper = apscheduler.jobstores.zookeeper:ZooKeeperJobStore [zookeeper]
17+
18+
[apscheduler.triggers]
19+
and = apscheduler.triggers.combining:AndTrigger
20+
cron = apscheduler.triggers.cron:CronTrigger
21+
date = apscheduler.triggers.date:DateTrigger
22+
interval = apscheduler.triggers.interval:IntervalTrigger
23+
or = apscheduler.triggers.combining:OrTrigger
24+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
apscheduler

0 commit comments

Comments
 (0)